-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy patheldb_bk.sql
8176 lines (8029 loc) · 848 KB
/
eldb_bk.sql
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
-- ----------------------------
-- Sequence structure for account_id_seq
-- ----------------------------
DROP SEQUENCE IF EXISTS "account_id_seq";
CREATE SEQUENCE "account_id_seq"
INCREMENT 1
MINVALUE 1
MAXVALUE 9223372036854775807
START 267
CACHE 1;
-- ----------------------------
-- Sequence structure for assignment_id_seq
-- ----------------------------
DROP SEQUENCE IF EXISTS "assignment_id_seq";
CREATE SEQUENCE "assignment_id_seq"
INCREMENT 1
MINVALUE 1
MAXVALUE 9223372036854775807
START 212
CACHE 1;
-- ----------------------------
-- Sequence structure for assignment_rating_id_seq
-- ----------------------------
DROP SEQUENCE IF EXISTS "assignment_rating_id_seq";
CREATE SEQUENCE "assignment_rating_id_seq"
INCREMENT 1
MINVALUE 1
MAXVALUE 9223372036854775807
START 422
CACHE 1;
-- ----------------------------
-- Sequence structure for book_id_seq
-- ----------------------------
DROP SEQUENCE IF EXISTS "book_id_seq";
CREATE SEQUENCE "book_id_seq"
INCREMENT 1
MINVALUE 1
MAXVALUE 9223372036854775807
START 212
CACHE 1;
-- ----------------------------
-- Sequence structure for book_rating_id_seq
-- ----------------------------
DROP SEQUENCE IF EXISTS "book_rating_id_seq";
CREATE SEQUENCE "book_rating_id_seq"
INCREMENT 1
MINVALUE 1
MAXVALUE 9223372036854775807
START 424
CACHE 1;
-- ----------------------------
-- Sequence structure for book_subject_id_seq
-- ----------------------------
DROP SEQUENCE IF EXISTS "book_subject_id_seq";
CREATE SEQUENCE "book_subject_id_seq"
INCREMENT 1
MINVALUE 1
MAXVALUE 9223372036854775807
START 1
CACHE 1;
-- ----------------------------
-- Sequence structure for category_id_seq
-- ----------------------------
DROP SEQUENCE IF EXISTS "category_id_seq";
CREATE SEQUENCE "category_id_seq"
INCREMENT 1
MINVALUE 1
MAXVALUE 9223372036854775807
START 56
CACHE 1;
-- ----------------------------
-- Sequence structure for course_id_seq
-- ----------------------------
DROP SEQUENCE IF EXISTS "course_id_seq";
CREATE SEQUENCE "course_id_seq"
INCREMENT 1
MINVALUE 1
MAXVALUE 9223372036854775807
START 39
CACHE 1;
-- ----------------------------
-- Sequence structure for course_subject_id_seq
-- ----------------------------
DROP SEQUENCE IF EXISTS "course_subject_id_seq";
CREATE SEQUENCE "course_subject_id_seq"
INCREMENT 1
MINVALUE 1
MAXVALUE 9223372036854775807
START 1
CACHE 1;
-- ----------------------------
-- Sequence structure for enrollment_id_seq
-- ----------------------------
DROP SEQUENCE IF EXISTS "enrollment_id_seq";
CREATE SEQUENCE "enrollment_id_seq"
INCREMENT 1
MINVALUE 1
MAXVALUE 9223372036854775807
START 426
CACHE 1;
-- ----------------------------
-- Sequence structure for faculty_id_seq
-- ----------------------------
DROP SEQUENCE IF EXISTS "faculty_id_seq";
CREATE SEQUENCE "faculty_id_seq"
INCREMENT 1
MINVALUE 1
MAXVALUE 9223372036854775807
START 10
CACHE 1;
-- ----------------------------
-- Sequence structure for friendship_id_seq
-- ----------------------------
DROP SEQUENCE IF EXISTS "friendship_id_seq";
CREATE SEQUENCE "friendship_id_seq"
INCREMENT 1
MINVALUE 1
MAXVALUE 9223372036854775807
START 1
CACHE 1;
-- ----------------------------
-- Sequence structure for gorup_discuss_rating_id_seq
-- ----------------------------
DROP SEQUENCE IF EXISTS "gorup_discuss_rating_id_seq";
CREATE SEQUENCE "gorup_discuss_rating_id_seq"
INCREMENT 1
MINVALUE 1
MAXVALUE 9223372036854775807
START 422
CACHE 1;
-- ----------------------------
-- Sequence structure for group discuss_id_seq
-- ----------------------------
DROP SEQUENCE IF EXISTS "group discuss_id_seq";
CREATE SEQUENCE "group discuss_id_seq"
INCREMENT 1
MINVALUE 1
MAXVALUE 9223372036854775807
START 223
CACHE 1;
-- ----------------------------
-- Sequence structure for lecture_note_id_seq
-- ----------------------------
DROP SEQUENCE IF EXISTS "lecture_note_id_seq";
CREATE SEQUENCE "lecture_note_id_seq"
INCREMENT 1
MINVALUE 1
MAXVALUE 9223372036854775807
START 1
CACHE 1;
-- ----------------------------
-- Sequence structure for lecture_rating_id_seq
-- ----------------------------
DROP SEQUENCE IF EXISTS "lecture_rating_id_seq";
CREATE SEQUENCE "lecture_rating_id_seq"
INCREMENT 1
MINVALUE 1
MAXVALUE 9223372036854775807
START 375
CACHE 1;
-- ----------------------------
-- Sequence structure for lecturer_id_seq
-- ----------------------------
DROP SEQUENCE IF EXISTS "lecturer_id_seq";
CREATE SEQUENCE "lecturer_id_seq"
INCREMENT 1
MINVALUE 1
MAXVALUE 9223372036854775807
START 212
CACHE 1;
-- ----------------------------
-- Sequence structure for lecturer_rating_id_seq
-- ----------------------------
DROP SEQUENCE IF EXISTS "lecturer_rating_id_seq";
CREATE SEQUENCE "lecturer_rating_id_seq"
INCREMENT 1
MINVALUE 1
MAXVALUE 9223372036854775807
START 375
CACHE 1;
-- ----------------------------
-- Sequence structure for lesson_id_seq
-- ----------------------------
DROP SEQUENCE IF EXISTS "lesson_id_seq";
CREATE SEQUENCE "lesson_id_seq"
INCREMENT 1
MINVALUE 1
MAXVALUE 9223372036854775807
START 212
CACHE 1;
-- ----------------------------
-- Sequence structure for multimedia_id_seq
-- ----------------------------
DROP SEQUENCE IF EXISTS "multimedia_id_seq";
CREATE SEQUENCE "multimedia_id_seq"
INCREMENT 1
MINVALUE 1
MAXVALUE 9223372036854775807
START 409
CACHE 1;
-- ----------------------------
-- Sequence structure for multimedia_rating_id_seq
-- ----------------------------
DROP SEQUENCE IF EXISTS "multimedia_rating_id_seq";
CREATE SEQUENCE "multimedia_rating_id_seq"
INCREMENT 1
MINVALUE 1
MAXVALUE 9223372036854775807
START 806
CACHE 1;
-- ----------------------------
-- Sequence structure for multimedia_subject_id_seq
-- ----------------------------
DROP SEQUENCE IF EXISTS "multimedia_subject_id_seq";
CREATE SEQUENCE "multimedia_subject_id_seq"
INCREMENT 1
MINVALUE 1
MAXVALUE 9223372036854775807
START 409
CACHE 1;
-- ----------------------------
-- Sequence structure for note_id_seq
-- ----------------------------
DROP SEQUENCE IF EXISTS "note_id_seq";
CREATE SEQUENCE "note_id_seq"
INCREMENT 1
MINVALUE 1
MAXVALUE 9223372036854775807
START 1
CACHE 1;
-- ----------------------------
-- Sequence structure for note_rating_id_seq
-- ----------------------------
DROP SEQUENCE IF EXISTS "note_rating_id_seq";
CREATE SEQUENCE "note_rating_id_seq"
INCREMENT 1
MINVALUE 1
MAXVALUE 9223372036854775807
START 1
CACHE 1;
-- ----------------------------
-- Sequence structure for student_id_seq
-- ----------------------------
DROP SEQUENCE IF EXISTS "student_id_seq";
CREATE SEQUENCE "student_id_seq"
INCREMENT 1
MINVALUE 1
MAXVALUE 9223372036854775807
START 39
CACHE 1;
-- ----------------------------
-- Sequence structure for student_preference_id_seq
-- ----------------------------
DROP SEQUENCE IF EXISTS "student_preference_id_seq";
CREATE SEQUENCE "student_preference_id_seq"
INCREMENT 1
MINVALUE 1
MAXVALUE 9223372036854775807
START 60
CACHE 1;
-- ----------------------------
-- Sequence structure for style_preference_id_seq
-- ----------------------------
DROP SEQUENCE IF EXISTS "style_preference_id_seq";
CREATE SEQUENCE "style_preference_id_seq"
INCREMENT 1
MINVALUE 1
MAXVALUE 9223372036854775807
START 4
CACHE 1;
-- ----------------------------
-- Sequence structure for subject_id_seq
-- ----------------------------
DROP SEQUENCE IF EXISTS "subject_id_seq";
CREATE SEQUENCE "subject_id_seq"
INCREMENT 1
MINVALUE 1
MAXVALUE 9223372036854775807
START 223
CACHE 1;
-- ----------------------------
-- Sequence structure for subject_rating_id_seq
-- ----------------------------
DROP SEQUENCE IF EXISTS "subject_rating_id_seq";
CREATE SEQUENCE "subject_rating_id_seq"
INCREMENT 1
MINVALUE 1
MAXVALUE 9223372036854775807
START 424
CACHE 1;
-- ----------------------------
-- Sequence structure for subject_requirement_id_seq
-- ----------------------------
DROP SEQUENCE IF EXISTS "subject_requirement_id_seq";
CREATE SEQUENCE "subject_requirement_id_seq"
INCREMENT 1
MINVALUE 1
MAXVALUE 9223372036854775807
START 9
CACHE 1;
-- ----------------------------
-- Sequence structure for subject_tag_id_seq
-- ----------------------------
DROP SEQUENCE IF EXISTS "subject_tag_id_seq";
CREATE SEQUENCE "subject_tag_id_seq"
INCREMENT 1
MINVALUE 1
MAXVALUE 9223372036854775807
START 1
CACHE 1;
-- ----------------------------
-- Table structure for account
-- ----------------------------
DROP TABLE IF EXISTS "account";
CREATE TABLE "account" (
"id" int4 NOT NULL DEFAULT nextval('account_id_seq'::regclass),
"password" varchar(80) COLLATE "pg_catalog"."default",
"user_id" int4, -- one-to-one link ot auth_user
"role" varchar(80) COLLATE "pg_catalog"."default",
"username" varchar(80) COLLATE "pg_catalog"."default" NOT NULL
)
;
-- Philip alter
-- change user id from 37 to 248 to is_staff
delete from "auth_user" where id between 37 and 248;
-- id password last_login is_superuser username first_name last_name email is_staff is_active date_joined
insert into "auth_user" Values (1 , 'test1234', '2019-08-01 06:14:00.742000000', false, 'yiliang', 'test', '1', '[email protected]', false, true, '2019-08-01 06:14:00.742000000');
insert into "auth_user" Values (2 , 'test1234', '2019-08-01 06:14:00.742000000', false, 'yangshi', 'test', '1', '[email protected]', false, true, '2019-08-01 06:14:00.742000000');
insert into "auth_user" Values (3 , 'test1234', '2019-08-01 06:14:00.742000000', false, 'bowang', 'test', '1', '[email protected]', false, true, '2019-08-01 06:14:00.742000000');
insert into "auth_user" Values (4 , 'test1234', '2019-08-01 06:14:00.742000000', false, 'tony', 'test', '1', '[email protected]', false, true, '2019-08-01 06:14:00.742000000');
insert into "auth_user" Values (5 , 'test1234', '2019-08-01 06:14:00.742000000', false, 'simon', 'test', '1', '[email protected]', false, true, '2019-08-01 06:14:00.742000000');
insert into "auth_user" Values (6 , 'test1234', '2019-08-01 06:14:00.742000000', false, 'filen', 'test', '1', '[email protected]', false, true, '2019-08-01 06:14:00.742000000');
insert into "auth_user" Values (7 , 'test1234', '2019-08-01 06:14:00.742000000', false, 'ting', 'test', '1', '[email protected]', false, true, '2019-08-01 06:14:00.742000000');
insert into "auth_user" Values (8 , 'test1234', '2019-08-01 06:14:00.742000000', false, 'ashe', 'test', '1', '[email protected]', false, true, '2019-08-01 06:14:00.742000000');
insert into "auth_user" Values (9 , 'test1234', '2019-08-01 06:14:00.742000000', false, 'hill', 'test', '1', '[email protected]', false, true, '2019-08-01 06:14:00.742000000');
insert into "auth_user" Values (10, 'test1234', '2019-08-01 06:14:00.742000000', false, 'annie', 'test', '1', '[email protected]', false, true, '2019-08-01 06:14:00.742000000');
insert into "auth_user" Values (11, 'test1234', '2019-08-01 06:14:00.742000000', false, 'varus', 'test', '1', '[email protected]', false, true, '2019-08-01 06:14:00.742000000');
insert into "auth_user" Values (12, 'test1234', '2019-08-01 06:14:00.742000000', false, 'darius', 'test', '1', '[email protected]', false, true, '2019-08-01 06:14:00.742000000');
insert into "auth_user" Values (13, 'test1234', '2019-08-01 06:14:00.742000000', false, 'irelia', 'test', '1', '[email protected]', false, true, '2019-08-01 06:14:00.742000000');
insert into "auth_user" Values (14, 'test1234', '2019-08-01 06:14:00.742000000', false, 'lux', 'test', '1', '[email protected]', false, true, '2019-08-01 06:14:00.742000000');
insert into "auth_user" Values (15, 'test1234', '2019-08-01 06:14:00.742000000', false, 'zac', 'test', '1', '[email protected]', false, true, '2019-08-01 06:14:00.742000000');
insert into "auth_user" Values (16, 'test1234', '2019-08-01 06:14:00.742000000', false, 'nasus', 'test', '1', '[email protected]', false, true, '2019-08-01 06:14:00.742000000');
insert into "auth_user" Values (17, 'test1234', '2019-08-01 06:14:00.742000000', false, 'jack', 'test', '1', '[email protected]', false, true, '2019-08-01 06:14:00.742000000');
insert into "auth_user" Values (18, 'test1234', '2019-08-01 06:14:00.742000000', false, 'caithlin', 'test', '1', '[email protected]', false, true, '2019-08-01 06:14:00.742000000');
insert into "auth_user" Values (19, 'test1234', '2019-08-01 06:14:00.742000000', false, 'katarina', 'test', '1', '[email protected]', false, true, '2019-08-01 06:14:00.742000000');
insert into "auth_user" Values (20, 'test1234', '2019-08-01 06:14:00.742000000', false, 'obama', 'test', '1', '[email protected]', false, true, '2019-08-01 06:14:00.742000000');
insert into "auth_user" Values (21, 'test1234', '2019-08-01 06:14:00.742000000', false, 'jinpinxi', 'test', '1', '[email protected]', false, true, '2019-08-01 06:14:00.742000000');
insert into "auth_user" Values (22, 'test1234', '2019-08-01 06:14:00.742000000', false, 'edward', 'test', '1', '[email protected]', false, true, '2019-08-01 06:14:00.742000000');
insert into "auth_user" Values (23, 'test1234', '2019-08-01 06:14:00.742000000', false, 'xinzhao', 'test', '1', '[email protected]', false, true, '2019-08-01 06:14:00.742000000');
insert into "auth_user" Values (24, 'test1234', '2019-08-01 06:14:00.742000000', false, 'zig', 'test', '1', '[email protected]', false, true, '2019-08-01 06:14:00.742000000');
insert into "auth_user" Values (25, 'test1234', '2019-08-01 06:14:00.742000000', false, 'sona', 'test', '1', '[email protected]', false, true, '2019-08-01 06:14:00.742000000');
insert into "auth_user" Values (26, 'test1234', '2019-08-01 06:14:00.742000000', false, 'jarvan', 'test', '1', '[email protected]', false, true, '2019-08-01 06:14:00.742000000');
insert into "auth_user" Values (27, 'test1234', '2019-08-01 06:14:00.742000000', false, 'garen', 'test', '1', '[email protected]', false, true, '2019-08-01 06:14:00.742000000');
insert into "auth_user" Values (28, 'test1234', '2019-08-01 06:14:00.742000000', false, 'diana', 'test', '1', '[email protected]', false, true, '2019-08-01 06:14:00.742000000');
insert into "auth_user" Values (29, 'test1234', '2019-08-01 06:14:00.742000000', false, 'brand', 'test', '1', '[email protected]', false, true, '2019-08-01 06:14:00.742000000');
insert into "auth_user" Values (30, 'test1234', '2019-08-01 06:14:00.742000000', true, 'admin', 'test', '1', '[email protected]', true, true, '2019-08-01 06:14:00.742000000');
insert into "auth_user" Values (31, 'test1234', '2019-08-01 06:14:00.742000000', false, 'xxx', 'test', '1', '[email protected]', false, true, '2019-08-01 06:14:00.742000000');
insert into "auth_user" Values (32, 'test1234', '2019-08-01 06:14:00.742000000', false, 'test1', 'test', '1', '[email protected]', false, true, '2019-08-01 06:14:00.742000000');
insert into "auth_user" Values (33, 'test1234', '2019-08-01 06:14:00.742000000', false, 'test2', 'test', '1', '[email protected]', false, true, '2019-08-01 06:14:00.742000000');
insert into "auth_user" Values (34, 'test1234', '2019-08-01 06:14:00.742000000', false, 'test3', 'test', '1', '[email protected]', false, true, '2019-08-01 06:14:00.742000000');
insert into "auth_user" Values (35, 'test1234', '2019-08-01 06:14:00.742000000', false, 'test4', 'test', '1', '[email protected]', false, true, '2019-08-01 06:14:00.742000000');
insert into "auth_user" Values (36, 'test1234', '2019-08-01 06:14:00.742000000', false, 'test5', 'test', '1', '[email protected]', false, true, '2019-08-01 06:14:00.742000000');
insert into "auth_user" Values (37, 'test1234', '2019-08-01 06:14:00.742000000', false, 'Syed A. Ahson, Mohammad Ilyas ', 'test', '1', '[email protected]', true, true, '2019-08-01 06:14:00.742000000');
insert into "auth_user" Values (38, 'test1234', '2019-08-01 06:14:00.742000000', false, 'RAJIB MALL', 'test', '1', '[email protected]', true, true, '2019-08-01 06:14:00.742000000');
insert into "auth_user" Values (39, 'test1234', '2019-08-01 06:14:00.742000000', false, 'R. Perlman', 'test', '1', '[email protected]', true, true, '2019-08-01 06:14:00.742000000');
insert into "auth_user" Values (40, 'test1234', '2019-08-01 06:14:00.742000000', false, 'R. Kelly Rainer, Casey G. Cegielski', 'test', '1', '[email protected]', true, true, '2019-08-01 06:14:00.742000000');
insert into "auth_user" Values (41, 'test1234', '2019-08-01 06:14:00.742000000', false, 'Carlos Coronel, Steven A. Morris, Peter Rob', 'test', '1', '[email protected]', true, true, '2019-08-01 06:14:00.742000000');
insert into "auth_user" Values (42, 'test1234', '2019-08-01 06:14:00.742000000', false, 'none', 'test', '1', '[email protected]', true, true, '2019-08-01 06:14:00.742000000');
insert into "auth_user" Values (43, 'test1234', '2019-08-01 06:14:00.742000000', false, 'Frank Bott', 'test', '1', '[email protected]', true, true, '2019-08-01 06:14:00.742000000');
insert into "auth_user" Values (44, 'test1234', '2019-08-01 06:14:00.742000000', false, 'A.A. Puntambekar', 'test', '1', '[email protected]', true, true, '2019-08-01 06:14:00.742000000');
insert into "auth_user" Values (45, 'test1234', '2019-08-01 06:14:00.742000000', false, 'S. R. Choudhury', 'test', '1', '[email protected]', true, true, '2019-08-01 06:14:00.742000000');
insert into "auth_user" Values (46, 'test1234', '2019-08-01 06:14:00.742000000', false, 'Rajiv Sabherwal, Irma Becerra-Fernandez', 'test', '1', '[email protected]', true, true, '2019-08-01 06:14:00.742000000');
insert into "auth_user" Values (47, 'test1234', '2019-08-01 06:14:00.742000000', false, 'Scott C. H. Huang, David MacCallum, Ding-Zhu. Du', 'test', '1', '[email protected]', true, true, '2019-08-01 06:14:00.742000000');
insert into "auth_user" Values (48, 'test1234', '2019-08-01 06:14:00.742000000', false, 'H. James Harrington, Erik K. C. Esseling, Harm van Nimwegen', 'test', '1', '[email protected]', true, true, '2019-08-01 06:14:00.742000000');
insert into "auth_user" Values (49, 'test1234', '2019-08-01 06:14:00.742000000', false, 'n', 'test', '1', '[email protected]', true, true, '2019-08-01 06:14:00.742000000');
insert into "auth_user" Values (50, 'test1234', '2019-08-01 06:14:00.742000000', false, 'Kay A. Robbins, Steven Robbins', 'test', '1', '[email protected]', true, true, '2019-08-01 06:14:00.742000000');
insert into "auth_user" Values (51, 'test1234', '2019-08-01 06:14:00.742000000', false, 'Kenneth C. Mansfield, Jr., James L. Antonakos', 'test', '1', '[email protected]', true, true, '2019-08-01 06:14:00.742000000');
insert into "auth_user" Values (52, 'test1234', '2019-08-01 06:14:00.742000000', false, 'Carlo Zaniolo', 'test', '1', '[email protected]', true, true, '2019-08-01 06:14:00.742000000');
insert into "auth_user" Values (53, 'test1234', '2019-08-01 06:14:00.742000000', false, 'Vicki L. Sauter', 'test', '1', '[email protected]', true, true, '2019-08-01 06:14:00.742000000');
insert into "auth_user" Values (54, 'test1234', '2019-08-01 06:14:00.742000000', false, 'Max Bramer', 'test', '1', '[email protected]', true, true, '2019-08-01 06:14:00.742000000');
insert into "auth_user" Values (55, 'test1234', '2019-08-01 06:14:00.742000000', false, 'Andrew Davison', 'test', '1', '[email protected]', true, true, '2019-08-01 06:14:00.742000000');
insert into "auth_user" Values (56, 'test1234', '2019-08-01 06:14:00.742000000', false, 'Robert J. Oberg, Peter Thorsteinson, Dana L. Wyatt', 'test', '1', '[email protected]', true, true, '2019-08-01 06:14:00.742000000');
insert into "auth_user" Values (57, 'test1234', '2019-08-01 06:14:00.742000000', false, 'Martin Granzow, Daniel P. Berrar', 'test', '1', '[email protected]', true, true, '2019-08-01 06:14:00.742000000');
insert into "auth_user" Values (58, 'test1234', '2019-08-01 06:14:00.742000000', false, 'Amjad Umar', 'test', '1', '[email protected]', true, true, '2019-08-01 06:14:00.742000000');
insert into "auth_user" Values (59, 'test1234', '2019-08-01 06:14:00.742000000', false, 'Usama M. Fayyad, Andreas Wierse, Georges G. Grinstein', 'test', '1', '[email protected]', true, true, '2019-08-01 06:14:00.742000000');
insert into "auth_user" Values (60, 'test1234', '2019-08-01 06:14:00.742000000', false, 'Simeon Simoff, Michael H. Böhlen, Arturas Mazeika', 'test', '1', '[email protected]', true, true, '2019-08-01 06:14:00.742000000');
insert into "auth_user" Values (61, 'test1234', '2019-08-01 06:14:00.742000000', false, 'Steve Rackley', 'test', '1', '[email protected]', true, true, '2019-08-01 06:14:00.742000000');
insert into "auth_user" Values (62, 'test1234', '2019-08-01 06:14:00.742000000', false, 'Juha Korhonen', 'test', '1', '[email protected]', true, true, '2019-08-01 06:14:00.742000000');
insert into "auth_user" Values (63, 'test1234', '2019-08-01 06:14:00.742000000', false, 'C. J. Date, Hugh Darwen', 'test', '1', '[email protected]', true, true, '2019-08-01 06:14:00.742000000');
insert into "auth_user" Values (64, 'test1234', '2019-08-01 06:14:00.742000000', false, 'John Ray', 'test', '1', '[email protected]', true, true, '2019-08-01 06:14:00.742000000');
insert into "auth_user" Values (65, 'test1234', '2019-08-01 06:14:00.742000000', false, 'Sofoklis A. Kyriazakos, Ioannis Soldatos, George T. Karetsos', 'test', '1', '[email protected]', true, true, '2019-08-01 06:14:00.742000000');
insert into "auth_user" Values (66, 'test1234', '2019-08-01 06:14:00.742000000', false, 'Judith Bell', 'test', '1', '[email protected]', true, true, '2019-08-01 06:14:00.742000000');
insert into "auth_user" Values (67, 'test1234', '2019-08-01 06:14:00.742000000', false, 'Conor Hannaway, Gabriel Hunt', 'test', '1', '[email protected]', true, true, '2019-08-01 06:14:00.742000000');
insert into "auth_user" Values (68, 'test1234', '2019-08-01 06:14:00.742000000', false, 'Richard Mead, Tim G. Andrews', 'test', '1', '[email protected]', true, true, '2019-08-01 06:14:00.742000000');
insert into "auth_user" Values (69, 'test1234', '2019-08-01 06:14:00.742000000', false, 'Alan Price', 'test', '1', '[email protected]', true, true, '2019-08-01 06:14:00.742000000');
insert into "auth_user" Values (70, 'test1234', '2019-08-01 06:14:00.742000000', false, 'Philippe Lasserre', 'test', '1', '[email protected]', true, true, '2019-08-01 06:14:00.742000000');
insert into "auth_user" Values (71, 'test1234', '2019-08-01 06:14:00.742000000', false, 'Professor Robert A Paton, James McCalman', 'test', '1', '[email protected]', true, true, '2019-08-01 06:14:00.742000000');
insert into "auth_user" Values (72, 'test1234', '2019-08-01 06:14:00.742000000', false, 'Mary Connor, Julia Pokora', 'test', '1', '[email protected]', true, true, '2019-08-01 06:14:00.742000000');
insert into "auth_user" Values (73, 'test1234', '2019-08-01 06:14:00.742000000', false, 'Colin Gale, Jasbir Kaur', 'test', '1', '[email protected]', true, true, '2019-08-01 06:14:00.742000000');
insert into "auth_user" Values (74, 'test1234', '2019-08-01 06:14:00.742000000', false, 'Kenneth L. Smith, Sandra Moriarty, Keith Kenney, Gretchen Barbatsis', 'test', '1', '[email protected]', true, true, '2019-08-01 06:14:00.742000000');
insert into "auth_user" Values (75, 'test1234', '2019-08-01 06:14:00.742000000', false, 'Howard Eisner', 'test', '1', '[email protected]', true, true, '2019-08-01 06:14:00.742000000');
insert into "auth_user" Values (76, 'test1234', '2019-08-01 06:14:00.742000000', false, 'Newnan, Donald G., Alan Williams', 'test', '1', '[email protected]', true, true, '2019-08-01 06:14:00.742000000');
insert into "auth_user" Values (77, 'test1234', '2019-08-01 06:14:00.742000000', false, 'Karl Johan Åström, Björn Wittenmark', 'test', '1', '[email protected]', true, true, '2019-08-01 06:14:00.742000000');
insert into "auth_user" Values (78, 'test1234', '2019-08-01 06:14:00.742000000', false, 'J. E. Flood', 'test', '1', '[email protected]', true, true, '2019-08-01 06:14:00.742000000');
insert into "auth_user" Values (79, 'test1234', '2019-08-01 06:14:00.742000000', false, 'Graeme Salaman, John Storey, Jon Billsberry', 'test', '1', '[email protected]', true, true, '2019-08-01 06:14:00.742000000');
insert into "auth_user" Values (80, 'test1234', '2019-08-01 06:14:00.742000000', false, 'Beverly J. Irby, Genevieve Brown', 'test', '1', '[email protected]', true, true, '2019-08-01 06:14:00.742000000');
insert into "auth_user" Values (81, 'test1234', '2019-08-01 06:14:00.742000000', false, 'Michael P. Jackson', 'test', '1', '[email protected]', true, true, '2019-08-01 06:14:00.742000000');
insert into "auth_user" Values (82, 'test1234', '2019-08-01 06:14:00.742000000', false, 'George Woodbury', 'test', '1', '[email protected]', true, true, '2019-08-01 06:14:00.742000000');
insert into "auth_user" Values (83, 'test1234', '2019-08-01 06:14:00.742000000', false, 'RICHARD D AUTOR RINGEISEN, SIAM Activity Group on', 'test', '1', '[email protected]', true, true, '2019-08-01 06:14:00.742000000');
insert into "auth_user" Values (84, 'test1234', '2019-08-01 06:14:00.742000000', false, 'Kevin Dowd, Charles R. Severance', 'test', '1', '[email protected]', true, true, '2019-08-01 06:14:00.742000000');
insert into "auth_user" Values (85, 'test1234', '2019-08-01 06:14:00.742000000', false, 'David V. Widder', 'test', '1', '[email protected]', true, true, '2019-08-01 06:14:00.742000000');
insert into "auth_user" Values (86, 'test1234', '2019-08-01 06:14:00.742000000', false, 'Jun Shao', 'test', '1', '[email protected]', true, true, '2019-08-01 06:14:00.742000000');
insert into "auth_user" Values (87, 'test1234', '2019-08-01 06:14:00.742000000', false, 'G Shankar Rao, K. Keshava Reddy', 'test', '1', '[email protected]', true, true, '2019-08-01 06:14:00.742000000');
insert into "auth_user" Values (88, 'test1234', '2019-08-01 06:14:00.742000000', false, 'P. W. Ed. Hochachka, T. P. (Thomas P.) Mommsen', 'test', '1', '[email protected]', true, true, '2019-08-01 06:14:00.742000000');
insert into "auth_user" Values (89, 'test1234', '2019-08-01 06:14:00.742000000', false, 'Hans Günter Schlegel', 'test', '1', '[email protected]', true, true, '2019-08-01 06:14:00.742000000');
insert into "auth_user" Values (90, 'test1234', '2019-08-01 06:14:00.742000000', false, 'David James Holme, Hazel Peck', 'test', '1', '[email protected]', true, true, '2019-08-01 06:14:00.742000000');
insert into "auth_user" Values (91, 'test1234', '2019-08-01 06:14:00.742000000', false, 'N. Jayabalan', 'test', '1', '[email protected]', true, true, '2019-08-01 06:14:00.742000000');
insert into "auth_user" Values (92, 'test1234', '2019-08-01 06:14:00.742000000', false, 'Shang-Tian Yang', 'test', '1', '[email protected]', true, true, '2019-08-01 06:14:00.742000000');
insert into "auth_user" Values (93, 'test1234', '2019-08-01 06:14:00.742000000', false, 'Zamir Punja', 'test', '1', '[email protected]', true, true, '2019-08-01 06:14:00.742000000');
insert into "auth_user" Values (94, 'test1234', '2019-08-01 06:14:00.742000000', false, 'Rafael Fernandez-Botran, Vaclav Vetvicka', 'test', '1', '[email protected]', true, true, '2019-08-01 06:14:00.742000000');
insert into "auth_user" Values (95, 'test1234', '2019-08-01 06:14:00.742000000', false, 'Sergei Tretyakov', 'test', '1', '[email protected]', true, true, '2019-08-01 06:14:00.742000000');
insert into "auth_user" Values (96, 'test1234', '2019-08-01 06:14:00.742000000', false, 'Peter Belobaba, Amedeo Odoni, Cynthia Barnhart', 'test', '1', '[email protected]', true, true, '2019-08-01 06:14:00.742000000');
insert into "auth_user" Values (97, 'test1234', '2019-08-01 06:14:00.742000000', false, 'Cheng-Lung Wu', 'test', '1', '[email protected]', true, true, '2019-08-01 06:14:00.742000000');
insert into "auth_user" Values (98, 'test1234', '2019-08-01 06:14:00.742000000', false, 'Valery A. Menshikov, Anatoly N. Perminov', 'test', '1', '[email protected]', true, true, '2019-08-01 06:14:00.742000000');
insert into "auth_user" Values (99, 'test1234', '2019-08-01 06:14:00.742000000', false, 'S. C. Gupta', 'test', '1', '[email protected]', true, true, '2019-08-01 06:14:00.742000000');
insert into "auth_user" Values (100, 'test1234', '2019-08-01 06:14:00.742000000', false,'John P. Fielding', 'test', '1', '[email protected]', true, true, '2019-08-01 06:14:00.742000000');
insert into "auth_user" Values (101, 'test1234', '2019-08-01 06:14:00.742000000', false,'Alice Peasgood, Mark Goodwin', 'test', '1', '[email protected]', true, true, '2019-08-01 06:14:00.742000000');
insert into "auth_user" Values (102, 'test1234', '2019-08-01 06:14:00.742000000', false,'Dr. Sastry, Dr. Singh & Dr. Tomar', 'test', '1', '[email protected]', true, true, '2019-08-01 06:14:00.742000000');
insert into "auth_user" Values (103, 'test1234', '2019-08-01 06:14:00.742000000', false,'Ted Benton, Michael Redclift', 'test', '1', '[email protected]', true, true, '2019-08-01 06:14:00.742000000');
insert into "auth_user" Values (104, 'test1234', '2019-08-01 06:14:00.742000000', false,'Ro Charlton', 'test', '1', '[email protected]', true, true, '2019-08-01 06:14:00.742000000');
insert into "auth_user" Values (105, 'test1234', '2019-08-01 06:14:00.742000000', false,'Robert Roland Pennington', 'test', '1', '[email protected]', true, true, '2019-08-01 06:14:00.742000000');
insert into "auth_user" Values (106, 'test1234', '2019-08-01 06:14:00.742000000', false,'Sir Hersch Lauterpacht, Elihu Lauterpacht', 'test', '1', '[email protected]', true, true, '2019-08-01 06:14:00.742000000');
insert into "auth_user" Values (107, 'test1234', '2019-08-01 06:14:00.742000000', false,'John Warren Head, David Frisch', 'test', '1', '[email protected]', true, true, '2019-08-01 06:14:00.742000000');
insert into "auth_user" Values (108, 'test1234', '2019-08-01 06:14:00.742000000', false,'Stephen B. Goldberg', 'test', '1', '[email protected]', true, true, '2019-08-01 06:14:00.742000000');
insert into "auth_user" Values (109, 'test1234', '2019-08-01 06:14:00.742000000', false,'Peter Drahos', 'test', '1', '[email protected]', true, true, '2019-08-01 06:14:00.742000000');
insert into "auth_user" Values (110, 'test1234', '2019-08-01 06:14:00.742000000', false,'Walburga Hemetsberger', 'test', '1', '[email protected]', true, true, '2019-08-01 06:14:00.742000000');
insert into "auth_user" Values (111, 'test1234', '2019-08-01 06:14:00.742000000', false,'Daniel A. Laprès', 'test', '1', '[email protected]', true, true, '2019-08-01 06:14:00.742000000');
insert into "auth_user" Values (112, 'test1234', '2019-08-01 06:14:00.742000000', false,'Geoff Monahan, Lisa Young', 'test', '1', '[email protected]', true, true, '2019-08-01 06:14:00.742000000');
insert into "auth_user" Values (113, 'test1234', '2019-08-01 06:14:00.742000000', false,'Julian Petley', 'test', '1', '[email protected]', true, true, '2019-08-01 06:14:00.742000000');
insert into "auth_user" Values (114, 'test1234', '2019-08-01 06:14:00.742000000', false, 'Henry Lee Ewbank, Sherman Paxton Lawton', 'test', '1', '[email protected]', true, true, '2019-08-01 06:14:00.742000000');
insert into "auth_user" Values (115, 'test1234', '2019-08-01 06:14:00.742000000', false, 'Joe Sacco', 'test', '1', '[email protected]', true, true, '2019-08-01 06:14:00.742000000');
insert into "auth_user" Values (116, 'test1234', '2019-08-01 06:14:00.742000000', false, 'Nick Stevenson', 'test', '1', '[email protected]', true, true, '2019-08-01 06:14:00.742000000');
insert into "auth_user" Values (117, 'test1234', '2019-08-01 06:14:00.742000000', false, 'Edward L. Bernays', 'test', '1', '[email protected]', true, true, '2019-08-01 06:14:00.742000000');
insert into "auth_user" Values (118, 'test1234', '2019-08-01 06:14:00.742000000', false, 'Jerzy Wojtowitz', 'test', '1', '[email protected]', true, true, '2019-08-01 06:14:00.742000000');
insert into "auth_user" Values (119, 'test1234', '2019-08-01 06:14:00.742000000', false, 'Steven Heller, Teresa Fernandes', 'test', '1', '[email protected]', true, true, '2019-08-01 06:14:00.742000000');
insert into "auth_user" Values (120, 'test1234', '2019-08-01 06:14:00.742000000', false, 'Jonathan Baldwin, Lucienne Roberts', 'test', '1', '[email protected]', true, true, '2019-08-01 06:14:00.742000000');
insert into "auth_user" Values (121, 'test1234', '2019-08-01 06:14:00.742000000', false, 'Christine M. Piotrowski', 'test', '1', '[email protected]', true, true, '2019-08-01 06:14:00.742000000');
insert into "auth_user" Values (122, 'test1234', '2019-08-01 06:14:00.742000000', false, 'Peter G. Rowe', 'test', '1', '[email protected]', true, true, '2019-08-01 06:14:00.742000000');
insert into "auth_user" Values (123, 'test1234', '2019-08-01 06:14:00.742000000', false, 'Grant Pooke, Diana. Newall', 'test', '1', '[email protected]', true, true, '2019-08-01 06:14:00.742000000');
insert into "auth_user" Values (124, 'test1234', '2019-08-01 06:14:00.742000000', false, 'Paul Maltby', 'test', '1', '[email protected]', true, true, '2019-08-01 06:14:00.742000000');
insert into "auth_user" Values (125, 'test1234', '2019-08-01 06:14:00.742000000', false, 'W. J. T. Mitchell, Mark B. N. Hansen', 'test', '1', '[email protected]', true, true, '2019-08-01 06:14:00.742000000');
insert into "auth_user" Values (126, 'test1234', '2019-08-01 06:14:00.742000000', false, 'Alan Blackwood', 'test', '1', '[email protected]', true, true, '2019-08-01 06:14:00.742000000');
insert into "auth_user" Values (127, 'test1234', '2019-08-01 06:14:00.742000000', false, 'Peterson''s', 'test', '1', '[email protected]', true, true, '2019-08-01 06:14:00.742000000');
insert into "auth_user" Values (128, 'test1234', '2019-08-01 06:14:00.742000000', false, ' Howard Smith', 'test', '1', '[email protected]', true, true, '2019-08-01 06:14:00.742000000');
insert into "auth_user" Values (129, 'test1234', '2019-08-01 06:14:00.742000000', false, 'Diane Pedrotty Bryant, Deborah Deutsch Smith, Brian R. Bryant', 'test', '1', '[email protected]', true, true, '2019-08-01 06:14:00.742000000');
insert into "auth_user" Values (130, 'test1234', '2019-08-01 06:14:00.742000000', false, 'Sylvia M. Roberts, Eunice Z. Pruitt', 'test', '1', '[email protected]', true, true, '2019-08-01 06:14:00.742000000');
insert into "auth_user" Values (131, 'test1234', '2019-08-01 06:14:00.742000000', false, 'TERRY. HASTINGS, Terence Hastings', 'test', '1', '[email protected]', true, true, '2019-08-01 06:14:00.742000000');
insert into "auth_user" Values (132, 'test1234', '2019-08-01 06:14:00.742000000', false, 'an Jukes, Ted McCain, Lee Crockett', 'test', '1', '[email protected]', true, true, '2019-08-01 06:14:00.742000000');
insert into "auth_user" Values (133, 'test1234', '2019-08-01 06:14:00.742000000', false, 'Paul Crowther', 'test', '1', '[email protected]', true, true, '2019-08-01 06:14:00.742000000');
insert into "auth_user" Values (134, 'test1234', '2019-08-01 06:14:00.742000000', false, 'Curriculum Corporation', 'test', '1', '[email protected]', true, true, '2019-08-01 06:14:00.742000000');
insert into "auth_user" Values (135, 'test1234', '2019-08-01 06:14:00.742000000', false, 'S. K. Mangal,', 'test', '1', '[email protected]', true, true, '2019-08-01 06:14:00.742000000');
insert into "auth_user" Values (136, 'test1234', '2019-08-01 06:14:00.742000000', false, 'Cherie Goodenow O''boyle', 'test', '1', '[email protected]', true, true, '2019-08-01 06:14:00.742000000');
insert into "auth_user" Values (137, 'test1234', '2019-08-01 06:14:00.742000000', false, 'Anne Myers, Christine H. Hansen', 'test', '1', '[email protected]', true, true, '2019-08-01 06:14:00.742000000');
insert into "auth_user" Values (138, 'test1234', '2019-08-01 06:14:00.742000000', false, 'Stephen B. Klein, B. Michael Thorne', 'test', '1', '[email protected]', true, true, '2019-08-01 06:14:00.742000000');
insert into "auth_user" Values (139, 'test1234', '2019-08-01 06:14:00.742000000', false, 'Carol Brown', 'test', '1', '[email protected]', true, true, '2019-08-01 06:14:00.742000000');
insert into "auth_user" Values (140, 'test1234', '2019-08-01 06:14:00.742000000', false, 'Jacki Watts, Kate Cockcroft, Norman Duncan (Ph. D.', 'test', '1', '[email protected]', true, true, '2019-08-01 06:14:00.742000000');
insert into "auth_user" Values (141, 'test1234', '2019-08-01 06:14:00.742000000', false, 'Andrzej Eliasz, Sarah E. Hampson, Boele de Raad', 'test', '1', '[email protected]', true, true, '2019-08-01 06:14:00.742000000');
insert into "auth_user" Values (142, 'test1234', '2019-08-01 06:14:00.742000000', false, 'John Rawls', 'test', '1', '[email protected]', true, true, '2019-08-01 06:14:00.742000000');
insert into "auth_user" Values (143, 'test1234', '2019-08-01 06:14:00.742000000', false, 'Megan-Jane Johnstone', 'test', '1', '[email protected]', true, true, '2019-08-01 06:14:00.742000000');
insert into "auth_user" Values (144, 'test1234', '2019-08-01 06:14:00.742000000', false, 'Alan Ross Anderson', 'test', '1', '[email protected]', true, true, '2019-08-01 06:14:00.742000000');
insert into "auth_user" Values (145, 'test1234', '2019-08-01 06:14:00.742000000', false, 'Patrick Hughes, George Brecht', 'test', '1', '[email protected]', true, true, '2019-08-01 06:14:00.742000000');
insert into "auth_user" Values (146, 'test1234', '2019-08-01 06:14:00.742000000', false, 'Thomas Nadelhoffer, Eddy Nahmias, Shaun Nichols', 'test', '1', '[email protected]', true, true, '2019-08-01 06:14:00.742000000');
insert into "auth_user" Values (147, 'test1234', '2019-08-01 06:14:00.742000000', false, 'R. I. Moore', 'test', '1', '[email protected]', true, true, '2019-08-01 06:14:00.742000000');
insert into "auth_user" Values (148, 'test1234', '2019-08-01 06:14:00.742000000', false, 'Norman G. Owen', 'test', '1', '[email protected]', true, true, '2019-08-01 06:14:00.742000000');
insert into "auth_user" Values (149, 'test1234', '2019-08-01 06:14:00.742000000', false, 'John Hirst', 'test', '1', '[email protected]', true, true, '2019-08-01 06:14:00.742000000');
insert into "auth_user" Values (150, 'test1234', '2019-08-01 06:14:00.742000000', false, 'Phyllis Corzine', 'test', '1', '[email protected]', true, true, '2019-08-01 06:14:00.742000000');
insert into "auth_user" Values (151, 'test1234', '2019-08-01 06:14:00.742000000', false, ' Roderick Stackelberg', 'test', '1', '[email protected]', true, true, '2019-08-01 06:14:00.742000000');
insert into "auth_user" Values (152, 'test1234', '2019-08-01 06:14:00.742000000', false, 'Claes G. Ryn', 'test', '1', '[email protected]', true, true, '2019-08-01 06:14:00.742000000');
insert into "auth_user" Values (153, 'test1234', '2019-08-01 06:14:00.742000000', false, 'Paul A. Cohen', 'test', '1', '[email protected]', true, true, '2019-08-01 06:14:00.742000000');
insert into "auth_user" Values (154, 'test1234', '2019-08-01 06:14:00.742000000', false, 'John Sloman, Kevin Hinde', 'test', '1', '[email protected]', true, true, '2019-08-01 06:14:00.742000000');
insert into "auth_user" Values (155, 'test1234', '2019-08-01 06:14:00.742000000', false, 'John Sloman, Kevin Hinde, Dean Garratt', 'test', '1', '[email protected]', true, true, '2019-08-01 06:14:00.742000000');
insert into "auth_user" Values (156, 'test1234', '2019-08-01 06:14:00.742000000', false, 'David Ray Anderson', 'test', '1', '[email protected]', true, true, '2019-08-01 06:14:00.742000000');
insert into "auth_user" Values (157, 'test1234', '2019-08-01 06:14:00.742000000', false, 'Jan Tinbergen', 'test', '1', '[email protected]', true, true, '2019-08-01 06:14:00.742000000');
insert into "auth_user" Values (158, 'test1234', '2019-08-01 06:14:00.742000000', false, 'Hans Wiesmeth', 'test', '1', '[email protected]', true, true, '2019-08-01 06:14:00.742000000');
insert into "auth_user" Values (159, 'test1234', '2019-08-01 06:14:00.742000000', false, 'Linda Y. Yueh', 'test', '1', '[email protected]', true, true, '2019-08-01 06:14:00.742000000');
insert into "auth_user" Values (160, 'test1234', '2019-08-01 06:14:00.742000000', false, 'Loren Yager, United States General Accounting Office', 'test', '1', '[email protected]', true, true, '2019-08-01 06:14:00.742000000');
insert into "auth_user" Values (161, 'test1234', '2019-08-01 06:14:00.742000000', false, 'Atul Kr Sharma', 'test', '1', '[email protected]', true, true, '2019-08-01 06:14:00.742000000');
insert into "auth_user" Values (162, 'test1234', '2019-08-01 06:14:00.742000000', false, 'Tony Proctor', 'test', '1', '[email protected]', true, true, '2019-08-01 06:14:00.742000000');
insert into "auth_user" Values (163, 'test1234', '2019-08-01 06:14:00.742000000', false, 'Kate Gillespie, Jean-Pierre Jeannet, Hubert David Hennessey', 'test', '1', '[email protected]', true, true, '2019-08-01 06:14:00.742000000');
insert into "auth_user" Values (164, 'test1234', '2019-08-01 06:14:00.742000000', false, 'Sonny Nwankwo, Tunji Gbadamosi', 'test', '1', '[email protected]', true, true, '2019-08-01 06:14:00.742000000');
insert into "auth_user" Values (165, 'test1234', '2019-08-01 06:14:00.742000000', false, 'H. J. Riezebos, Bas Kist, Gert L. Kootstra', 'test', '1', '[email protected]', true, true, '2019-08-01 06:14:00.742000000');
insert into "auth_user" Values (166, 'test1234', '2019-08-01 06:14:00.742000000', false, 'Gwen Hewett', 'test', '1', '[email protected]', true, true, '2019-08-01 06:14:00.742000000');
insert into "auth_user" Values (167, 'test1234', '2019-08-01 06:14:00.742000000', false, 'S. C. Bhatia', 'test', '1', '[email protected]', true, true, '2019-08-01 06:14:00.742000000');
insert into "auth_user" Values (168, 'test1234', '2019-08-01 06:14:00.742000000', false, 'Eugene F. Brigham, Michael C. Ehrhardt', 'test', '1', '[email protected]', true, true, '2019-08-01 06:14:00.742000000');
insert into "auth_user" Values (169, 'test1234', '2019-08-01 06:14:00.742000000', false, 'John C. Burch, Jr., Bruce S. Foerster', 'test', '1', '[email protected]', true, true, '2019-08-01 06:14:00.742000000');
insert into "auth_user" Values (170, 'test1234', '2019-08-01 06:14:00.742000000', false, 'Shim, Joel G. Siegel', 'test', '1', '[email protected]', true, true, '2019-08-01 06:14:00.742000000');
insert into "auth_user" Values (171, 'test1234', '2019-08-01 06:14:00.742000000', false, 'S.S.Kaptan', 'test', '1', '[email protected]', true, true, '2019-08-01 06:14:00.742000000');
insert into "auth_user" Values (172, 'test1234', '2019-08-01 06:14:00.742000000', false, 'Aswath Damodaran', 'test', '1', '[email protected]', true, true, '2019-08-01 06:14:00.742000000');
insert into "auth_user" Values (173, 'test1234', '2019-08-01 06:14:00.742000000', false, 'Maurice D. Levi', 'test', '1', '[email protected]', true, true, '2019-08-01 06:14:00.742000000');
insert into "auth_user" Values (174, 'test1234', '2019-08-01 06:14:00.742000000', false, 'Anthony Saunders, Marcia Millon Cornett', 'test', '1', '[email protected]', true, true, '2019-08-01 06:14:00.742000000');
insert into "auth_user" Values (175, 'test1234', '2019-08-01 06:14:00.742000000', false, 'Moorad Choudhry', 'test', '1', '[email protected]', true, true, '2019-08-01 06:14:00.742000000');
insert into "auth_user" Values (176, 'test1234', '2019-08-01 06:14:00.742000000', false, 'Ved Prakash', 'test', '1', '[email protected]', true, true, '2019-08-01 06:14:00.742000000');
insert into "auth_user" Values (177, 'test1234', '2019-08-01 06:14:00.742000000', false, 'Henry R. Cheeseman', 'test', '1', '[email protected]', true, true, '2019-08-01 06:14:00.742000000');
insert into "auth_user" Values (178, 'test1234', '2019-08-01 06:14:00.742000000', false, 'Charles H. Gibson', 'test', '1', '[email protected]', true, true, '2019-08-01 06:14:00.742000000');
insert into "auth_user" Values (179, 'test1234', '2019-08-01 06:14:00.742000000', false, 'Jae K. Shim, Joel G. Siegel', 'test', '1', '[email protected]', true, true, '2019-08-01 06:14:00.742000000');
insert into "auth_user" Values (180, 'test1234', '2019-08-01 06:14:00.742000000', false, 'Mukherjee & Hanif, Mohammed Hanif', 'test', '1', '[email protected]', true, true, '2019-08-01 06:14:00.742000000');
insert into "auth_user" Values (181, 'test1234', '2019-08-01 06:14:00.742000000', false, 'Robert J. Ramsay, David H. Sinason, Jerry R. Strawser', 'test', '1', '[email protected]', true, true, '2019-08-01 06:14:00.742000000');
insert into "auth_user" Values (182, 'test1234', '2019-08-01 06:14:00.742000000', false, 'Dr. Michael Lang, Pasquale Pistone, Josef Schuch, Claus Staringer', 'test', '1', '[email protected]', true, true, '2019-08-01 06:14:00.742000000');
insert into "auth_user" Values (183, 'test1234', '2019-08-01 06:14:00.742000000', false, 'Louis Komzsik', 'test', '1', '[email protected]', true, true, '2019-08-01 06:14:00.742000000');
insert into "auth_user" Values (184, 'test1234', '2019-08-01 06:14:00.742000000', false, 'Masoud Olia', 'test', '1', '[email protected]', true, true, '2019-08-01 06:14:00.742000000');
insert into "auth_user" Values (185, 'test1234', '2019-08-01 06:14:00.742000000', false, 'EDUARDO AUTOR BAYRO CORROCHANO, Garret Sobczyk', 'test', '1', '[email protected]', true, true, '2019-08-01 06:14:00.742000000');
insert into "auth_user" Values (186, 'test1234', '2019-08-01 06:14:00.742000000', false, 'J.B. Dixit', 'test', '1', '[email protected]', true, true, '2019-08-01 06:14:00.742000000');
insert into "auth_user" Values (187, 'test1234', '2019-08-01 06:14:00.742000000', false, 'Dash & Khuntia', 'test', '1', '[email protected]', true, true, '2019-08-01 06:14:00.742000000');
insert into "auth_user" Values (188, 'test1234', '2019-08-01 06:14:00.742000000', false, 'Oliver. Bailey', 'test', '1', '[email protected]', true, true, '2019-08-01 06:14:00.742000000');
insert into "auth_user" Values (189, 'test1234', '2019-08-01 06:14:00.742000000', false, 'Branislav Jovic', 'test', '1', '[email protected]', true, true, '2019-08-01 06:14:00.742000000');
insert into "auth_user" Values (190, 'test1234', '2019-08-01 06:14:00.742000000', false, 'William J. Dally, John W. Poulton', 'test', '1', '[email protected]', true, true, '2019-08-01 06:14:00.742000000');
insert into "auth_user" Values (191, 'test1234', '2019-08-01 06:14:00.742000000', false, 'Mike E. Miles, Gayle Berens, Marc Allan Weiss, Urban Land Institute', 'test', '1', '[email protected]', true, true, '2019-08-01 06:14:00.742000000');
insert into "auth_user" Values (192, 'test1234', '2019-08-01 06:14:00.742000000', false, 'Stephen Maxwell Wheeler, Timothy Beatley', 'test', '1', '[email protected]', true, true, '2019-08-01 06:14:00.742000000');
insert into "auth_user" Values (193, 'test1234', '2019-08-01 06:14:00.742000000', false, 'Zada Lipman, Nicola Franklin', 'test', '1', '[email protected]', true, true, '2019-08-01 06:14:00.742000000');
insert into "auth_user" Values (194, 'test1234', '2019-08-01 06:14:00.742000000', false, 'Jan S. Krouwer', 'test', '1', '[email protected]', true, true, '2019-08-01 06:14:00.742000000');
insert into "auth_user" Values (195, 'test1234', '2019-08-01 06:14:00.742000000', false, 'Ron Kasprisin', 'test', '1', '[email protected]', true, true, '2019-08-01 06:14:00.742000000');
insert into "auth_user" Values (196, 'test1234', '2019-08-01 06:14:00.742000000', false, 'David Adams, Craig Watkins', 'test', '1', '[email protected]', true, true, '2019-08-01 06:14:00.742000000');
insert into "auth_user" Values (197, 'test1234', '2019-08-01 06:14:00.742000000', false, 'Peter Nijkamp, Edwin Smith Mills, Paul C. Cheshire', 'test', '1', '[email protected]', true, true, '2019-08-01 06:14:00.742000000');
insert into "auth_user" Values (198, 'test1234', '2019-08-01 06:14:00.742000000', false, 'Guy Bessette', 'test', '1', '[email protected]', true, true, '2019-08-01 06:14:00.742000000');
insert into "auth_user" Values (199, 'test1234', '2019-08-01 06:14:00.742000000', false, ' Robert Ferrier, Alan Jenkins', 'test', '1', '[email protected]', true, true, '2019-08-01 06:14:00.742000000');
insert into "auth_user" Values (200, 'test1234', '2019-08-01 06:14:00.742000000', false, 'Anthony R. E. Sinclair, John M. Fryxell, Graeme Caughley', 'test', '1', '[email protected]', true, true, '2019-08-01 06:14:00.742000000');
insert into "auth_user" Values (201, 'test1234', '2019-08-01 06:14:00.742000000', false, 'C. J. Barrow', 'test', '1', '[email protected]', true, true, '2019-08-01 06:14:00.742000000');
insert into "auth_user" Values (202, 'test1234', '2019-08-01 06:14:00.742000000', false, 'Ben Dolnick', 'test', '1', '[email protected]', true, true, '2019-08-01 06:14:00.742000000');
insert into "auth_user" Values (203, 'test1234', '2019-08-01 06:14:00.742000000', false, 'James A. Kent', 'test', '1', '[email protected]', true, true, '2019-08-01 06:14:00.742000000');
insert into "auth_user" Values (204, 'test1234', '2019-08-01 06:14:00.742000000', false, 'S. O. Ryding', 'test', '1', '[email protected]', true, true, '2019-08-01 06:14:00.742000000');
insert into "auth_user" Values (205, 'test1234', '2019-08-01 06:14:00.742000000', false, 'Eugene L. Madsen', 'test', '1', '[email protected]', true, true, '2019-08-01 06:14:00.742000000');
insert into "auth_user" Values (206, 'test1234', '2019-08-01 06:14:00.742000000', false, 'J. Dunlop, D. G. Smith', 'test', '1', '[email protected]', true, true, '2019-08-01 06:14:00.742000000');
insert into "auth_user" Values (207, 'test1234', '2019-08-01 06:14:00.742000000', false, 'Dr James S. Griffiths', 'test', '1', '[email protected]', true, true, '2019-08-01 06:14:00.742000000');
insert into "auth_user" Values (208, 'test1234', '2019-08-01 06:14:00.742000000', false, 'Steven N. Liss, Ian G. Droppo, Gary G. Leppard, Timothy G. Milligan', 'test', '1', '[email protected]', true, true, '2019-08-01 06:14:00.742000000');
insert into "auth_user" Values (209, 'test1234', '2019-08-01 06:14:00.742000000', false, 'David Bennett', 'test', '1', '[email protected]', true, true, '2019-08-01 06:14:00.742000000');
insert into "auth_user" Values (210, 'test1234', '2019-08-01 06:14:00.742000000', false, 'no lecturer', 'test', '1', '[email protected]', true, true, '2019-08-01 06:14:00.742000000');
insert into "auth_user" Values (211, 'test1234', '2019-08-01 06:14:00.742000000', false, 'E. J. Mittemeijer', 'test', '1', '[email protected]', true, true, '2019-08-01 06:14:00.742000000');
insert into "auth_user" Values (212, 'test1234', '2019-08-01 06:14:00.742000000', false, 'Francis A. DiGiano', 'test', '1', '[email protected]', true, true, '2019-08-01 06:14:00.742000000');
insert into "auth_user" Values (213, 'test1234', '2019-08-01 06:14:00.742000000', false, 'Peter Fritzson', 'test', '1', '[email protected]', true, true, '2019-08-01 06:14:00.742000000');
insert into "auth_user" Values (214, 'test1234', '2019-08-01 06:14:00.742000000', false, 'James H. Swisher', 'test', '1', '[email protected]', true, true, '2019-08-01 06:14:00.742000000');
insert into "auth_user" Values (215, 'test1234', '2019-08-01 06:14:00.742000000', false, 'Lesley E. Smart, Elaine A. Moore', 'test', '1', '[email protected]', true, true, '2019-08-01 06:14:00.742000000');
insert into "auth_user" Values (216, 'test1234', '2019-08-01 06:14:00.742000000', false, 'Ben R. Finney, Eric M. Jones', 'test', '1', '[email protected]', true, true, '2019-08-01 06:14:00.742000000');
insert into "auth_user" Values (217, 'test1234', '2019-08-01 06:14:00.742000000', false, 'James M. Gere, Barry J. Goodno', 'test', '1', '[email protected]', true, true, '2019-08-01 06:14:00.742000000');
insert into "auth_user" Values (218, 'test1234', '2019-08-01 06:14:00.742000000', false, 'Jesus A. Del Alamo', 'test', '1', '[email protected]', true, true, '2019-08-01 06:14:00.742000000');
insert into "auth_user" Values (219, 'test1234', '2019-08-01 06:14:00.742000000', false, 'Nicola A. Spaldin', 'test', '1', '[email protected]', true, true, '2019-08-01 06:14:00.742000000');
insert into "auth_user" Values (220, 'test1234', '2019-08-01 06:14:00.742000000', false, 'Roger Evans, Roger Evans (MRCP.), Patrick Durston', 'test', '1', '[email protected]', true, true, '2019-08-01 06:14:00.742000000');
insert into "auth_user" Values (221, 'test1234', '2019-08-01 06:14:00.742000000', false, 'Avi Shai, Howard I. Maibach', 'test', '1', '[email protected]', true, true, '2019-08-01 06:14:00.742000000');
insert into "auth_user" Values (222, 'test1234', '2019-08-01 06:14:00.742000000', false, 'Deborah Kirklin, Ruth Richardson', 'test', '1', '[email protected]', true, true, '2019-08-01 06:14:00.742000000');
insert into "auth_user" Values (223, 'test1234', '2019-08-01 06:14:00.742000000', false, 'Debajyoti Das', 'test', '1', '[email protected]', true, true, '2019-08-01 06:14:00.742000000');
insert into "auth_user" Values (224, 'test1234', '2019-08-01 06:14:00.742000000', false, 'Harold R. Smith, Cynthia L. Comella, Birgit Högl', 'test', '1', '[email protected]', true, true, '2019-08-01 06:14:00.742000000');
insert into "auth_user" Values (225, 'test1234', '2019-08-01 06:14:00.742000000', false, 'Paul Dowswell', 'test', '1', '[email protected]', true, true, '2019-08-01 06:14:00.742000000');
insert into "auth_user" Values (226, 'test1234', '2019-08-01 06:14:00.742000000', false, 'Paula McGee, George Castledine', 'test', '1', '[email protected]', true, true, '2019-08-01 06:14:00.742000000');
insert into "auth_user" Values (227, 'test1234', '2019-08-01 06:14:00.742000000', false, 'Maria T. Codina Leik', 'test', '1', '[email protected]', true, true, '2019-08-01 06:14:00.742000000');
insert into "auth_user" Values (228, 'test1234', '2019-08-01 06:14:00.742000000', false, 'A. Hardon, P. Boonmongkon, P. Streefland, M. L. Tan', 'test', '1', '[email protected]', true, true, '2019-08-01 06:14:00.742000000');
insert into "auth_user" Values (229, 'test1234', '2019-08-01 06:14:00.742000000', false, 'George Anders', 'test', '1', '[email protected]', true, true, '2019-08-01 06:14:00.742000000');
insert into "auth_user" Values (230, 'test1234', '2019-08-01 06:14:00.742000000', false, 'John Aldridge, Saul Becker', 'test', '1', '[email protected]', true, true, '2019-08-01 06:14:00.742000000');
insert into "auth_user" Values (231, 'test1234', '2019-08-01 06:14:00.742000000', false, 'no lecturer for this subject', 'test', '1', '[email protected]', true, true, '2019-08-01 06:14:00.742000000');
insert into "auth_user" Values (232, 'test1234', '2019-08-01 06:14:00.742000000', false, 'Clint Douglas, Geraldine Rebeiro, Jackie Crisp, Catherine Taylo', 'test', '1', '[email protected]', true, true, '2019-08-01 06:14:00.742000000');
insert into "auth_user" Values (233, 'test1234', '2019-08-01 06:14:00.742000000', false, 'David A. Holdford, Ph.D.', 'test', '1', '[email protected]', true, true, '2019-08-01 06:14:00.742000000');
insert into "auth_user" Values (234, 'test1234', '2019-08-01 06:14:00.742000000', false, 'Nita K. Pandit', 'test', '1', '[email protected]', true, true, '2019-08-01 06:14:00.742000000');
insert into "auth_user" Values (235, 'test1234', '2019-08-01 06:14:00.742000000', false, 'Rose M. Nieves', 'test', '1', '[email protected]', true, true, '2019-08-01 06:14:00.742000000');
insert into "auth_user" Values (236, 'test1234', '2019-08-01 06:14:00.742000000', false, 'Stephen H. Curry, Robin Whelpton', 'test', '1', '[email protected]', true, true, '2019-08-01 06:14:00.742000000');
insert into "auth_user" Values (237, 'test1234', '2019-08-01 06:14:00.742000000', false, 'Janet Houser, Kathleen Oman', 'test', '1', '[email protected]', true, true, '2019-08-01 06:14:00.742000000');
insert into "auth_user" Values (238, 'test1234', '2019-08-01 06:14:00.742000000', false, 'Valorie A. Crooks, Gavin J. Andrews', 'test', '1', '[email protected]', true, true, '2019-08-01 06:14:00.742000000');
insert into "auth_user" Values (239, 'test1234', '2019-08-01 06:14:00.742000000', false, 'Judith C. Ahronheim, M.D., Jonathan Moreno, Connie Zuckerman', 'test', '1', '[email protected]', true, true, '2019-08-01 06:14:00.742000000');
insert into "auth_user" Values (240, 'test1234', '2019-08-01 06:14:00.742000000', false, 'M. D. C. P. Li', 'test', '1', '[email protected]', true, true, '2019-08-01 06:14:00.742000000');
insert into "auth_user" Values (241, 'test1234', '2019-08-01 06:14:00.742000000', false, 'Elizabeth J. Perry, Mark Selden', 'test', '1', '[email protected]', true, true, '2019-08-01 06:14:00.742000000');
insert into "auth_user" Values (242, 'test1234', '2019-08-01 06:14:00.742000000', false, 'Giovanni Maciocia', 'test', '1', '[email protected]', true, true, '2019-08-01 06:14:00.742000000');
insert into "auth_user" Values (243, 'test1234', '2019-08-01 06:14:00.742000000', false, 'Chang-qing Guo, Bo Hu, Nai-gang Liu', 'test', '1', '[email protected]', true, true, '2019-08-01 06:14:00.742000000');
insert into "auth_user" Values (244, 'test1234', '2019-08-01 06:14:00.742000000', false, 'Mary Beth Braun, Stephanie J. Simonson', 'test', '1', '[email protected]', true, true, '2019-08-01 06:14:00.742000000');
insert into "auth_user" Values (245, 'test1234', '2019-08-01 06:14:00.742000000', false, 'Yifan Yang', 'test', '1', '[email protected]', true, true, '2019-08-01 06:14:00.742000000');
insert into "auth_user" Values (246, 'test1234', '2019-08-01 06:14:00.742000000', false, 'Hongming Ma', 'test', '1', '[email protected]', true, true, '2019-08-01 06:14:00.742000000');
insert into "auth_user" Values (247, 'test1234', '2019-08-01 06:14:00.742000000', false, 'David Hartmann', 'test', '1', '[email protected]', true, true, '2019-08-01 06:14:00.742000000');
insert into "auth_user" Values (248, 'test1234', '2019-08-01 06:14:00.742000000', false, 'Inder S. Anand, Naranjan S. Dhalla, Purshotam L', 'test', '1', '[email protected]', true, true, '2019-08-01 06:14:00.742000000');
-- ----------------------------
-- Records of account
-- ----------------------------
BEGIN;
INSERT INTO "account" VALUES (1, 2, '123', 'student', 'yiliang');
INSERT INTO "account" VALUES (2, 2, '123', 'student', 'yangshi');
INSERT INTO "account" VALUES (3, 2, '123', 'student', 'bowang');
INSERT INTO "account" VALUES (4, 2, '123', 'student', 'tony');
INSERT INTO "account" VALUES (5, 2, '123', 'student', 'simon');
INSERT INTO "account" VALUES (6, 2, '123', 'student', 'filen');
INSERT INTO "account" VALUES (7, 2, '123', 'student', 'ting');
INSERT INTO "account" VALUES (8, 2, '123', 'student', 'ashe');
INSERT INTO "account" VALUES (9, 2, '123', 'student', 'hill');
INSERT INTO "account" VALUES (10, 2, '123', 'student', 'annie');
INSERT INTO "account" VALUES (11, 2, '123', 'student', 'varus');
INSERT INTO "account" VALUES (12, 2, '123', 'student', 'darius');
INSERT INTO "account" VALUES (13, 2, '123', 'student', 'irelia');
INSERT INTO "account" VALUES (14, 2, '123', 'student', 'lux');
INSERT INTO "account" VALUES (15, 2, '123', 'student', 'zac');
INSERT INTO "account" VALUES (16, 2, '123', 'student', 'nasus');
INSERT INTO "account" VALUES (17, 2, '123', 'student', 'jack');
INSERT INTO "account" VALUES (18, 2, '123', 'student', 'caithlin');
INSERT INTO "account" VALUES (19, 2, '123', 'student', 'katarina');
INSERT INTO "account" VALUES (20, 2, '123', 'student', 'obama');
INSERT INTO "account" VALUES (21, 2, '123', 'student', 'jinpinxi');
INSERT INTO "account" VALUES (22, 2, '123', 'student', 'edward');
INSERT INTO "account" VALUES (23, 2, '123', 'student', 'xinzhao');
INSERT INTO "account" VALUES (24, 2, '123', 'student', 'zig');
INSERT INTO "account" VALUES (25, 2, '123', 'student', 'sona');
INSERT INTO "account" VALUES (26, 2, '123', 'student', 'jarvan');
INSERT INTO "account" VALUES (27, 2, '123', 'student', 'garen');
INSERT INTO "account" VALUES (28, 2, '123', 'student', 'diana');
INSERT INTO "account" VALUES (29, 2, '123', 'student', 'brand');
INSERT INTO "account" VALUES (30, 2, '123', 'admin', 'admin');
INSERT INTO "account" VALUES (31, 2, '123', 'student', 'xxx');
INSERT INTO "account" VALUES (32, 2, '123', 'student', 'test1');
INSERT INTO "account" VALUES (33, 2, '123', 'student', 'test2');
INSERT INTO "account" VALUES (34, 2, '123', 'student', 'test3');
INSERT INTO "account" VALUES (35, 2, '123', 'student', 'test4');
INSERT INTO "account" VALUES (36, 2, '123', 'student', 'test5');
INSERT INTO "account" VALUES (37, 2, '123', 'lecturer', 'Syed A. Ahson, Mohammad Ilyas ');
INSERT INTO "account" VALUES (38, 2, '123', 'lecturer', 'RAJIB MALL');
INSERT INTO "account" VALUES (39, 2, '123', 'lecturer', 'R. Perlman');
INSERT INTO "account" VALUES (40, 2, '123', 'lecturer', 'R. Kelly Rainer, Casey G. Cegielski');
INSERT INTO "account" VALUES (41, 2, '123', 'lecturer', 'Carlos Coronel, Steven A. Morris, Peter Rob');
INSERT INTO "account" VALUES (42, 2, '123', 'lecturer', 'none');
INSERT INTO "account" VALUES (43, 2, '123', 'lecturer', 'Frank Bott');
INSERT INTO "account" VALUES (44, 2, '123', 'lecturer', 'A.A. Puntambekar');
INSERT INTO "account" VALUES (45, 2, '123', 'lecturer', 'S. R. Choudhury');
INSERT INTO "account" VALUES (46, 2, '123', 'lecturer', 'Rajiv Sabherwal, Irma Becerra-Fernandez');
INSERT INTO "account" VALUES (47, 2, '123', 'lecturer', 'Scott C. H. Huang, David MacCallum, Ding-Zhu. Du');
INSERT INTO "account" VALUES (48, 2, '123', 'lecturer', 'H. James Harrington, Erik K. C. Esseling, Harm van Nimwegen');
INSERT INTO "account" VALUES (49, 2, '123', 'lecturer', 'n');
INSERT INTO "account" VALUES (50, 2, '123', 'lecturer', 'Kay A. Robbins, Steven Robbins');
INSERT INTO "account" VALUES (51, 2, '123', 'lecturer', 'Kenneth C. Mansfield, Jr., James L. Antonakos');
INSERT INTO "account" VALUES (52, 2, '123', 'lecturer', 'Carlo Zaniolo');
INSERT INTO "account" VALUES (53, 2, '123', 'lecturer', 'Vicki L. Sauter');
INSERT INTO "account" VALUES (54, 2, '123', 'lecturer', 'Max Bramer');
INSERT INTO "account" VALUES (55, 2, '123', 'lecturer', 'Andrew Davison');
INSERT INTO "account" VALUES (56, 2, '123', 'lecturer', 'Robert J. Oberg, Peter Thorsteinson, Dana L. Wyatt');
INSERT INTO "account" VALUES (57, 2, '123', 'lecturer', 'Martin Granzow, Daniel P. Berrar');
INSERT INTO "account" VALUES (58, 2, '123', 'lecturer', 'Amjad Umar');
INSERT INTO "account" VALUES (59, 2, '123', 'lecturer', 'Usama M. Fayyad, Andreas Wierse, Georges G. Grinstein');
INSERT INTO "account" VALUES (60, 2, '123', 'lecturer', 'Simeon Simoff, Michael H. Böhlen, Arturas Mazeika');
INSERT INTO "account" VALUES (61, 2, '123', 'lecturer', 'Steve Rackley');
INSERT INTO "account" VALUES (62, 2, '123', 'lecturer', 'Juha Korhonen');
INSERT INTO "account" VALUES (63, 2, '123', 'lecturer', 'C. J. Date, Hugh Darwen');
INSERT INTO "account" VALUES (64, 2, '123', 'lecturer', 'John Ray');
INSERT INTO "account" VALUES (65, 2, '123', 'lecturer', 'Sofoklis A. Kyriazakos, Ioannis Soldatos, George T. Karetsos');
INSERT INTO "account" VALUES (66, 2, '123', 'lecturer', 'Judith Bell');
INSERT INTO "account" VALUES (67, 2, '123', 'lecturer', 'Conor Hannaway, Gabriel Hunt');
INSERT INTO "account" VALUES (68, 2, '123', 'lecturer', 'Richard Mead, Tim G. Andrews');
INSERT INTO "account" VALUES (69, 2, '123', 'lecturer', 'Alan Price');
INSERT INTO "account" VALUES (70, 2, '123', 'lecturer', 'Philippe Lasserre');
INSERT INTO "account" VALUES (71, 2, '123', 'lecturer', 'Professor Robert A Paton, James McCalman');
INSERT INTO "account" VALUES (72, 2, '123', 'lecturer', 'Mary Connor, Julia Pokora');
INSERT INTO "account" VALUES (73, 2, '123', 'lecturer', 'Colin Gale, Jasbir Kaur');
INSERT INTO "account" VALUES (74, 2, '123', 'lecturer', 'Kenneth L. Smith, Sandra Moriarty, Keith Kenney, Gretchen Barbatsis');
INSERT INTO "account" VALUES (75, 2, '123', 'lecturer', 'Howard Eisner');
INSERT INTO "account" VALUES (76, 2, '123', 'lecturer', 'Newnan, Donald G., Alan Williams');
INSERT INTO "account" VALUES (77, 2, '123', 'lecturer', 'Karl Johan Åström, Björn Wittenmark');
INSERT INTO "account" VALUES (78, 2, '123', 'lecturer', 'J. E. Flood');
INSERT INTO "account" VALUES (79, 2, '123', 'lecturer', 'Graeme Salaman, John Storey, Jon Billsberry');
INSERT INTO "account" VALUES (80, 2, '123', 'lecturer', 'Beverly J. Irby, Genevieve Brown');
INSERT INTO "account" VALUES (81, 2, '123', 'lecturer', 'Michael P. Jackson');
INSERT INTO "account" VALUES (82, 2, '123', 'lecturer', 'George Woodbury');
INSERT INTO "account" VALUES (83, 2, '123', 'lecturer', 'RICHARD D AUTOR RINGEISEN, SIAM Activity Group on');
INSERT INTO "account" VALUES (84, 2, '123', 'lecturer', 'Kevin Dowd, Charles R. Severance');
INSERT INTO "account" VALUES (85, 2, '123', 'lecturer', 'David V. Widder');
INSERT INTO "account" VALUES (86, 2, '123', 'lecturer', 'Jun Shao');
INSERT INTO "account" VALUES (87, 2, '123', 'lecturer', 'G Shankar Rao, K. Keshava Reddy');
INSERT INTO "account" VALUES (88, 2, '123', 'lecturer', 'P. W. Ed. Hochachka, T. P. (Thomas P.) Mommsen');
INSERT INTO "account" VALUES (89, 2, '123', 'lecturer', 'Hans Günter Schlegel');
INSERT INTO "account" VALUES (90, 2, '123', 'lecturer', 'David James Holme, Hazel Peck');
INSERT INTO "account" VALUES (91, 2, '123', 'lecturer', 'N. Jayabalan');
INSERT INTO "account" VALUES (92, 2, '123', 'lecturer', 'Shang-Tian Yang');
INSERT INTO "account" VALUES (93, 2, '123', 'lecturer', 'Zamir Punja');
INSERT INTO "account" VALUES (94, 2, '123', 'lecturer', 'Rafael Fernandez-Botran, Vaclav Vetvicka');
INSERT INTO "account" VALUES (95, 2, '123', 'lecturer', 'Sergei Tretyakov');
INSERT INTO "account" VALUES (96, 2, '123', 'lecturer', 'Peter Belobaba, Amedeo Odoni, Cynthia Barnhart');
INSERT INTO "account" VALUES (97, 2, '123', 'lecturer', 'Cheng-Lung Wu');
INSERT INTO "account" VALUES (98, 2, '123', 'lecturer', 'Valery A. Menshikov, Anatoly N. Perminov');
INSERT INTO "account" VALUES (99, 2, '123', 'lecturer', 'S. C. Gupta');
INSERT INTO "account" VALUES (100, 2, '123', 'lecturer', 'John P. Fielding');
INSERT INTO "account" VALUES (101, 2, '123', 'lecturer', 'Alice Peasgood, Mark Goodwin');
INSERT INTO "account" VALUES (102, 2, '123', 'lecturer', 'Dr. Sastry, Dr. Singh & Dr. Tomar');
INSERT INTO "account" VALUES (103, 2, '123', 'lecturer', 'Ted Benton, Michael Redclift');
INSERT INTO "account" VALUES (104, 2, '123', 'lecturer', 'Ro Charlton');
INSERT INTO "account" VALUES (105, 2, '123', 'lecturer', 'Robert Roland Pennington');
INSERT INTO "account" VALUES (106, 2, '123', 'lecturer', 'Sir Hersch Lauterpacht, Elihu Lauterpacht');
INSERT INTO "account" VALUES (107, 2, '123', 'lecturer', 'John Warren Head, David Frisch');
INSERT INTO "account" VALUES (108, 2, '123', 'lecturer', 'Stephen B. Goldberg');
INSERT INTO "account" VALUES (109, 2, '123', 'lecturer', 'Peter Drahos');
INSERT INTO "account" VALUES (110, 2, '123', 'lecturer', 'Walburga Hemetsberger');
INSERT INTO "account" VALUES (111, 2, '123', 'lecturer', 'Daniel A. Laprès');
INSERT INTO "account" VALUES (112, 2, '123', 'lecturer', 'Geoff Monahan, Lisa Young');
INSERT INTO "account" VALUES (113, 2, '123', 'lecturer', 'Julian Petley');
INSERT INTO "account" VALUES (114, 2, '123', 'lecturer', 'Henry Lee Ewbank, Sherman Paxton Lawton');
INSERT INTO "account" VALUES (115, 2, '123', 'lecturer', 'Joe Sacco');
INSERT INTO "account" VALUES (116, 2, '123', 'lecturer', 'Nick Stevenson');
INSERT INTO "account" VALUES (117, 2, '123', 'lecturer', 'Edward L. Bernays');
INSERT INTO "account" VALUES (118, 2, '123', 'lecturer', 'Jerzy Wojtowitz');
INSERT INTO "account" VALUES (119, 2, '123', 'lecturer', 'Steven Heller, Teresa Fernandes');
INSERT INTO "account" VALUES (120, 2, '123', 'lecturer', 'Jonathan Baldwin, Lucienne Roberts');
INSERT INTO "account" VALUES (121, 2, '123', 'lecturer', 'Christine M. Piotrowski');
INSERT INTO "account" VALUES (122, 2, '123', 'lecturer', 'Peter G. Rowe');
INSERT INTO "account" VALUES (123, 2, '123', 'lecturer', 'Grant Pooke, Diana. Newall');
INSERT INTO "account" VALUES (124, 2, '123', 'lecturer', 'Paul Maltby');
INSERT INTO "account" VALUES (125, 2, '123', 'lecturer', 'W. J. T. Mitchell, Mark B. N. Hansen');
INSERT INTO "account" VALUES (126, 2, '123', 'lecturer', 'Alan Blackwood');
INSERT INTO "account" VALUES (127, 2, '123', 'lecturer', 'Peterson''s');
INSERT INTO "account" VALUES (128, 2, '123', 'lecturer', ' Howard Smith');
INSERT INTO "account" VALUES (129, 2, '123', 'lecturer', 'Diane Pedrotty Bryant, Deborah Deutsch Smith, Brian R. Bryant');
INSERT INTO "account" VALUES (130, 2, '123', 'lecturer', 'Sylvia M. Roberts, Eunice Z. Pruitt');
INSERT INTO "account" VALUES (131, 2, '123', 'lecturer', 'TERRY. HASTINGS, Terence Hastings');
INSERT INTO "account" VALUES (132, 2, '123', 'lecturer', 'an Jukes, Ted McCain, Lee Crockett');
INSERT INTO "account" VALUES (133, 2, '123', 'lecturer', 'Paul Crowther');
INSERT INTO "account" VALUES (134, 2, '123', 'lecturer', 'Curriculum Corporation');
INSERT INTO "account" VALUES (135, 2, '123', 'lecturer', 'S. K. Mangal,');
INSERT INTO "account" VALUES (136, 2, '123', 'lecturer', 'Cherie Goodenow O''boyle');
INSERT INTO "account" VALUES (137, 2, '123', 'lecturer', 'Anne Myers, Christine H. Hansen');
INSERT INTO "account" VALUES (138, 2, '123', 'lecturer', 'Stephen B. Klein, B. Michael Thorne');
INSERT INTO "account" VALUES (139, 2, '123', 'lecturer', 'Carol Brown');
INSERT INTO "account" VALUES (140, 2, '123', 'lecturer', 'Jacki Watts, Kate Cockcroft, Norman Duncan (Ph. D.');
INSERT INTO "account" VALUES (141, 2, '123', 'lecturer', 'Andrzej Eliasz, Sarah E. Hampson, Boele de Raad');
INSERT INTO "account" VALUES (142, 2, '123', 'lecturer', 'John Rawls');
INSERT INTO "account" VALUES (143, 2, '123', 'lecturer', 'Megan-Jane Johnstone');
INSERT INTO "account" VALUES (144, 2, '123', 'lecturer', 'Alan Ross Anderson');
INSERT INTO "account" VALUES (145, 2, '123', 'lecturer', 'Patrick Hughes, George Brecht');
INSERT INTO "account" VALUES (146, 2, '123', 'lecturer', 'Thomas Nadelhoffer, Eddy Nahmias, Shaun Nichols');
INSERT INTO "account" VALUES (147, 2, '123', 'lecturer', 'R. I. Moore');
INSERT INTO "account" VALUES (148, 2, '123', 'lecturer', 'Norman G. Owen');
INSERT INTO "account" VALUES (149, 2, '123', 'lecturer', 'John Hirst');
INSERT INTO "account" VALUES (150, 2, '123', 'lecturer', 'Phyllis Corzine');
INSERT INTO "account" VALUES (151, 2, '123', 'lecturer', ' Roderick Stackelberg');
INSERT INTO "account" VALUES (152, 2, '123', 'lecturer', 'Claes G. Ryn');
INSERT INTO "account" VALUES (153, 2, '123', 'lecturer', 'Paul A. Cohen');
INSERT INTO "account" VALUES (154, 2, '123', 'lecturer', 'John Sloman, Kevin Hinde');
INSERT INTO "account" VALUES (155, 2, '123', 'lecturer', 'John Sloman, Kevin Hinde, Dean Garratt');
INSERT INTO "account" VALUES (156, 2, '123', 'lecturer', 'David Ray Anderson');
INSERT INTO "account" VALUES (157, 2, '123', 'lecturer', 'Jan Tinbergen');
INSERT INTO "account" VALUES (158, 2, '123', 'lecturer', 'Hans Wiesmeth');
INSERT INTO "account" VALUES (159, 2, '123', 'lecturer', 'Linda Y. Yueh');
INSERT INTO "account" VALUES (160, 2, '123', 'lecturer', 'Loren Yager, United States General Accounting Office');
INSERT INTO "account" VALUES (161, 2, '123', 'lecturer', 'Atul Kr Sharma');
INSERT INTO "account" VALUES (162, 2, '123', 'lecturer', 'Tony Proctor');
INSERT INTO "account" VALUES (163, 2, '123', 'lecturer', 'Kate Gillespie, Jean-Pierre Jeannet, Hubert David Hennessey');
INSERT INTO "account" VALUES (164, 2, '123', 'lecturer', 'Sonny Nwankwo, Tunji Gbadamosi');
INSERT INTO "account" VALUES (165, 2, '123', 'lecturer', 'H. J. Riezebos, Bas Kist, Gert L. Kootstra');
INSERT INTO "account" VALUES (166, 2, '123', 'lecturer', 'Gwen Hewett');
INSERT INTO "account" VALUES (167, 2, '123', 'lecturer', 'S. C. Bhatia');
INSERT INTO "account" VALUES (168, 2, '123', 'lecturer', 'Eugene F. Brigham, Michael C. Ehrhardt');
INSERT INTO "account" VALUES (169, 2, '123', 'lecturer', 'John C. Burch, Jr., Bruce S. Foerster');
INSERT INTO "account" VALUES (170, 2, '123', 'lecturer', 'Shim, Joel G. Siegel');
INSERT INTO "account" VALUES (171, 2, '123', 'lecturer', 'S.S.Kaptan');
INSERT INTO "account" VALUES (172, 2, '123', 'lecturer', 'Aswath Damodaran');
INSERT INTO "account" VALUES (173, 2, '123', 'lecturer', 'Maurice D. Levi');
INSERT INTO "account" VALUES (174, 2, '123', 'lecturer', 'Anthony Saunders, Marcia Millon Cornett');
INSERT INTO "account" VALUES (175, 2, '123', 'lecturer', 'Moorad Choudhry');
INSERT INTO "account" VALUES (176, 2, '123', 'lecturer', 'Ved Prakash');
INSERT INTO "account" VALUES (177, 2, '123', 'lecturer', 'Henry R. Cheeseman');
INSERT INTO "account" VALUES (178, 2, '123', 'lecturer', 'Charles H. Gibson');
INSERT INTO "account" VALUES (179, 2, '123', 'lecturer', 'Jae K. Shim, Joel G. Siegel');
INSERT INTO "account" VALUES (180, 2, '123', 'lecturer', 'Mukherjee & Hanif, Mohammed Hanif');
INSERT INTO "account" VALUES (181, 2, '123', 'lecturer', 'Robert J. Ramsay, David H. Sinason, Jerry R. Strawser');
INSERT INTO "account" VALUES (182, 2, '123', 'lecturer', 'Dr. Michael Lang, Pasquale Pistone, Josef Schuch, Claus Staringer');
INSERT INTO "account" VALUES (183, 2, '123', 'lecturer', 'Louis Komzsik');
INSERT INTO "account" VALUES (184, 2, '123', 'lecturer', 'Masoud Olia');
INSERT INTO "account" VALUES (185, 2, '123', 'lecturer', 'EDUARDO AUTOR BAYRO CORROCHANO, Garret Sobczyk');
INSERT INTO "account" VALUES (186, 2, '123', 'lecturer', 'J.B. Dixit');
INSERT INTO "account" VALUES (187, 2, '123', 'lecturer', 'Dash & Khuntia');
INSERT INTO "account" VALUES (188, 2, '123', 'lecturer', 'Oliver. Bailey');
INSERT INTO "account" VALUES (189, 2, '123', 'lecturer', 'Branislav Jovic');
INSERT INTO "account" VALUES (190, 2, '123', 'lecturer', 'William J. Dally, John W. Poulton');
INSERT INTO "account" VALUES (191, 2, '123', 'lecturer', 'Mike E. Miles, Gayle Berens, Marc Allan Weiss, Urban Land Institute');
INSERT INTO "account" VALUES (192, 2, '123', 'lecturer', 'Stephen Maxwell Wheeler, Timothy Beatley');
INSERT INTO "account" VALUES (193, 2, '123', 'lecturer', 'Zada Lipman, Nicola Franklin');
INSERT INTO "account" VALUES (194, 2, '123', 'lecturer', 'Jan S. Krouwer');
INSERT INTO "account" VALUES (195, 2, '123', 'lecturer', 'Ron Kasprisin');
INSERT INTO "account" VALUES (196, 2, '123', 'lecturer', 'David Adams, Craig Watkins');
INSERT INTO "account" VALUES (197, 2, '123', 'lecturer', 'Peter Nijkamp, Edwin Smith Mills, Paul C. Cheshire');
INSERT INTO "account" VALUES (198, 2, '123', 'lecturer', 'Guy Bessette');
INSERT INTO "account" VALUES (199, 2, '123', 'lecturer', ' Robert Ferrier, Alan Jenkins');
INSERT INTO "account" VALUES (200, 2, '123', 'lecturer', 'Anthony R. E. Sinclair, John M. Fryxell, Graeme Caughley');
INSERT INTO "account" VALUES (201, 2, '123', 'lecturer', 'C. J. Barrow');
INSERT INTO "account" VALUES (202, 2, '123', 'lecturer', 'Ben Dolnick');
INSERT INTO "account" VALUES (203, 2, '123', 'lecturer', 'James A. Kent');
INSERT INTO "account" VALUES (204, 2, '123', 'lecturer', 'S. O. Ryding');
INSERT INTO "account" VALUES (205, 2, '123', 'lecturer', 'Eugene L. Madsen');
INSERT INTO "account" VALUES (206, 2, '123', 'lecturer', 'J. Dunlop, D. G. Smith');
INSERT INTO "account" VALUES (207, 2, '123', 'lecturer', 'Dr James S. Griffiths');
INSERT INTO "account" VALUES (208, 2, '123', 'lecturer', 'Steven N. Liss, Ian G. Droppo, Gary G. Leppard, Timothy G. Milligan');
INSERT INTO "account" VALUES (209, 2, '123', 'lecturer', 'David Bennett');
INSERT INTO "account" VALUES (210, 2, '123', 'lecturer', 'no lecturer');
INSERT INTO "account" VALUES (211, 2, '123', 'lecturer', 'E. J. Mittemeijer');
INSERT INTO "account" VALUES (212, 2, '123', 'lecturer', 'Francis A. DiGiano');
INSERT INTO "account" VALUES (213, 2, '123', 'lecturer', 'Peter Fritzson');
INSERT INTO "account" VALUES (214, 2, '123', 'lecturer', 'James H. Swisher');
INSERT INTO "account" VALUES (215, 2, '123', 'lecturer', 'Lesley E. Smart, Elaine A. Moore');
INSERT INTO "account" VALUES (216, 2, '123', 'lecturer', 'Ben R. Finney, Eric M. Jones');
INSERT INTO "account" VALUES (217, 2, '123', 'lecturer', 'James M. Gere, Barry J. Goodno');
INSERT INTO "account" VALUES (218, 2, '123', 'lecturer', 'Jesus A. Del Alamo');
INSERT INTO "account" VALUES (219, 2, '123', 'lecturer', 'Nicola A. Spaldin');
INSERT INTO "account" VALUES (220, 2, '123', 'lecturer', 'Roger Evans, Roger Evans (MRCP.), Patrick Durston');
INSERT INTO "account" VALUES (221, 2, '123', 'lecturer', 'Avi Shai, Howard I. Maibach');
INSERT INTO "account" VALUES (222, 2, '123', 'lecturer', 'Deborah Kirklin, Ruth Richardson');
INSERT INTO "account" VALUES (223, 2, '123', 'lecturer', 'Debajyoti Das');
INSERT INTO "account" VALUES (224, 2, '123', 'lecturer', 'Harold R. Smith, Cynthia L. Comella, Birgit Högl');
INSERT INTO "account" VALUES (225, 2, '123', 'lecturer', 'Paul Dowswell');
INSERT INTO "account" VALUES (226, 2, '123', 'lecturer', 'Paula McGee, George Castledine');
INSERT INTO "account" VALUES (227, 2, '123', 'lecturer', 'Maria T. Codina Leik');
INSERT INTO "account" VALUES (228, 2, '123', 'lecturer', 'A. Hardon, P. Boonmongkon, P. Streefland, M. L. Tan');
INSERT INTO "account" VALUES (229, 2, '123', 'lecturer', 'George Anders');
INSERT INTO "account" VALUES (230, 2, '123', 'lecturer', 'John Aldridge, Saul Becker');
INSERT INTO "account" VALUES (231, 2, '123', 'lecturer', 'no lecturer for this subject');
INSERT INTO "account" VALUES (232, 2, '123', 'lecturer', 'Clint Douglas, Geraldine Rebeiro, Jackie Crisp, Catherine Taylor');
INSERT INTO "account" VALUES (233, 2, '123', 'lecturer', 'David A. Holdford, Ph.D.');
INSERT INTO "account" VALUES (234, 2, '123', 'lecturer', 'Nita K. Pandit');
INSERT INTO "account" VALUES (235, 2, '123', 'lecturer', 'Rose M. Nieves');
INSERT INTO "account" VALUES (236, 2, '123', 'lecturer', 'Stephen H. Curry, Robin Whelpton');
INSERT INTO "account" VALUES (237, 2, '123', 'lecturer', 'Janet Houser, Kathleen Oman');
INSERT INTO "account" VALUES (238, 2, '123', 'lecturer', 'Valorie A. Crooks, Gavin J. Andrews');
INSERT INTO "account" VALUES (239, 2, '123', 'lecturer', 'Judith C. Ahronheim, M.D., Jonathan Moreno, Connie Zuckerman');
INSERT INTO "account" VALUES (240, 2, '123', 'lecturer', 'M. D. C. P. Li');
INSERT INTO "account" VALUES (241, 2, '123', 'lecturer', 'Elizabeth J. Perry, Mark Selden');
INSERT INTO "account" VALUES (242, 2, '123', 'lecturer', 'Giovanni Maciocia');
INSERT INTO "account" VALUES (243, 2, '123', 'lecturer', 'Chang-qing Guo, Bo Hu, Nai-gang Liu');
INSERT INTO "account" VALUES (244, 2, '123', 'lecturer', 'Mary Beth Braun, Stephanie J. Simonson');
INSERT INTO "account" VALUES (245, 2, '123', 'lecturer', 'Yifan Yang');
INSERT INTO "account" VALUES (246, 2, '123', 'lecturer', 'Hongming Ma');
INSERT INTO "account" VALUES (247, 2, '123', 'lecturer', 'David Hartmann');
INSERT INTO "account" VALUES (248, 2, '123', 'lecturer', 'Inder S. Anand, Naranjan S. Dhalla, Purshotam L');
COMMIT;
-- ----------------------------
-- Table structure for assignment
-- ----------------------------
DROP TABLE IF EXISTS "assignment";
CREATE TABLE "assignment" (
"due_date" date,
"assignment_task" text COLLATE "pg_catalog"."default",
"id" int4 NOT NULL DEFAULT nextval('assignment_id_seq'::regclass),
"lesson" int4,
"type" int4
)
;
-- ----------------------------
-- Records of assignment
-- ----------------------------
BEGIN;
INSERT INTO "assignment" VALUES ('2013-06-20', '', 1, 1, 2);
INSERT INTO "assignment" VALUES ('2013-06-20', '', 2, 2, 2);
INSERT INTO "assignment" VALUES ('2013-06-20', '', 3, 3, 2);
INSERT INTO "assignment" VALUES ('2013-06-20', '', 4, 4, 2);
INSERT INTO "assignment" VALUES ('2013-06-20', '', 5, 5, 2);
INSERT INTO "assignment" VALUES ('2013-06-20', '', 6, 6, 2);
INSERT INTO "assignment" VALUES ('2013-06-20', '', 7, 7, 2);
INSERT INTO "assignment" VALUES ('2013-06-20', '', 8, 8, 2);
INSERT INTO "assignment" VALUES ('2013-06-20', '', 9, 9, 2);
INSERT INTO "assignment" VALUES ('2013-06-20', '', 10, 10, 2);
INSERT INTO "assignment" VALUES ('2013-06-20', '', 11, 11, 2);
INSERT INTO "assignment" VALUES ('2013-06-20', '', 12, 12, 2);
INSERT INTO "assignment" VALUES ('2013-06-20', '', 13, 13, 2);
INSERT INTO "assignment" VALUES ('2013-06-20', '', 14, 14, 2);
INSERT INTO "assignment" VALUES ('2013-06-20', '', 15, 15, 2);
INSERT INTO "assignment" VALUES ('2013-06-20', '', 16, 16, 2);
INSERT INTO "assignment" VALUES ('2013-06-20', '', 17, 17, 2);
INSERT INTO "assignment" VALUES ('2013-06-20', '', 18, 18, 2);
INSERT INTO "assignment" VALUES ('2013-06-20', '', 19, 19, 2);
INSERT INTO "assignment" VALUES ('2013-06-20', '', 20, 20, 2);
INSERT INTO "assignment" VALUES ('2013-06-20', '', 21, 21, 2);
INSERT INTO "assignment" VALUES ('2013-06-20', '', 22, 22, 2);
INSERT INTO "assignment" VALUES ('2013-06-20', '', 23, 23, 2);
INSERT INTO "assignment" VALUES ('2013-06-20', '', 24, 24, 2);
INSERT INTO "assignment" VALUES ('2013-06-20', '', 25, 25, 2);
INSERT INTO "assignment" VALUES ('2013-06-20', '', 26, 26, 2);
INSERT INTO "assignment" VALUES ('2013-06-20', '', 27, 27, 2);
INSERT INTO "assignment" VALUES ('2013-06-20', '', 28, 28, 2);
INSERT INTO "assignment" VALUES ('2013-06-20', '', 29, 29, 2);
INSERT INTO "assignment" VALUES ('2013-06-20', '', 30, 30, 2);
INSERT INTO "assignment" VALUES ('2013-06-20', '', 31, 31, 2);
INSERT INTO "assignment" VALUES ('2013-06-20', '', 32, 32, 2);
INSERT INTO "assignment" VALUES ('2013-06-20', '', 33, 33, 2);
INSERT INTO "assignment" VALUES ('2013-06-20', '', 34, 34, 2);
INSERT INTO "assignment" VALUES ('2013-06-20', '', 35, 35, 2);
INSERT INTO "assignment" VALUES ('2013-06-20', '', 36, 36, 2);
INSERT INTO "assignment" VALUES ('2013-06-20', '', 37, 37, 2);
INSERT INTO "assignment" VALUES ('2013-06-20', '', 38, 38, 2);
INSERT INTO "assignment" VALUES ('2013-06-20', '', 39, 39, 2);
INSERT INTO "assignment" VALUES ('2013-06-20', '', 40, 40, 2);
INSERT INTO "assignment" VALUES ('2013-06-20', '', 41, 41, 2);
INSERT INTO "assignment" VALUES ('2013-06-20', '', 42, 42, 2);
INSERT INTO "assignment" VALUES ('2013-06-20', '', 43, 43, 2);
INSERT INTO "assignment" VALUES ('2013-06-20', '', 44, 44, 2);
INSERT INTO "assignment" VALUES ('2013-06-20', '', 45, 45, 2);
INSERT INTO "assignment" VALUES ('2013-06-20', '', 46, 46, 2);
INSERT INTO "assignment" VALUES ('2013-06-20', '', 47, 47, 2);
INSERT INTO "assignment" VALUES ('2013-06-20', '', 48, 48, 2);
INSERT INTO "assignment" VALUES ('2013-06-20', '', 49, 49, 2);
INSERT INTO "assignment" VALUES ('2013-06-20', '', 50, 50, 2);
INSERT INTO "assignment" VALUES ('2013-06-20', '', 51, 51, 2);
INSERT INTO "assignment" VALUES ('2013-06-20', '', 52, 52, 2);
INSERT INTO "assignment" VALUES ('2013-06-20', '', 53, 53, 2);
INSERT INTO "assignment" VALUES ('2013-06-20', '', 54, 54, 2);
INSERT INTO "assignment" VALUES ('2013-06-20', '', 55, 55, 2);
INSERT INTO "assignment" VALUES ('2013-06-20', '', 56, 56, 2);
INSERT INTO "assignment" VALUES ('2013-06-20', '', 57, 57, 2);
INSERT INTO "assignment" VALUES ('2013-06-20', '', 58, 58, 2);
INSERT INTO "assignment" VALUES ('2013-06-20', '', 59, 59, 2);
INSERT INTO "assignment" VALUES ('2013-06-20', '', 60, 60, 2);
INSERT INTO "assignment" VALUES ('2013-06-20', '', 61, 61, 2);
INSERT INTO "assignment" VALUES ('2013-06-20', '', 62, 62, 2);
INSERT INTO "assignment" VALUES ('2013-06-20', '', 63, 63, 2);
INSERT INTO "assignment" VALUES ('2013-06-20', '', 64, 64, 2);
INSERT INTO "assignment" VALUES ('2013-06-20', '', 65, 65, 2);
INSERT INTO "assignment" VALUES ('2013-06-20', '', 66, 66, 2);
INSERT INTO "assignment" VALUES ('2013-06-20', '', 67, 67, 2);
INSERT INTO "assignment" VALUES ('2013-06-20', '', 68, 68, 2);
INSERT INTO "assignment" VALUES ('2013-06-20', '', 69, 69, 2);
INSERT INTO "assignment" VALUES ('2013-06-20', '', 70, 70, 2);
INSERT INTO "assignment" VALUES ('2013-06-20', '', 71, 71, 2);
INSERT INTO "assignment" VALUES ('2013-06-20', '', 72, 72, 2);
INSERT INTO "assignment" VALUES ('2013-06-20', '', 73, 73, 2);
INSERT INTO "assignment" VALUES ('2013-06-20', '', 74, 74, 2);
INSERT INTO "assignment" VALUES ('2013-06-20', '', 75, 75, 2);
INSERT INTO "assignment" VALUES ('2013-06-20', '', 76, 76, 2);
INSERT INTO "assignment" VALUES ('2013-06-20', '', 77, 77, 2);
INSERT INTO "assignment" VALUES ('2013-06-20', '', 78, 78, 2);
INSERT INTO "assignment" VALUES ('2013-06-20', '', 79, 79, 2);
INSERT INTO "assignment" VALUES ('2013-06-20', '', 80, 80, 2);
INSERT INTO "assignment" VALUES ('2013-06-20', '', 81, 81, 2);
INSERT INTO "assignment" VALUES ('2013-06-20', '', 82, 82, 2);
INSERT INTO "assignment" VALUES ('2013-06-20', '', 83, 83, 2);
INSERT INTO "assignment" VALUES ('2013-06-20', '', 84, 84, 2);
INSERT INTO "assignment" VALUES ('2013-06-20', '', 85, 85, 2);
INSERT INTO "assignment" VALUES ('2013-06-20', '', 86, 86, 2);
INSERT INTO "assignment" VALUES ('2013-06-20', '', 87, 87, 2);
INSERT INTO "assignment" VALUES ('2013-06-20', '', 88, 88, 2);
INSERT INTO "assignment" VALUES ('2013-06-20', '', 89, 89, 2);
INSERT INTO "assignment" VALUES ('2013-06-20', '', 90, 90, 2);
INSERT INTO "assignment" VALUES ('2013-06-20', '', 91, 91, 2);
INSERT INTO "assignment" VALUES ('2013-06-20', '', 92, 92, 2);
INSERT INTO "assignment" VALUES ('2013-06-20', '', 93, 93, 2);
INSERT INTO "assignment" VALUES ('2013-06-20', '', 94, 94, 2);
INSERT INTO "assignment" VALUES ('2013-06-20', '', 95, 95, 2);
INSERT INTO "assignment" VALUES ('2013-06-20', '', 96, 96, 2);
INSERT INTO "assignment" VALUES ('2013-06-20', '', 97, 97, 2);
INSERT INTO "assignment" VALUES ('2013-06-20', '', 98, 98, 2);
INSERT INTO "assignment" VALUES ('2013-06-20', '', 99, 99, 2);
INSERT INTO "assignment" VALUES ('2013-06-20', '', 100, 100, 2);
INSERT INTO "assignment" VALUES ('2013-06-20', '', 101, 101, 2);
INSERT INTO "assignment" VALUES ('2013-06-20', '', 102, 102, 2);
INSERT INTO "assignment" VALUES ('2013-06-20', '', 103, 103, 2);
INSERT INTO "assignment" VALUES ('2013-06-20', '', 104, 104, 2);
INSERT INTO "assignment" VALUES ('2013-06-20', '', 105, 105, 2);
INSERT INTO "assignment" VALUES ('2013-06-20', '', 106, 106, 2);
INSERT INTO "assignment" VALUES ('2013-06-20', '', 107, 107, 2);
INSERT INTO "assignment" VALUES ('2013-06-20', '', 108, 108, 2);
INSERT INTO "assignment" VALUES ('2013-06-20', '', 109, 109, 2);
INSERT INTO "assignment" VALUES ('2013-06-20', '', 110, 110, 2);
INSERT INTO "assignment" VALUES ('2013-06-20', '', 111, 111, 2);
INSERT INTO "assignment" VALUES ('2013-06-20', '', 112, 112, 2);
INSERT INTO "assignment" VALUES ('2013-06-20', '', 113, 113, 2);
INSERT INTO "assignment" VALUES ('2013-06-20', '', 114, 114, 2);
INSERT INTO "assignment" VALUES ('2013-06-20', '', 115, 115, 2);
INSERT INTO "assignment" VALUES ('2013-06-20', '', 116, 116, 2);
INSERT INTO "assignment" VALUES ('2013-06-20', '', 117, 117, 2);
INSERT INTO "assignment" VALUES ('2013-06-20', '', 118, 118, 2);
INSERT INTO "assignment" VALUES ('2013-06-20', '', 119, 119, 2);
INSERT INTO "assignment" VALUES ('2013-06-20', '', 120, 120, 2);