This repository has been archived by the owner on May 11, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
dump.sql
1509 lines (1469 loc) · 174 KB
/
dump.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
-- dump file for Postgres 12
DROP DATABASE IF EXISTS hospital;
CREATE DATABASE hospital;
CREATE TYPE gender_type AS ENUM ('male', 'female');
CREATE TYPE staff_position_type AS ENUM('doctor', 'administrator', 'nurse', 'security', 'IT_administrator');
CREATE TYPE notification_status_type AS ENUM('open', 'closed');
CREATE TYPE ticket_status_type AS ENUM('open', 'closed');
-- auth
CREATE SEQUENCE IF NOT EXISTS auth_seq;
CREATE TABLE IF NOT EXISTS auth(
id int DEFAULT NEXTVAL ('auth_seq'),
login varchar(255) UNIQUE,
password1 varchar(20),
name varchar(20),
PRIMARY KEY (id)
);
-- passport
CREATE TABLE IF NOT EXISTS passport (
seria int check (seria > 0),
number int check (number > 0),
birth timestamp(0),
f_name varchar(50),
l_name varchar(50),
gender gender_type,
address varchar(100),
PRIMARY KEY (seria, number)
);
-- staff
CREATE SEQUENCE IF NOT EXISTS staff_seq;
CREATE TABLE IF NOT EXISTS staff(
id int DEFAULT NEXTVAL ('staff_seq'),
first_name varchar(20),
last_name varchar(20),
room int,
auth_id int,
birthday date,
position staff_position_type,
gender gender_type,
FOREIGN KEY (auth_id) REFERENCES auth(id),
PRIMARY KEY (id)
);
-- camera
CREATE SEQUENCE IF NOT EXISTS camera_seq;
CREATE TABLE IF NOT EXISTS camera (
id int DEFAULT NEXTVAL ('camera_seq'),
name varchar(200),
LOCATION POINT,
staff_id INT,
FOREIGN KEY (staff_id) REFERENCES staff(id),
PRIMARY key (id)
);
-- patient
CREATE SEQUENCE IF NOT EXISTS patient_seq;
CREATE TABLE IF NOT EXISTS patient (
id int DEFAULT NEXTVAL ('patient_seq'),
bank_account_id int,
auth_id int,
phone_num VARCHAR(30),
insurance_policy_id int,
passport_seria int check (passport_seria > 0),
passport_number int check (passport_number > 0),
FOREIGN KEY (
passport_seria,
passport_number
) REFERENCES passport(seria, number),
FOREIGN KEY (auth_id) REFERENCES auth(id),
PRIMARY KEY (id)
);
-- complain
CREATE SEQUENCE IF NOT EXISTS complain_seq;
CREATE TABLE IF NOT EXISTS complain (
id int DEFAULT NEXTVAL ('complain_seq'),
theme varchar(50),
creation_date timestamp(0),
complain_text varchar(255),
PRIMARY KEY (id)
);
-- ticket
CREATE SEQUENCE IF NOT EXISTS ticket_seq;
CREATE TABLE IF NOT EXISTS ticket (
id int DEFAULT NEXTVAL ('ticket_seq'),
ticket_text varchar(255),
creation_date timestamp(0),
closing_date timestamp(0),
PRIMARY KEY (id)
);
-- notification
CREATE SEQUENCE IF NOT EXISTS notification_seq;
CREATE TABLE IF NOT EXISTS notification (
id int DEFAULT NEXTVAL ('notification_seq'),
notification_text varchar(255),
notification_status notification_status_type,
PRIMARY KEY (id)
);
-- invoice
CREATE SEQUENCE IF NOT EXISTS invoice_seq;
CREATE TABLE IF NOT EXISTS invoice(
id int DEFAULT NEXTVAL ('invoice_seq'),
amount int check (amount > 0),
date_of_creation timestamp(0),
reason varchar(255),
PRIMARY KEY (id)
);
-- appointment
CREATE SEQUENCE IF NOT EXISTS appointment_seq;
CREATE TABLE IF NOT EXISTS appointment(
id int DEFAULT NEXTVAL ('appointment_seq'),
occurrence_date timestamp(0),
diagnosis varchar(255),
description varchar(255),
reason_to_create varchar(255),
PRIMARY KEY (id)
);
-- appointment_patient_doctor_relation
CREATE SEQUENCE IF NOT EXISTS appointment_patient_doctor_relation_seq;
CREATE TABLE IF NOT EXISTS appointment_patient_doctor_relation (
id int DEFAULT NEXTVAL ('appointment_patient_doctor_relation_seq'),
appointment_id int,
patient_id int,
doctor_id int,
FOREIGN KEY (appointment_id) REFERENCES appointment(id),
FOREIGN KEY (patient_id) REFERENCES patient(id),
FOREIGN KEY (doctor_id) REFERENCES staff(id),
PRIMARY KEY (id)
);
-- patient_ticket_relation
CREATE SEQUENCE IF NOT EXISTS patient_ticket_relation_seq;
CREATE TABLE IF NOT EXISTS patient_ticket_relation(
id int DEFAULT NEXTVAL ('patient_ticket_relation_seq'),
patient_id int,
ticket_id int,
FOREIGN KEY (patient_id) REFERENCES patient(id),
FOREIGN KEY (ticket_id) REFERENCES ticket(id),
PRIMARY KEY (id)
);
-- staff_ticket_relation
CREATE SEQUENCE IF NOT EXISTS staff_ticket_relation_seq;
CREATE TABLE staff_ticket_relation(
id int DEFAULT NEXTVAL ('staff_ticket_relation_seq'),
staff_id int,
ticket_id int,
ticket_status ticket_status_type,
FOREIGN KEY (staff_id) REFERENCES staff(id),
FOREIGN KEY (ticket_id) REFERENCES ticket(id),
PRIMARY KEY (id)
);
-- notification_staff_relation
CREATE SEQUENCE IF NOT EXISTS notification_staff_relation_seq;
CREATE TABLE notification_staff_relation(
id int DEFAULT NEXTVAL ('notification_staff_relation_seq'),
notification_id int,
staff_id int,
FOREIGN KEY (notification_id) REFERENCES notification(id),
FOREIGN KEY (staff_id) REFERENCES staff(id),
PRIMARY KEY (id)
);
-- notification_patient_relation
CREATE SEQUENCE IF NOT EXISTS notification_patient_relation_seq;
CREATE TABLE notification_patient_relation(
id int DEFAULT NEXTVAL ('notification_patient_relation_seq'),
notification_id int,
patient_id int,
FOREIGN KEY (notification_id) REFERENCES notification(id),
FOREIGN KEY (patient_id) REFERENCES patient(id),
PRIMARY KEY (id)
);
-- patient_invoice_staff_relation
CREATE SEQUENCE patient_invoice_staff_relation_seq;
CREATE TABLE patient_invoice_staff_relation (
id int DEFAULT NEXTVAL ('patient_invoice_staff_relation_seq'),
staff_id int,
patient_id int,
invoice_id int,
FOREIGN KEY (staff_id) REFERENCES staff(id),
FOREIGN KEY (patient_id) REFERENCES patient(id),
FOREIGN KEY (invoice_id) REFERENCES invoice(id),
PRIMARY KEY (id)
);
-- patient_complain_relation
CREATE SEQUENCE IF NOT EXISTS patient_complain_relation_seq;
CREATE TABLE patient_complain_relation(
id int DEFAULT NEXTVAL ('patient_complain_relation_seq'),
patient_id int,
complain_id int,
FOREIGN KEY (patient_id) REFERENCES patient(id),
FOREIGN KEY (complain_id) REFERENCES complain(id),
PRIMARY KEY (id)
);
-- doctor_nurse_relation
CREATE SEQUENCE IF NOT EXISTS doctor_nurse_relation_seq;
CREATE TABLE IF NOT EXISTS doctor_nurse_relation (
id int DEFAULT NEXTVAL ('doctor_nurse_relation_seq'),
doctor_id int,
nurse_id int,
FOREIGN KEY (doctor_id) REFERENCES staff(id),
FOREIGN KEY (nurse_id) REFERENCES staff(id),
PRIMARY KEY (id)
);
-- generation
INSERT INTO auth (login, password1, name) VALUES ('[email protected]', 'GI0594WK16', 'Antonio') ;
INSERT INTO auth (login, password1, name) VALUES ('[email protected]', 'AK5403OG89', 'Leslie') ;
INSERT INTO auth (login, password1, name) VALUES ('[email protected]', 'SU5337SR68', 'Delta') ;
INSERT INTO auth (login, password1, name) VALUES ('[email protected]', 'RG3111JK86', 'Derick') ;
INSERT INTO auth (login, password1, name) VALUES ('[email protected]', 'IW5389VE86', 'Gaylord') ;
INSERT INTO auth (login, password1, name) VALUES ('[email protected]', 'JN8695KU41', 'Johnsie') ;
INSERT INTO auth (login, password1, name) VALUES ('[email protected]', 'PG5431JU14', 'Kiley') ;
INSERT INTO auth (login, password1, name) VALUES ('[email protected]', 'RP6202UL76', 'Reita') ;
INSERT INTO auth (login, password1, name) VALUES ('[email protected]', 'ND4528LS60', 'Charles') ;
INSERT INTO auth (login, password1, name) VALUES ('[email protected]', 'QV8583JP86', 'Ethan') ;
INSERT INTO auth (login, password1, name) VALUES ('[email protected]', 'HH8965UF50', 'Israel') ;
INSERT INTO auth (login, password1, name) VALUES ('[email protected]', 'PF1399JA84', 'Carry') ;
INSERT INTO auth (login, password1, name) VALUES ('[email protected]', 'SB5744NU50', 'Shad') ;
INSERT INTO auth (login, password1, name) VALUES ('[email protected]', 'PZ2577PE61', 'Gaylene') ;
INSERT INTO auth (login, password1, name) VALUES ('[email protected]', 'EF4507MO04', 'Teodora') ;
INSERT INTO auth (login, password1, name) VALUES ('[email protected]', 'NV7230NR72', 'Bert') ;
INSERT INTO auth (login, password1, name) VALUES ('[email protected]', 'YA3664NO05', 'Shona') ;
INSERT INTO auth (login, password1, name) VALUES ('[email protected]', 'GH9427YE60', 'Luba') ;
INSERT INTO auth (login, password1, name) VALUES ('[email protected]', 'PW2239ZC00', 'Guy') ;
INSERT INTO auth (login, password1, name) VALUES ('[email protected]', 'ZI2261DH74', 'Nelson') ;
INSERT INTO auth (login, password1, name) VALUES ('[email protected]', 'MD3655KY41', 'Eleni') ;
INSERT INTO auth (login, password1, name) VALUES ('[email protected]', 'SW9253SK70', 'Jere') ;
INSERT INTO auth (login, password1, name) VALUES ('[email protected]', 'IN7423PH81', 'Veta') ;
INSERT INTO auth (login, password1, name) VALUES ('[email protected]', 'LZ9178IN13', 'Neda') ;
INSERT INTO auth (login, password1, name) VALUES ('[email protected]', 'IG2690IW90', 'Lamont') ;
INSERT INTO auth (login, password1, name) VALUES ('[email protected]', 'EZ4117NK25', 'Myles') ;
INSERT INTO auth (login, password1, name) VALUES ('[email protected]', 'YZ9331VT04', 'Rachal') ;
INSERT INTO auth (login, password1, name) VALUES ('[email protected]', 'TJ4618WY13', 'Markita') ;
INSERT INTO auth (login, password1, name) VALUES ('[email protected]', 'IG3617JZ57', 'Marilu') ;
INSERT INTO auth (login, password1, name) VALUES ('[email protected]', 'CF1290CO05', 'Elvie') ;
INSERT INTO auth (login, password1, name) VALUES ('[email protected]', 'NP8029KQ66', 'Delsie') ;
INSERT INTO auth (login, password1, name) VALUES ('[email protected]', 'DA7029FZ69', 'Collin') ;
INSERT INTO auth (login, password1, name) VALUES ('[email protected]', 'XE0871WB00', 'Chad') ;
INSERT INTO auth (login, password1, name) VALUES ('[email protected]', 'VM2670CI42', 'Winston') ;
INSERT INTO auth (login, password1, name) VALUES ('[email protected]', 'ZQ5241GW19', 'Gerald') ;
INSERT INTO auth (login, password1, name) VALUES ('[email protected]', 'KB2651YY46', 'Emmanuel') ;
INSERT INTO auth (login, password1, name) VALUES ('[email protected]', 'NZ8279NC57', 'Clinton') ;
INSERT INTO auth (login, password1, name) VALUES ('[email protected]', 'XD8197PN98', 'Gail') ;
INSERT INTO auth (login, password1, name) VALUES ('[email protected]', 'JQ5645JC15', 'France') ;
INSERT INTO auth (login, password1, name) VALUES ('[email protected]', 'OW2338FR82', 'Martin') ;
INSERT INTO auth (login, password1, name) VALUES ('[email protected]', 'BI2665NU18', 'Yasuko') ;
INSERT INTO auth (login, password1, name) VALUES ('[email protected]', 'GJ6290RA76', 'Luciano') ;
INSERT INTO auth (login, password1, name) VALUES ('[email protected]', 'FX6237QG49', 'Kanisha') ;
INSERT INTO auth (login, password1, name) VALUES ('[email protected]', 'IC5199FP62', 'Rory') ;
INSERT INTO auth (login, password1, name) VALUES ('[email protected]', 'ZC2072LE78', 'Julius') ;
INSERT INTO auth (login, password1, name) VALUES ('[email protected]', 'AI8736UW46', 'Pura') ;
INSERT INTO auth (login, password1, name) VALUES ('[email protected]', 'IV6385SN68', 'Wallace') ;
INSERT INTO auth (login, password1, name) VALUES ('[email protected]', 'CP8354SI99', 'Earlie') ;
INSERT INTO auth (login, password1, name) VALUES ('[email protected]', 'FL8470YQ08', 'Keira') ;
INSERT INTO auth (login, password1, name) VALUES ('[email protected]', 'PX1022GK47', 'Al') ;
INSERT INTO auth (login, password1, name) VALUES ('[email protected]', 'CN6090IX55', 'Isidro') ;
INSERT INTO auth (login, password1, name) VALUES ('[email protected]', 'YD1527OW58', 'Dirk') ;
INSERT INTO auth (login, password1, name) VALUES ('[email protected]', 'IP4765BN38', 'Alisia') ;
INSERT INTO auth (login, password1, name) VALUES ('[email protected]', 'IZ6480WT52', 'Flo') ;
INSERT INTO auth (login, password1, name) VALUES ('[email protected]', 'GS8034JR94', 'Carita') ;
INSERT INTO auth (login, password1, name) VALUES ('[email protected]', 'WV0744HS75', 'Lynwood') ;
INSERT INTO auth (login, password1, name) VALUES ('[email protected]', 'LR0681VV71', 'Leopoldo') ;
INSERT INTO auth (login, password1, name) VALUES ('[email protected]', 'YC0460TJ44', 'Gerald') ;
INSERT INTO auth (login, password1, name) VALUES ('[email protected]', 'SL4669CS51', 'Tomiko') ;
INSERT INTO auth (login, password1, name) VALUES ('[email protected]', 'VZ7899EI57', 'Art') ;
INSERT INTO auth (login, password1, name) VALUES ('[email protected]', 'MR7151WV97', 'Nenita') ;
INSERT INTO auth (login, password1, name) VALUES ('[email protected]', 'ND4907DJ10', 'Octavio') ;
INSERT INTO auth (login, password1, name) VALUES ('[email protected]', 'YU0512JD16', 'Man') ;
INSERT INTO auth (login, password1, name) VALUES ('[email protected]', 'JD0652US41', 'Eric') ;
INSERT INTO auth (login, password1, name) VALUES ('[email protected]', 'TM5522QB37', 'Rubin') ;
INSERT INTO auth (login, password1, name) VALUES ('[email protected]', 'SK8802GS46', 'Blossom') ;
INSERT INTO auth (login, password1, name) VALUES ('[email protected]', 'RG7478CI04', 'Stanton') ;
INSERT INTO auth (login, password1, name) VALUES ('[email protected]', 'KH4614WA81', 'Steven') ;
INSERT INTO auth (login, password1, name) VALUES ('[email protected]', 'RW0804CU15', 'Drusilla') ;
INSERT INTO auth (login, password1, name) VALUES ('[email protected]', 'SK9559JU21', 'Margy') ;
INSERT INTO auth (login, password1, name) VALUES ('[email protected]', 'IR9087MP79', 'Rosario') ;
INSERT INTO staff (first_name, last_name, room, auth_id, birthday, position, gender) VALUES ('Bronwyn', 'Sykes', 6, 71, '2007-02-15', 'doctor', 'female') ;
INSERT INTO auth (login, password1, name) VALUES ('[email protected]', 'MC3996MD30', 'Elvin') ;
INSERT INTO staff (first_name, last_name, room, auth_id, birthday, position, gender) VALUES ('Joey', 'Rivera', 97, 72, '1998-01-29', 'nurse', 'female') ;
INSERT INTO auth (login, password1, name) VALUES ('[email protected]', 'EF1971EV85', 'Jonas') ;
INSERT INTO staff (first_name, last_name, room, auth_id, birthday, position, gender) VALUES ('Bernard', 'Burns', 36, 73, '1992-08-26', 'security', 'male') ;
INSERT INTO invoice (amount, date_of_creation, reason) VALUES ('46835', '2020-10-04 11:59:07.921021', 'It is also a garbage-coll') ;
INSERT INTO complain (theme, creation_date, complain_text) VALUES ('Ports are used to communi', '2000-11-19 16:44:17.080861', 'Atoms are used within a p') ;
INSERT INTO auth (login, password1, name) VALUES ('[email protected]', 'WH3367OT45', 'Willian') ;
INSERT INTO staff (first_name, last_name, room, auth_id, birthday, position, gender) VALUES ('Arnoldo', 'Ingram', 26, 74, '1983-11-18', 'security', 'female') ;
INSERT INTO camera (name, location, staff_id) VALUES ('Danyell', '(100, 144)', 4) ;
INSERT INTO auth (login, password1, name) VALUES ('[email protected]', 'YY7868AE14', 'Latia') ;
INSERT INTO staff (first_name, last_name, room, auth_id, birthday, position, gender) VALUES ('Sung', 'Baird', 75, 75, '1965-03-15', 'doctor', 'female') ;
INSERT INTO auth (login, password1, name) VALUES ('[email protected]', 'GE2798YZ78', 'Otelia') ;
INSERT INTO staff (first_name, last_name, room, auth_id, birthday, position, gender) VALUES ('Emmaline', 'Mcfadden', 26, 76, '1955-04-25', 'nurse', 'female') ;
INSERT INTO auth (login, password1, name) VALUES ('[email protected]', 'II1254ZF45', 'Ian') ;
INSERT INTO staff (first_name, last_name, room, auth_id, birthday, position, gender) VALUES ('Jeannetta', 'Mcgowan', 65, 77, '1994-12-17', 'security', 'male') ;
INSERT INTO invoice (amount, date_of_creation, reason) VALUES ('30871', '2020-05-04 16:29:55.790541', 'Any element of a tuple ca') ;
INSERT INTO complain (theme, creation_date, complain_text) VALUES ('Erlang is known for its d', '2012-02-07 11:09:00.269785', 'Atoms can contain any cha') ;
INSERT INTO auth (login, password1, name) VALUES ('[email protected]', 'XH2265RP24', 'Joline') ;
INSERT INTO staff (first_name, last_name, room, auth_id, birthday, position, gender) VALUES ('Cornelius', 'Simmons', 64, 78, '2016-02-03', 'security', 'male') ;
INSERT INTO camera (name, location, staff_id) VALUES ('Joella', '(28, 112)', 8) ;
INSERT INTO auth (login, password1, name) VALUES ('[email protected]', 'SO4680VK68', 'Estell') ;
INSERT INTO staff (first_name, last_name, room, auth_id, birthday, position, gender) VALUES ('Rene', 'Cash', 68, 79, '1977-08-05', 'doctor', 'male') ;
INSERT INTO auth (login, password1, name) VALUES ('[email protected]', 'VT8239ZZ71', 'Lawerence') ;
INSERT INTO staff (first_name, last_name, room, auth_id, birthday, position, gender) VALUES ('Jonah', 'Calhoun', 24, 80, '2009-01-24', 'nurse', 'female') ;
INSERT INTO auth (login, password1, name) VALUES ('[email protected]', 'FK2424BW31', 'Terrell') ;
INSERT INTO staff (first_name, last_name, room, auth_id, birthday, position, gender) VALUES ('Kent', 'Middleton', 10, 81, '1963-08-23', 'doctor', 'female') ;
INSERT INTO invoice (amount, date_of_creation, reason) VALUES ('5019', '2007-10-10 10:38:59.796594', 'Do you come here often? D') ;
INSERT INTO complain (theme, creation_date, complain_text) VALUES ('They are written as strin', '2017-06-17 16:19:00.434586', 'Erlang is a general-purpo') ;
INSERT INTO auth (login, password1, name) VALUES ('[email protected]', 'CY9789VK08', 'Deedee') ;
INSERT INTO staff (first_name, last_name, room, auth_id, birthday, position, gender) VALUES ('Cleotilde', 'Juarez', 95, 82, '1994-09-27', 'security', 'male') ;
INSERT INTO camera (name, location, staff_id) VALUES ('Amal', '(122, 57)', 12) ;
INSERT INTO auth (login, password1, name) VALUES ('[email protected]', 'FC5096RM19', 'Gaston') ;
INSERT INTO staff (first_name, last_name, room, auth_id, birthday, position, gender) VALUES ('Amiee', 'Gaines', 52, 83, '1987-12-09', 'doctor', 'male') ;
INSERT INTO auth (login, password1, name) VALUES ('[email protected]', 'CG3835BY47', 'Myles') ;
INSERT INTO staff (first_name, last_name, room, auth_id, birthday, position, gender) VALUES ('Phil', 'Ferrell', 32, 84, '2003-03-10', 'nurse', 'male') ;
INSERT INTO auth (login, password1, name) VALUES ('[email protected]', 'KA3939RX07', 'Hyun') ;
INSERT INTO staff (first_name, last_name, room, auth_id, birthday, position, gender) VALUES ('Lon', 'Dalton', 20, 85, '1966-05-10', 'nurse', 'male') ;
INSERT INTO invoice (amount, date_of_creation, reason) VALUES ('18009', '2006-03-14 16:51:11.832040', 'Make me a sandwich. Tuple') ;
INSERT INTO complain (theme, creation_date, complain_text) VALUES ('Atoms are used within a p', '2004-05-31 10:05:08.143431', 'Tuples are containers for') ;
INSERT INTO auth (login, password1, name) VALUES ('[email protected]', 'LO3421HD04', 'Freddy') ;
INSERT INTO staff (first_name, last_name, room, auth_id, birthday, position, gender) VALUES ('Sammie', 'Williamson', 49, 86, '1966-08-04', 'security', 'female') ;
INSERT INTO camera (name, location, staff_id) VALUES ('Leslie', '(92, 147)', 16) ;
INSERT INTO auth (login, password1, name) VALUES ('[email protected]', 'OB2329ET92', 'Chi') ;
INSERT INTO staff (first_name, last_name, room, auth_id, birthday, position, gender) VALUES ('Allyn', 'Wright', 68, 87, '1957-12-09', 'doctor', 'male') ;
INSERT INTO auth (login, password1, name) VALUES ('[email protected]', 'JK3407VP13', 'Bobette') ;
INSERT INTO staff (first_name, last_name, room, auth_id, birthday, position, gender) VALUES ('Elene', 'Hester', 35, 88, '1954-08-27', 'nurse', 'female') ;
INSERT INTO auth (login, password1, name) VALUES ('[email protected]', 'SX8438RM48', 'Louie') ;
INSERT INTO staff (first_name, last_name, room, auth_id, birthday, position, gender) VALUES ('Maile', 'Rios', 35, 89, '1984-08-19', 'administrator', 'female') ;
INSERT INTO invoice (amount, date_of_creation, reason) VALUES ('44677', '2010-04-15 15:51:04.816559', 'Atoms can contain any cha') ;
INSERT INTO complain (theme, creation_date, complain_text) VALUES ('Erlang is a general-purpo', '2008-02-21 14:40:39.910544', 'Ports are created with th') ;
INSERT INTO auth (login, password1, name) VALUES ('[email protected]', 'FV9846XJ03', 'Evia') ;
INSERT INTO staff (first_name, last_name, room, auth_id, birthday, position, gender) VALUES ('Tawna', 'Raymond', 81, 90, '1992-07-02', 'security', 'female') ;
INSERT INTO camera (name, location, staff_id) VALUES ('Shaunta', '(16, 50)', 20) ;
INSERT INTO auth (login, password1, name) VALUES ('[email protected]', 'CY9691SR58', 'Beatris') ;
INSERT INTO staff (first_name, last_name, room, auth_id, birthday, position, gender) VALUES ('Hisako', 'Bass', 58, 91, '1997-02-19', 'doctor', 'female') ;
INSERT INTO auth (login, password1, name) VALUES ('[email protected]', 'RY8048JF79', 'Barton') ;
INSERT INTO staff (first_name, last_name, room, auth_id, birthday, position, gender) VALUES ('Shalanda', 'Morse', 74, 92, '1962-05-27', 'nurse', 'male') ;
INSERT INTO auth (login, password1, name) VALUES ('[email protected]', 'MY8490SD43', 'Coralee') ;
INSERT INTO staff (first_name, last_name, room, auth_id, birthday, position, gender) VALUES ('Ela', 'Harmon', 80, 93, '1988-06-13', 'IT_administrator', 'female') ;
INSERT INTO invoice (amount, date_of_creation, reason) VALUES ('77637', '2006-04-09 11:50:30.015717', 'Its main implementation i') ;
INSERT INTO complain (theme, creation_date, complain_text) VALUES ('Where are my pants? In 19', '2020-05-17 10:16:47.413878', 'Atoms are used within a p') ;
INSERT INTO auth (login, password1, name) VALUES ('[email protected]', 'YJ6462OJ21', 'Emil') ;
INSERT INTO staff (first_name, last_name, room, auth_id, birthday, position, gender) VALUES ('Raymundo', 'Rocha', 94, 94, '1980-06-03', 'security', 'female') ;
INSERT INTO camera (name, location, staff_id) VALUES ('Maynard', '(83, 122)', 24) ;
INSERT INTO auth (login, password1, name) VALUES ('[email protected]', 'KK5034UT96', 'Pat') ;
INSERT INTO staff (first_name, last_name, room, auth_id, birthday, position, gender) VALUES ('Norberto', 'Medina', 48, 95, '1966-10-05', 'doctor', 'female') ;
INSERT INTO auth (login, password1, name) VALUES ('[email protected]', 'MF0290EM35', 'Jeanelle') ;
INSERT INTO staff (first_name, last_name, room, auth_id, birthday, position, gender) VALUES ('Yong', 'Little', 78, 96, '1970-12-04', 'nurse', 'female') ;
INSERT INTO auth (login, password1, name) VALUES ('[email protected]', 'BG9699VU52', 'Bradley') ;
INSERT INTO staff (first_name, last_name, room, auth_id, birthday, position, gender) VALUES ('Dania', 'Hill', 91, 97, '2011-01-24', 'nurse', 'female') ;
INSERT INTO invoice (amount, date_of_creation, reason) VALUES ('6166', '2011-08-04 12:24:03.478156', 'In 1989 the building was ') ;
INSERT INTO complain (theme, creation_date, complain_text) VALUES ('Erlang is known for its d', '2016-03-24 15:25:10.663044', 'They are written as strin') ;
INSERT INTO auth (login, password1, name) VALUES ('[email protected]', 'NF9000YO80', 'Cletus') ;
INSERT INTO staff (first_name, last_name, room, auth_id, birthday, position, gender) VALUES ('Chas', 'Bolton', 48, 98, '2018-12-04', 'security', 'female') ;
INSERT INTO camera (name, location, staff_id) VALUES ('Codi', '(68, 59)', 28) ;
INSERT INTO auth (login, password1, name) VALUES ('[email protected]', 'KF9565GL22', 'Brady') ;
INSERT INTO staff (first_name, last_name, room, auth_id, birthday, position, gender) VALUES ('Jason', 'Simmons', 41, 99, '1994-04-01', 'doctor', 'female') ;
INSERT INTO auth (login, password1, name) VALUES ('[email protected]', 'UJ4866RF43', 'Britany') ;
INSERT INTO staff (first_name, last_name, room, auth_id, birthday, position, gender) VALUES ('Isaiah', 'Ramsey', 74, 100, '1976-05-02', 'nurse', 'male') ;
INSERT INTO auth (login, password1, name) VALUES ('[email protected]', 'ML8106VO51', 'Pandora') ;
INSERT INTO staff (first_name, last_name, room, auth_id, birthday, position, gender) VALUES ('Blossom', 'Garza', 26, 101, '2011-05-14', 'security', 'female') ;
INSERT INTO invoice (amount, date_of_creation, reason) VALUES ('71808', '2003-06-22 11:08:51.023221', 'Make me a sandwich. Type ') ;
INSERT INTO complain (theme, creation_date, complain_text) VALUES ('Haskell features a type s', '2007-05-21 16:38:49.916783', 'Ports are used to communi') ;
INSERT INTO auth (login, password1, name) VALUES ('[email protected]', 'MH8547AC91', 'Lael') ;
INSERT INTO staff (first_name, last_name, room, auth_id, birthday, position, gender) VALUES ('Kim', 'Stewart', 34, 102, '2010-10-04', 'security', 'male') ;
INSERT INTO camera (name, location, staff_id) VALUES ('Jerica', '(42, 14)', 32) ;
INSERT INTO auth (login, password1, name) VALUES ('[email protected]', 'RR4947PP70', 'Francis') ;
INSERT INTO staff (first_name, last_name, room, auth_id, birthday, position, gender) VALUES ('Williams', 'Blair', 66, 103, '2001-01-28', 'doctor', 'female') ;
INSERT INTO auth (login, password1, name) VALUES ('[email protected]', 'OG2970UG05', 'Chong') ;
INSERT INTO staff (first_name, last_name, room, auth_id, birthday, position, gender) VALUES ('Maryanna', 'Boyle', 54, 104, '1958-05-31', 'nurse', 'female') ;
INSERT INTO auth (login, password1, name) VALUES ('[email protected]', 'LQ3232YD07', 'Jerrell') ;
INSERT INTO staff (first_name, last_name, room, auth_id, birthday, position, gender) VALUES ('Cletus', 'Harrison', 79, 105, '1975-05-04', 'nurse', 'male') ;
INSERT INTO invoice (amount, date_of_creation, reason) VALUES ('57455', '2011-01-24 16:41:36.035098', 'Atoms can contain any cha') ;
INSERT INTO complain (theme, creation_date, complain_text) VALUES ('The syntax {D1,D2,...,Dn}', '2003-02-27 14:36:20.660174', 'The sequential subset of ') ;
INSERT INTO auth (login, password1, name) VALUES ('[email protected]', 'JM6322XC74', 'Diego') ;
INSERT INTO staff (first_name, last_name, room, auth_id, birthday, position, gender) VALUES ('Jacinto', 'Fowler', 13, 106, '1973-12-30', 'security', 'female') ;
INSERT INTO camera (name, location, staff_id) VALUES ('Latrina', '(171, 52)', 36) ;
INSERT INTO auth (login, password1, name) VALUES ('[email protected]', 'LZ6247TY25', 'Odis') ;
INSERT INTO staff (first_name, last_name, room, auth_id, birthday, position, gender) VALUES ('Leonida', 'Neal', 87, 107, '2001-09-06', 'doctor', 'female') ;
INSERT INTO auth (login, password1, name) VALUES ('[email protected]', 'PP9602JS66', 'Shelton') ;
INSERT INTO staff (first_name, last_name, room, auth_id, birthday, position, gender) VALUES ('Yun', 'Jones', 92, 108, '1952-03-31', 'nurse', 'male') ;
INSERT INTO auth (login, password1, name) VALUES ('[email protected]', 'WR2941DF95', 'Danyel') ;
INSERT INTO staff (first_name, last_name, room, auth_id, birthday, position, gender) VALUES ('Otha', 'Oneill', 99, 109, '1991-11-06', 'IT_administrator', 'female') ;
INSERT INTO invoice (amount, date_of_creation, reason) VALUES ('24254', '2012-12-27 12:12:25.509719', 'Erlang is known for its d') ;
INSERT INTO complain (theme, creation_date, complain_text) VALUES ('I dont even care. Ports a', '2005-03-24 10:27:31.232107', 'The arguments can be prim') ;
INSERT INTO auth (login, password1, name) VALUES ('[email protected]', 'ZB3782QT45', 'Rossie') ;
INSERT INTO staff (first_name, last_name, room, auth_id, birthday, position, gender) VALUES ('Kenton', 'Gomez', 70, 110, '1979-03-02', 'security', 'male') ;
INSERT INTO camera (name, location, staff_id) VALUES ('Olimpia', '(0, 164)', 40) ;
INSERT INTO passport (seria, number, birth, f_name, l_name, gender, address) VALUES (4901, 624346, '1958-09-13', 'Ricardo', 'Owens', 'female', 'Technical Author') ;
INSERT INTO auth (login, password1, name) VALUES ('[email protected]', 'FP9577AF22', 'Robt') ;
INSERT INTO passport (seria, number, birth, f_name, l_name, gender, address) VALUES (6525, 953288, '1972-10-22', 'Katia', 'Blankenship', 'male', 'Ambulance Crew') ;
INSERT INTO patient (auth_id, bank_account_id, insurance_policy_id, passport_seria, passport_number, phone_num) VALUES (111, 898624, 17051, 6525, 953288, '+74322983408') ;
INSERT INTO invoice (amount, date_of_creation, reason) VALUES ('23631', '2013-07-24 12:25:28.633317', 'Atoms are used within a p') ;
INSERT INTO passport (seria, number, birth, f_name, l_name, gender, address) VALUES (2143, 522814, '2001-06-03', 'Yael', 'Wade', 'male', 'Barmaid') ;
INSERT INTO auth (login, password1, name) VALUES ('[email protected]', 'SY0777NM90', 'Eleanora') ;
INSERT INTO passport (seria, number, birth, f_name, l_name, gender, address) VALUES (0282, 967295, '1975-09-13', 'Thanh', 'Pitts', 'female', 'Barrister') ;
INSERT INTO patient (auth_id, bank_account_id, insurance_policy_id, passport_seria, passport_number, phone_num) VALUES (112, 032109, 33886, 0282, 967295, '+10774000181') ;
INSERT INTO invoice (amount, date_of_creation, reason) VALUES ('43950', '2020-03-08 10:55:14.198175', 'The sequential subset of ') ;
INSERT INTO passport (seria, number, birth, f_name, l_name, gender, address) VALUES (3213, 426549, '2012-03-23', 'Dwayne', 'Rodriquez', 'female', 'Operative') ;
INSERT INTO auth (login, password1, name) VALUES ('[email protected]', 'SM8248RB27', 'Renato') ;
INSERT INTO passport (seria, number, birth, f_name, l_name, gender, address) VALUES (8700, 851881, '1964-04-01', 'Arturo', 'Oneal', 'female', 'Tour Agent') ;
INSERT INTO patient (auth_id, bank_account_id, insurance_policy_id, passport_seria, passport_number, phone_num) VALUES (113, 413551, 67200, 8700, 851881, '+33633820325') ;
INSERT INTO invoice (amount, date_of_creation, reason) VALUES ('85049', '2015-04-13 16:29:15.410809', 'The syntax {D1,D2,...,Dn}') ;
INSERT INTO passport (seria, number, birth, f_name, l_name, gender, address) VALUES (1623, 634332, '1984-11-20', 'Andrew', 'Wong', 'female', 'Refrigeration Engineer') ;
INSERT INTO auth (login, password1, name) VALUES ('[email protected]', 'SU8499MD84', 'Josphine') ;
INSERT INTO passport (seria, number, birth, f_name, l_name, gender, address) VALUES (6824, 617157, '1976-09-18', 'Shandra', 'Clayton', 'male', 'Horticultural Consultant') ;
INSERT INTO patient (auth_id, bank_account_id, insurance_policy_id, passport_seria, passport_number, phone_num) VALUES (114, 236580, 01125, 6824, 617157, '+78627547934') ;
INSERT INTO invoice (amount, date_of_creation, reason) VALUES ('79537', '2019-04-27 15:29:19.411350', 'The sequential subset of ') ;
INSERT INTO passport (seria, number, birth, f_name, l_name, gender, address) VALUES (6626, 696348, '2017-11-21', 'Dirk', 'Downs', 'male', 'Typewriter Engineer') ;
INSERT INTO auth (login, password1, name) VALUES ('[email protected]', 'CK8581SQ25', 'Agustin') ;
INSERT INTO passport (seria, number, birth, f_name, l_name, gender, address) VALUES (8106, 427602, '1988-08-13', 'Stevie', 'Conner', 'male', 'Stud Hand') ;
INSERT INTO patient (auth_id, bank_account_id, insurance_policy_id, passport_seria, passport_number, phone_num) VALUES (115, 664952, 49576, 8106, 427602, '+13672481163') ;
INSERT INTO invoice (amount, date_of_creation, reason) VALUES ('54190', '2001-03-08 15:31:06.885540', 'She spent her earliest ye') ;
INSERT INTO passport (seria, number, birth, f_name, l_name, gender, address) VALUES (9375, 046782, '1959-01-11', 'Deloras', 'Conner', 'female', 'Hosiery Mechanic') ;
INSERT INTO auth (login, password1, name) VALUES ('[email protected]', 'QK0543CC57', 'Janetta') ;
INSERT INTO passport (seria, number, birth, f_name, l_name, gender, address) VALUES (9263, 626383, '1960-07-31', 'Marcellus', 'Patterson', 'male', 'Reprographic Assistant') ;
INSERT INTO patient (auth_id, bank_account_id, insurance_policy_id, passport_seria, passport_number, phone_num) VALUES (116, 670442, 81756, 9263, 626383, '+69480801348') ;
INSERT INTO invoice (amount, date_of_creation, reason) VALUES ('96073', '2014-06-22 14:16:43.524314', 'Haskell is a standardized') ;
INSERT INTO passport (seria, number, birth, f_name, l_name, gender, address) VALUES (5049, 518716, '1985-11-04', 'Christopher', 'Owen', 'male', 'Tennis Coach') ;
INSERT INTO auth (login, password1, name) VALUES ('[email protected]', 'NG2342YP15', 'Andreas') ;
INSERT INTO passport (seria, number, birth, f_name, l_name, gender, address) VALUES (8441, 189495, '2015-11-17', 'Emmie', 'Benson', 'female', 'Hairdresser') ;
INSERT INTO patient (auth_id, bank_account_id, insurance_policy_id, passport_seria, passport_number, phone_num) VALUES (117, 894577, 37085, 8441, 189495, '+81581540425') ;
INSERT INTO invoice (amount, date_of_creation, reason) VALUES ('62079', '2016-08-27 14:35:19.473483', 'Initially composing light') ;
INSERT INTO passport (seria, number, birth, f_name, l_name, gender, address) VALUES (2008, 378428, '1982-02-11', 'Leon', 'Brooks', 'male', 'Technical Analyst') ;
INSERT INTO auth (login, password1, name) VALUES ('[email protected]', 'CN7111RU03', 'Katia') ;
INSERT INTO passport (seria, number, birth, f_name, l_name, gender, address) VALUES (4768, 302986, '1988-02-02', 'Marielle', 'Fernandez', 'male', 'Vehicle Engineer') ;
INSERT INTO patient (auth_id, bank_account_id, insurance_policy_id, passport_seria, passport_number, phone_num) VALUES (118, 824054, 57807, 4768, 302986, '+83932507660') ;
INSERT INTO invoice (amount, date_of_creation, reason) VALUES ('7920', '2018-01-31 10:37:54.076068', 'He looked inquisitively a') ;
INSERT INTO passport (seria, number, birth, f_name, l_name, gender, address) VALUES (0102, 809054, '1977-03-11', 'Enrique', 'Stuart', 'male', 'Nuclear Scientist') ;
INSERT INTO auth (login, password1, name) VALUES ('[email protected]', 'GY0254MB64', 'Melita') ;
INSERT INTO passport (seria, number, birth, f_name, l_name, gender, address) VALUES (1273, 694460, '2018-09-18', 'Janiece', 'Luna', 'female', 'Travel Representative') ;
INSERT INTO patient (auth_id, bank_account_id, insurance_policy_id, passport_seria, passport_number, phone_num) VALUES (119, 816350, 31836, 1273, 694460, '+93857576450') ;
INSERT INTO invoice (amount, date_of_creation, reason) VALUES ('75994', '2018-08-30 12:40:06.486866', 'The arguments can be prim') ;
INSERT INTO passport (seria, number, birth, f_name, l_name, gender, address) VALUES (8070, 004830, '1988-05-25', 'Tamisha', 'Hardin', 'female', 'Gallery Owner') ;
INSERT INTO auth (login, password1, name) VALUES ('[email protected]', 'QM5824QL75', 'Ambrose') ;
INSERT INTO passport (seria, number, birth, f_name, l_name, gender, address) VALUES (4877, 130852, '1986-04-22', 'Ivan', 'Roman', 'female', 'Metal Worker') ;
INSERT INTO patient (auth_id, bank_account_id, insurance_policy_id, passport_seria, passport_number, phone_num) VALUES (120, 670371, 30927, 4877, 130852, '+57839775212') ;
INSERT INTO invoice (amount, date_of_creation, reason) VALUES ('26419', '2010-04-02 11:35:38.255388', 'They are written as strin') ;
INSERT INTO passport (seria, number, birth, f_name, l_name, gender, address) VALUES (5670, 121097, '1962-07-30', 'Frida', 'Boyer', 'female', 'Publisher') ;
INSERT INTO auth (login, password1, name) VALUES ('[email protected]', 'SL9904MW05', 'Adena') ;
INSERT INTO passport (seria, number, birth, f_name, l_name, gender, address) VALUES (7223, 446633, '1971-10-27', 'Brock', 'Robertson', 'female', 'Hairdresser') ;
INSERT INTO patient (auth_id, bank_account_id, insurance_policy_id, passport_seria, passport_number, phone_num) VALUES (121, 557039, 22801, 7223, 446633, '+99229474027') ;
INSERT INTO invoice (amount, date_of_creation, reason) VALUES ('17619', '2001-09-24 15:22:44.935629', 'They are written as strin') ;
INSERT INTO passport (seria, number, birth, f_name, l_name, gender, address) VALUES (0859, 131095, '2019-01-23', 'Garry', 'Bruce', 'male', 'Microbiologist') ;
INSERT INTO auth (login, password1, name) VALUES ('[email protected]', 'BA1263NP08', 'Jeni') ;
INSERT INTO passport (seria, number, birth, f_name, l_name, gender, address) VALUES (0496, 842482, '2004-01-26', 'Wilbur', 'Perez', 'male', 'Trading Standards') ;
INSERT INTO patient (auth_id, bank_account_id, insurance_policy_id, passport_seria, passport_number, phone_num) VALUES (122, 911431, 03179, 0496, 842482, '+36809129849') ;
INSERT INTO invoice (amount, date_of_creation, reason) VALUES ('9257', '2015-03-20 14:35:42.134339', 'Type classes first appear') ;
INSERT INTO passport (seria, number, birth, f_name, l_name, gender, address) VALUES (3530, 214878, '2019-04-19', 'Delta', 'Hatfield', 'female', 'Preacher') ;
INSERT INTO auth (login, password1, name) VALUES ('[email protected]', 'UN4653RT86', 'Julius') ;
INSERT INTO passport (seria, number, birth, f_name, l_name, gender, address) VALUES (3959, 599696, '1983-01-24', 'Edra', 'Lowery', 'female', 'Hotelier') ;
INSERT INTO patient (auth_id, bank_account_id, insurance_policy_id, passport_seria, passport_number, phone_num) VALUES (123, 344373, 46045, 3959, 599696, '+65279656891') ;
INSERT INTO invoice (amount, date_of_creation, reason) VALUES ('7424', '2003-12-26 16:33:29.722545', 'The syntax {D1,D2,...,Dn}') ;
INSERT INTO passport (seria, number, birth, f_name, l_name, gender, address) VALUES (0764, 248949, '2003-08-25', 'Cordell', 'Bradley', 'female', 'Software Engineer') ;
INSERT INTO auth (login, password1, name) VALUES ('[email protected]', 'FG3700NV43', 'Tonie') ;
INSERT INTO passport (seria, number, birth, f_name, l_name, gender, address) VALUES (3652, 431788, '2019-07-20', 'Shera', 'Wallace', 'male', 'Pest Controller') ;
INSERT INTO patient (auth_id, bank_account_id, insurance_policy_id, passport_seria, passport_number, phone_num) VALUES (124, 876527, 55076, 3652, 431788, '+05236341871') ;
INSERT INTO invoice (amount, date_of_creation, reason) VALUES ('22120', '2000-08-09 15:17:31.228947', 'Do you come here often? H') ;
INSERT INTO passport (seria, number, birth, f_name, l_name, gender, address) VALUES (8046, 377790, '1979-12-10', 'Pierre', 'Aguilar', 'male', 'Cafe Staff') ;
INSERT INTO auth (login, password1, name) VALUES ('[email protected]', 'FW6021KL02', 'Kathern') ;
INSERT INTO passport (seria, number, birth, f_name, l_name, gender, address) VALUES (2251, 904072, '1990-05-24', 'Tory', 'Maxwell', 'male', 'Music Teacher') ;
INSERT INTO patient (auth_id, bank_account_id, insurance_policy_id, passport_seria, passport_number, phone_num) VALUES (125, 723192, 86696, 2251, 904072, '+76500217380') ;
INSERT INTO invoice (amount, date_of_creation, reason) VALUES ('54503', '2020-04-24 16:47:58.516957', 'Haskell features a type s') ;
INSERT INTO passport (seria, number, birth, f_name, l_name, gender, address) VALUES (7161, 496162, '1985-12-25', 'Laraine', 'Valdez', 'female', 'Milliner') ;
INSERT INTO auth (login, password1, name) VALUES ('[email protected]', 'CY4694XA04', 'Deon') ;
INSERT INTO passport (seria, number, birth, f_name, l_name, gender, address) VALUES (0799, 572160, '1952-02-21', 'Arturo', 'Silva', 'male', 'Machine Operator') ;
INSERT INTO patient (auth_id, bank_account_id, insurance_policy_id, passport_seria, passport_number, phone_num) VALUES (126, 028357, 93384, 0799, 572160, '+11725496828') ;
INSERT INTO invoice (amount, date_of_creation, reason) VALUES ('64134', '2019-07-05 14:04:56.454677', 'Atoms can contain any cha') ;
INSERT INTO passport (seria, number, birth, f_name, l_name, gender, address) VALUES (4659, 014639, '1977-12-21', 'Rickey', 'Reynolds', 'female', 'Screen Writer') ;
INSERT INTO auth (login, password1, name) VALUES ('[email protected]', 'SW6783QR87', 'Robin') ;
INSERT INTO passport (seria, number, birth, f_name, l_name, gender, address) VALUES (4438, 655340, '2003-11-17', 'Twana', 'Lee', 'female', 'Investment Banker') ;
INSERT INTO patient (auth_id, bank_account_id, insurance_policy_id, passport_seria, passport_number, phone_num) VALUES (127, 921897, 59124, 4438, 655340, '+69940321926') ;
INSERT INTO invoice (amount, date_of_creation, reason) VALUES ('14448', '2014-11-11 16:34:55.843676', 'Ports are created with th') ;
INSERT INTO passport (seria, number, birth, f_name, l_name, gender, address) VALUES (7741, 773700, '1975-04-09', 'Kip', 'Cochran', 'male', 'Planning Manager') ;
INSERT INTO auth (login, password1, name) VALUES ('[email protected]', 'SY9307YB50', 'Rodrick') ;
INSERT INTO passport (seria, number, birth, f_name, l_name, gender, address) VALUES (6264, 695059, '1959-07-06', 'Ezekiel', 'Fields', 'male', 'Premises Security') ;
INSERT INTO patient (auth_id, bank_account_id, insurance_policy_id, passport_seria, passport_number, phone_num) VALUES (128, 189413, 84337, 6264, 695059, '+82349723304') ;
INSERT INTO invoice (amount, date_of_creation, reason) VALUES ('61077', '2020-12-21 12:40:02.499110', 'The arguments can be prim') ;
INSERT INTO passport (seria, number, birth, f_name, l_name, gender, address) VALUES (4301, 890301, '1977-05-09', 'Gerry', 'Leon', 'male', 'Furniture Dealer') ;
INSERT INTO auth (login, password1, name) VALUES ('[email protected]', 'GJ7558QO51', 'Giuseppina') ;
INSERT INTO passport (seria, number, birth, f_name, l_name, gender, address) VALUES (7502, 175211, '1990-02-18', 'Elinore', 'Freeman', 'male', 'Mineralologist') ;
INSERT INTO patient (auth_id, bank_account_id, insurance_policy_id, passport_seria, passport_number, phone_num) VALUES (129, 670499, 34833, 7502, 175211, '+34495394707') ;
INSERT INTO invoice (amount, date_of_creation, reason) VALUES ('72224', '2009-01-03 14:31:22.074697', 'Type classes first appear') ;
INSERT INTO passport (seria, number, birth, f_name, l_name, gender, address) VALUES (5669, 604397, '2012-06-30', 'Ismael', 'Adkins', 'male', 'Marine Consultant') ;
INSERT INTO auth (login, password1, name) VALUES ('[email protected]', 'DB2939WP50', 'Douglass') ;
INSERT INTO passport (seria, number, birth, f_name, l_name, gender, address) VALUES (9142, 476180, '1982-10-25', 'Lyle', 'Kelly', 'female', 'Works Manager') ;
INSERT INTO patient (auth_id, bank_account_id, insurance_policy_id, passport_seria, passport_number, phone_num) VALUES (130, 105826, 74700, 9142, 476180, '+22861371697') ;
INSERT INTO invoice (amount, date_of_creation, reason) VALUES ('46247', '2008-12-09 10:14:09.623623', 'Atoms can contain any cha') ;
INSERT INTO passport (seria, number, birth, f_name, l_name, gender, address) VALUES (9389, 564124, '1984-05-05', 'Ward', 'Sanchez', 'female', 'Prison Chaplain') ;
INSERT INTO auth (login, password1, name) VALUES ('[email protected]', 'NR8272VG67', 'Jesusita') ;
INSERT INTO passport (seria, number, birth, f_name, l_name, gender, address) VALUES (4674, 721078, '1988-07-30', 'Herschel', 'Morris', 'female', 'Seamstress') ;
INSERT INTO patient (auth_id, bank_account_id, insurance_policy_id, passport_seria, passport_number, phone_num) VALUES (131, 823110, 37772, 4674, 721078, '+14823637691') ;
INSERT INTO invoice (amount, date_of_creation, reason) VALUES ('46159', '2013-09-25 12:54:59.089655', 'The arguments can be prim') ;
INSERT INTO passport (seria, number, birth, f_name, l_name, gender, address) VALUES (8547, 347081, '1966-08-07', 'Melani', 'Charles', 'male', 'Foundry Worker') ;
INSERT INTO auth (login, password1, name) VALUES ('[email protected]', 'YY7743EM66', 'Wenona') ;
INSERT INTO passport (seria, number, birth, f_name, l_name, gender, address) VALUES (5439, 747641, '2010-02-17', 'Dione', 'Warner', 'male', 'Instrument Technician') ;
INSERT INTO patient (auth_id, bank_account_id, insurance_policy_id, passport_seria, passport_number, phone_num) VALUES (132, 349472, 64806, 5439, 747641, '+59268256503') ;
INSERT INTO invoice (amount, date_of_creation, reason) VALUES ('60164', '2000-12-09 16:32:26.998512', 'Ports are used to communi') ;
INSERT INTO passport (seria, number, birth, f_name, l_name, gender, address) VALUES (3772, 472603, '2011-05-04', 'Prince', 'Nelson', 'female', 'Hot Foil Printer') ;
INSERT INTO auth (login, password1, name) VALUES ('[email protected]', 'GH2668QN89', 'Lewis') ;
INSERT INTO passport (seria, number, birth, f_name, l_name, gender, address) VALUES (8079, 869560, '1968-02-18', 'Seymour', 'Ballard', 'female', 'Butler') ;
INSERT INTO patient (auth_id, bank_account_id, insurance_policy_id, passport_seria, passport_number, phone_num) VALUES (133, 498376, 59342, 8079, 869560, '+36307125489') ;
INSERT INTO invoice (amount, date_of_creation, reason) VALUES ('87289', '2000-05-02 13:24:31.674166', 'It is also a garbage-coll') ;
INSERT INTO passport (seria, number, birth, f_name, l_name, gender, address) VALUES (4581, 182099, '1993-11-09', 'Curtis', 'Kramer', 'male', 'Travel Clerk') ;
INSERT INTO auth (login, password1, name) VALUES ('[email protected]', 'JY5075OL74', 'Kaylene') ;
INSERT INTO passport (seria, number, birth, f_name, l_name, gender, address) VALUES (0580, 101749, '2016-06-25', 'Lawerence', 'Long', 'male', 'Hardware Dealer') ;
INSERT INTO patient (auth_id, bank_account_id, insurance_policy_id, passport_seria, passport_number, phone_num) VALUES (134, 418498, 74797, 0580, 101749, '+05283826952') ;
INSERT INTO invoice (amount, date_of_creation, reason) VALUES ('76313', '2011-10-12 14:52:37.305222', 'Atoms are used within a p') ;
INSERT INTO passport (seria, number, birth, f_name, l_name, gender, address) VALUES (6704, 462945, '1954-10-08', 'Adam', 'Rivera', 'male', 'Shoe Repairer') ;
INSERT INTO auth (login, password1, name) VALUES ('[email protected]', 'PU4132CI86', 'Garth') ;
INSERT INTO passport (seria, number, birth, f_name, l_name, gender, address) VALUES (1994, 242059, '2015-09-07', 'Kandis', 'Spears', 'male', 'Stewardess') ;
INSERT INTO patient (auth_id, bank_account_id, insurance_policy_id, passport_seria, passport_number, phone_num) VALUES (135, 376899, 83031, 1994, 242059, '+09355621919') ;
INSERT INTO invoice (amount, date_of_creation, reason) VALUES ('35864', '2008-05-13 13:48:42.553892', 'Type classes first appear') ;
INSERT INTO passport (seria, number, birth, f_name, l_name, gender, address) VALUES (6040, 604198, '1955-05-09', 'Marine', 'Hunt', 'male', 'Paint Consultant') ;
INSERT INTO auth (login, password1, name) VALUES ('[email protected]', 'IL8976ZT75', 'Celine') ;
INSERT INTO passport (seria, number, birth, f_name, l_name, gender, address) VALUES (5846, 430725, '1960-04-28', 'Hye', 'Baxter', 'male', 'Polisher') ;
INSERT INTO patient (auth_id, bank_account_id, insurance_policy_id, passport_seria, passport_number, phone_num) VALUES (136, 995177, 25059, 5846, 430725, '+69000443583') ;
INSERT INTO invoice (amount, date_of_creation, reason) VALUES ('60558', '2004-02-09 11:52:10.431998', 'He looked inquisitively a') ;
INSERT INTO passport (seria, number, birth, f_name, l_name, gender, address) VALUES (2615, 101854, '2006-11-11', 'Trinidad', 'Castillo', 'female', 'Teacher') ;
INSERT INTO auth (login, password1, name) VALUES ('[email protected]', 'OA5768NW01', 'Jere') ;
INSERT INTO passport (seria, number, birth, f_name, l_name, gender, address) VALUES (2854, 498162, '2007-08-23', 'Leigha', 'Juarez', 'female', 'Pawnbroker') ;
INSERT INTO patient (auth_id, bank_account_id, insurance_policy_id, passport_seria, passport_number, phone_num) VALUES (137, 116728, 87498, 2854, 498162, '+94769995876') ;
INSERT INTO invoice (amount, date_of_creation, reason) VALUES ('53046', '2009-05-10 13:42:30.221823', 'Messages can be sent to a') ;
INSERT INTO passport (seria, number, birth, f_name, l_name, gender, address) VALUES (3180, 632808, '1999-09-11', 'Hyo', 'Webb', 'male', 'Househusband') ;
INSERT INTO auth (login, password1, name) VALUES ('[email protected]', 'TO7601AP53', 'Reita') ;
INSERT INTO passport (seria, number, birth, f_name, l_name, gender, address) VALUES (7115, 894553, '1994-12-08', 'Michel', 'Robertson', 'male', 'Goods Handler') ;
INSERT INTO patient (auth_id, bank_account_id, insurance_policy_id, passport_seria, passport_number, phone_num) VALUES (138, 080161, 24918, 7115, 894553, '+45193629605') ;
INSERT INTO invoice (amount, date_of_creation, reason) VALUES ('62841', '2004-04-21 10:16:50.485709', 'Its main implementation i') ;
INSERT INTO passport (seria, number, birth, f_name, l_name, gender, address) VALUES (2653, 418765, '2012-05-07', 'Naida', 'Lee', 'male', 'Wine Merchant') ;
INSERT INTO auth (login, password1, name) VALUES ('[email protected]', 'HX4012JK65', 'Charlie') ;
INSERT INTO passport (seria, number, birth, f_name, l_name, gender, address) VALUES (6811, 095574, '2010-04-12', 'Verlene', 'Lowe', 'female', 'Circus Proprietor') ;
INSERT INTO patient (auth_id, bank_account_id, insurance_policy_id, passport_seria, passport_number, phone_num) VALUES (139, 615970, 24078, 6811, 095574, '+14572622835') ;
INSERT INTO invoice (amount, date_of_creation, reason) VALUES ('52047', '2012-02-28 15:30:30.788332', 'Atoms are used within a p') ;
INSERT INTO passport (seria, number, birth, f_name, l_name, gender, address) VALUES (5947, 898048, '1971-12-20', 'Russell', 'Chase', 'female', 'Medical Officer') ;
INSERT INTO auth (login, password1, name) VALUES ('[email protected]', 'QT5074QX38', 'Wilburn') ;
INSERT INTO passport (seria, number, birth, f_name, l_name, gender, address) VALUES (9320, 759367, '1996-02-04', 'Kirstie', 'Sharp', 'female', 'Operator') ;
INSERT INTO patient (auth_id, bank_account_id, insurance_policy_id, passport_seria, passport_number, phone_num) VALUES (140, 179629, 61127, 9320, 759367, '+65636846080') ;
INSERT INTO invoice (amount, date_of_creation, reason) VALUES ('18197', '2001-12-19 16:45:26.026644', 'The Galactic Empire is ne') ;
INSERT INTO passport (seria, number, birth, f_name, l_name, gender, address) VALUES (9017, 296666, '1991-10-04', 'Mireille', 'Oneil', 'female', 'Marine Pilot') ;
INSERT INTO auth (login, password1, name) VALUES ('[email protected]', 'JN7476ID82', 'Qiana') ;
INSERT INTO passport (seria, number, birth, f_name, l_name, gender, address) VALUES (9403, 001846, '2007-09-15', 'Tinisha', 'Glass', 'male', 'Training Instructor') ;
INSERT INTO patient (auth_id, bank_account_id, insurance_policy_id, passport_seria, passport_number, phone_num) VALUES (141, 064944, 17379, 9403, 001846, '+15220443024') ;
INSERT INTO invoice (amount, date_of_creation, reason) VALUES ('57686', '2020-09-01 15:44:50.983977', 'Its main implementation i') ;
INSERT INTO passport (seria, number, birth, f_name, l_name, gender, address) VALUES (7754, 293564, '2008-01-09', 'Donte', 'Chapman', 'male', 'Midwife') ;
INSERT INTO auth (login, password1, name) VALUES ('[email protected]', 'HV0233BS76', 'Annabell') ;
INSERT INTO passport (seria, number, birth, f_name, l_name, gender, address) VALUES (4199, 677200, '1965-08-25', 'Hershel', 'Gentry', 'female', 'Car Wash Attendant') ;
INSERT INTO patient (auth_id, bank_account_id, insurance_policy_id, passport_seria, passport_number, phone_num) VALUES (142, 700872, 93767, 4199, 677200, '+26876188210') ;
INSERT INTO invoice (amount, date_of_creation, reason) VALUES ('35354', '2019-04-24 15:22:22.613064', 'Messages can be sent to a') ;
INSERT INTO passport (seria, number, birth, f_name, l_name, gender, address) VALUES (2906, 742402, '2011-09-29', 'Shelby', 'Peters', 'male', 'Marine Engineer') ;
INSERT INTO auth (login, password1, name) VALUES ('[email protected]', 'QY4380PI84', 'Lloyd') ;
INSERT INTO passport (seria, number, birth, f_name, l_name, gender, address) VALUES (4753, 203242, '1962-02-09', 'Stanley', 'Quinn', 'female', 'Stage Mover') ;
INSERT INTO patient (auth_id, bank_account_id, insurance_policy_id, passport_seria, passport_number, phone_num) VALUES (143, 769055, 04737, 4753, 203242, '+51593035077') ;
INSERT INTO invoice (amount, date_of_creation, reason) VALUES ('56404', '2009-05-15 10:37:29.298043', 'Erlang is a general-purpo') ;
INSERT INTO passport (seria, number, birth, f_name, l_name, gender, address) VALUES (9738, 728997, '1963-10-29', 'Wilfredo', 'Hewitt', 'male', 'Jewellery') ;
INSERT INTO auth (login, password1, name) VALUES ('[email protected]', 'OF7382KJ12', 'Mignon') ;
INSERT INTO passport (seria, number, birth, f_name, l_name, gender, address) VALUES (8483, 128397, '1965-04-03', 'Tiffaney', 'David', 'female', 'Auxiliary Nurse') ;
INSERT INTO patient (auth_id, bank_account_id, insurance_policy_id, passport_seria, passport_number, phone_num) VALUES (144, 174599, 34453, 8483, 128397, '+70700092513') ;
INSERT INTO invoice (amount, date_of_creation, reason) VALUES ('84475', '2014-07-08 12:42:07.065772', 'Its main implementation i') ;
INSERT INTO passport (seria, number, birth, f_name, l_name, gender, address) VALUES (3472, 110649, '1993-07-28', 'Alverta', 'Hamilton', 'female', 'Systems Analyst') ;
INSERT INTO auth (login, password1, name) VALUES ('[email protected]', 'DZ7898IN21', 'Errol') ;
INSERT INTO passport (seria, number, birth, f_name, l_name, gender, address) VALUES (6606, 249587, '1967-09-20', 'Duncan', 'Montgomery', 'female', 'Publicity Manager') ;
INSERT INTO patient (auth_id, bank_account_id, insurance_policy_id, passport_seria, passport_number, phone_num) VALUES (145, 549820, 75044, 6606, 249587, '+68135079596') ;
INSERT INTO invoice (amount, date_of_creation, reason) VALUES ('54535', '2005-07-19 15:06:41.455036', 'It is also a garbage-coll') ;
INSERT INTO passport (seria, number, birth, f_name, l_name, gender, address) VALUES (3818, 763828, '1987-06-30', 'Lucien', 'Haynes', 'male', 'Project Engineer') ;
INSERT INTO auth (login, password1, name) VALUES ('[email protected]', 'DH0736GM70', 'Oretha') ;
INSERT INTO passport (seria, number, birth, f_name, l_name, gender, address) VALUES (5781, 575959, '2003-05-28', 'Philip', 'Yang', 'female', 'Bus Company') ;
INSERT INTO patient (auth_id, bank_account_id, insurance_policy_id, passport_seria, passport_number, phone_num) VALUES (146, 831161, 60838, 5781, 575959, '+89955548861') ;
INSERT INTO invoice (amount, date_of_creation, reason) VALUES ('57659', '2010-03-19 14:59:52.056902', 'Any element of a tuple ca') ;
INSERT INTO passport (seria, number, birth, f_name, l_name, gender, address) VALUES (3233, 284450, '1957-06-17', 'Johnson', 'Harvey', 'female', 'Rally Driver') ;
INSERT INTO auth (login, password1, name) VALUES ('[email protected]', 'ID1329QZ06', 'Abel') ;
INSERT INTO passport (seria, number, birth, f_name, l_name, gender, address) VALUES (8938, 946500, '1973-06-11', 'Nadene', 'Summers', 'female', 'Motor Trader') ;
INSERT INTO patient (auth_id, bank_account_id, insurance_policy_id, passport_seria, passport_number, phone_num) VALUES (147, 988477, 99921, 8938, 946500, '+98902091871') ;
INSERT INTO invoice (amount, date_of_creation, reason) VALUES ('16346', '2007-04-04 12:59:06.736289', 'Where are my pants? The s') ;
INSERT INTO passport (seria, number, birth, f_name, l_name, gender, address) VALUES (3012, 280601, '1987-04-26', 'Gerardo', 'Ewing', 'female', 'Van Driver') ;
INSERT INTO auth (login, password1, name) VALUES ('[email protected]', 'ZK8020IT25', 'Jesusita') ;
INSERT INTO passport (seria, number, birth, f_name, l_name, gender, address) VALUES (1814, 695960, '2005-07-21', 'Karmen', 'Levine', 'male', 'Pasteuriser') ;
INSERT INTO patient (auth_id, bank_account_id, insurance_policy_id, passport_seria, passport_number, phone_num) VALUES (148, 019484, 80116, 1814, 695960, '+00651377213') ;
INSERT INTO invoice (amount, date_of_creation, reason) VALUES ('68588', '2013-08-18 15:42:07.871008', 'Haskell features a type s') ;
INSERT INTO passport (seria, number, birth, f_name, l_name, gender, address) VALUES (9816, 667380, '1994-03-28', 'Bennett', 'Larsen', 'female', 'Accounts Clerk') ;
INSERT INTO auth (login, password1, name) VALUES ('[email protected]', 'EE4539FX49', 'Trinidad') ;
INSERT INTO passport (seria, number, birth, f_name, l_name, gender, address) VALUES (1959, 062918, '1987-03-06', 'Antione', 'Parrish', 'female', 'Prison Officer') ;
INSERT INTO patient (auth_id, bank_account_id, insurance_policy_id, passport_seria, passport_number, phone_num) VALUES (149, 062869, 90681, 1959, 062918, '+60302286629') ;
INSERT INTO invoice (amount, date_of_creation, reason) VALUES ('29519', '2013-06-22 15:29:37.360031', 'Any element of a tuple ca') ;
INSERT INTO passport (seria, number, birth, f_name, l_name, gender, address) VALUES (2264, 817264, '1986-02-03', 'Jule', 'Ramos', 'female', 'Picture Editor') ;
INSERT INTO auth (login, password1, name) VALUES ('[email protected]', 'EB9019NR85', 'Thurman') ;
INSERT INTO passport (seria, number, birth, f_name, l_name, gender, address) VALUES (3077, 433335, '2006-05-08', 'Omar', 'Sexton', 'male', 'Housing Assistant') ;
INSERT INTO patient (auth_id, bank_account_id, insurance_policy_id, passport_seria, passport_number, phone_num) VALUES (150, 730411, 04911, 3077, 433335, '+14818185742') ;
INSERT INTO invoice (amount, date_of_creation, reason) VALUES ('26537', '2001-01-29 10:55:41.981741', 'Do you come here often? D') ;
INSERT INTO notification (notification_text, notification_status) VALUES ('Any element of a tuple ca', 'open') ;
INSERT INTO ticket (creation_date, closing_date, ticket_text) VALUES ('2004-11-01T14:44:02.623387', '2004-11-04T14:44:02.623387', 'Type classes first appear') ;
INSERT INTO notification (notification_text, notification_status) VALUES ('Ports are used to communi', 'closed') ;
INSERT INTO ticket (creation_date, closing_date, ticket_text) VALUES ('2004-10-20T11:15:23.848676', '2004-10-24T11:15:23.848676', 'Initially composing light') ;
INSERT INTO notification (notification_text, notification_status) VALUES ('She spent her earliest ye', 'closed') ;
INSERT INTO ticket (creation_date, closing_date, ticket_text) VALUES ('2003-07-13T11:20:33.296771', '2003-07-18T11:20:33.296771', 'Atoms are used within a p') ;
INSERT INTO notification (notification_text, notification_status) VALUES ('They are written as strin', 'open') ;
INSERT INTO ticket (creation_date, closing_date, ticket_text) VALUES ('2004-01-22T12:36:42.523799', '2004-01-29T12:36:42.523799', 'Type classes first appear') ;
INSERT INTO notification (notification_text, notification_status) VALUES ('Make me a sandwich. Erlan', 'closed') ;
INSERT INTO ticket (creation_date, closing_date, ticket_text) VALUES ('2011-06-06T13:38:55.653966', '2011-06-13T13:38:55.653966', 'Do you have any idea why ') ;
INSERT INTO notification (notification_text, notification_status) VALUES ('Make me a sandwich. Tuple', 'open') ;
INSERT INTO ticket (creation_date, closing_date, ticket_text) VALUES ('2000-06-05T14:49:21.874020', '2000-06-10T14:49:21.874020', 'The Galactic Empire is ne') ;
INSERT INTO notification (notification_text, notification_status) VALUES ('Atoms are used within a p', 'closed') ;
INSERT INTO ticket (creation_date, closing_date, ticket_text) VALUES ('2001-12-28T14:41:08.668047', '2002-01-01T14:41:08.668047', 'He looked inquisitively a') ;
INSERT INTO notification (notification_text, notification_status) VALUES ('Any element of a tuple ca', 'open') ;
INSERT INTO ticket (creation_date, closing_date, ticket_text) VALUES ('2008-09-03T16:17:40.174314', '2008-09-10T16:17:40.174314', 'Ports are created with th') ;
INSERT INTO notification (notification_text, notification_status) VALUES ('The Galactic Empire is ne', 'open') ;
INSERT INTO ticket (creation_date, closing_date, ticket_text) VALUES ('2003-09-06T11:16:22.465639', '2003-09-12T11:16:22.465639', 'The syntax {D1,D2,...,Dn}') ;
INSERT INTO notification (notification_text, notification_status) VALUES ('Initially composing light', 'open') ;
INSERT INTO ticket (creation_date, closing_date, ticket_text) VALUES ('2011-06-24T16:34:04.621479', '2011-06-27T16:34:04.621479', 'Haskell is a standardized') ;
INSERT INTO notification (notification_text, notification_status) VALUES ('The sequential subset of ', 'closed') ;
INSERT INTO ticket (creation_date, closing_date, ticket_text) VALUES ('2019-06-27T15:21:28.004800', '2019-06-29T15:21:28.004800', 'He looked inquisitively a') ;
INSERT INTO notification (notification_text, notification_status) VALUES ('Any element of a tuple ca', 'closed') ;
INSERT INTO ticket (creation_date, closing_date, ticket_text) VALUES ('2005-05-22T15:55:09.784591', '2005-05-24T15:55:09.784591', 'Ports are used to communi') ;
INSERT INTO notification (notification_text, notification_status) VALUES ('Do you have any idea why ', 'open') ;
INSERT INTO ticket (creation_date, closing_date, ticket_text) VALUES ('2006-05-26T12:38:23.701764', '2006-05-30T12:38:23.701764', 'They are written as strin') ;
INSERT INTO notification (notification_text, notification_status) VALUES ('Do you have any idea why ', 'open') ;
INSERT INTO ticket (creation_date, closing_date, ticket_text) VALUES ('2014-05-27T12:54:56.398082', '2014-06-01T12:54:56.398082', 'Initially composing light') ;
INSERT INTO notification (notification_text, notification_status) VALUES ('Type classes first appear', 'open') ;
INSERT INTO ticket (creation_date, closing_date, ticket_text) VALUES ('2004-02-09T12:07:37.997370', '2004-02-16T12:07:37.997370', 'Any element of a tuple ca') ;
INSERT INTO notification (notification_text, notification_status) VALUES ('She spent her earliest ye', 'open') ;
INSERT INTO ticket (creation_date, closing_date, ticket_text) VALUES ('2019-07-11T15:27:02.324716', '2019-07-15T15:27:02.324716', 'Its main implementation i') ;
INSERT INTO notification (notification_text, notification_status) VALUES ('Messages can be sent to a', 'open') ;
INSERT INTO ticket (creation_date, closing_date, ticket_text) VALUES ('2000-08-17T16:01:48.645696', '2000-08-21T16:01:48.645696', 'The arguments can be prim') ;
INSERT INTO notification (notification_text, notification_status) VALUES ('Make me a sandwich. He lo', 'open') ;
INSERT INTO ticket (creation_date, closing_date, ticket_text) VALUES ('2001-03-13T16:04:51.239901', '2001-03-20T16:04:51.239901', 'Its main implementation i') ;
INSERT INTO notification (notification_text, notification_status) VALUES ('Any element of a tuple ca', 'closed') ;
INSERT INTO ticket (creation_date, closing_date, ticket_text) VALUES ('2012-11-15T10:54:03.330304', '2012-11-19T10:54:03.330304', 'It is also a garbage-coll') ;
INSERT INTO notification (notification_text, notification_status) VALUES ('Tuples are containers for', 'open') ;
INSERT INTO ticket (creation_date, closing_date, ticket_text) VALUES ('2004-01-03T12:44:42.747728', '2004-01-09T12:44:42.747728', 'Initially composing light') ;
INSERT INTO notification (notification_text, notification_status) VALUES ('Erlang is known for its d', 'open') ;
INSERT INTO ticket (creation_date, closing_date, ticket_text) VALUES ('2014-08-14T14:31:02.801667', '2014-08-17T14:31:02.801667', 'The syntax {D1,D2,...,Dn}') ;
INSERT INTO notification (notification_text, notification_status) VALUES ('The sequential subset of ', 'closed') ;
INSERT INTO ticket (creation_date, closing_date, ticket_text) VALUES ('2002-09-02T15:58:06.735929', '2002-09-05T15:58:06.735929', 'She spent her earliest ye') ;
INSERT INTO notification (notification_text, notification_status) VALUES ('The sequential subset of ', 'open') ;
INSERT INTO ticket (creation_date, closing_date, ticket_text) VALUES ('2004-01-20T12:03:29.486007', '2004-01-24T12:03:29.486007', 'Its main implementation i') ;
INSERT INTO notification (notification_text, notification_status) VALUES ('Any element of a tuple ca', 'closed') ;
INSERT INTO ticket (creation_date, closing_date, ticket_text) VALUES ('2016-12-18T16:15:25.721092', '2016-12-22T16:15:25.721092', 'Make me a sandwich. Make ') ;
INSERT INTO notification (notification_text, notification_status) VALUES ('It is also a garbage-coll', 'open') ;
INSERT INTO ticket (creation_date, closing_date, ticket_text) VALUES ('2005-08-26T11:17:13.939041', '2005-08-30T11:17:13.939041', 'Do you have any idea why ') ;
INSERT INTO notification (notification_text, notification_status) VALUES ('They are written as strin', 'open') ;
INSERT INTO ticket (creation_date, closing_date, ticket_text) VALUES ('2019-03-17T16:20:54.070972', '2019-03-21T16:20:54.070972', 'The syntax {D1,D2,...,Dn}') ;
INSERT INTO notification (notification_text, notification_status) VALUES ('The syntax {D1,D2,...,Dn}', 'open') ;
INSERT INTO ticket (creation_date, closing_date, ticket_text) VALUES ('2011-11-09T11:07:10.650417', '2011-11-16T11:07:10.650417', 'He looked inquisitively a') ;
INSERT INTO notification (notification_text, notification_status) VALUES ('They are written as strin', 'closed') ;
INSERT INTO ticket (creation_date, closing_date, ticket_text) VALUES ('2002-03-13T16:44:32.264082', '2002-03-17T16:44:32.264082', 'Atoms can contain any cha') ;
INSERT INTO notification (notification_text, notification_status) VALUES ('She spent her earliest ye', 'open') ;
INSERT INTO ticket (creation_date, closing_date, ticket_text) VALUES ('2016-11-25T12:09:06.413256', '2016-12-02T12:09:06.413256', 'Ports are created with th') ;
INSERT INTO notification (notification_text, notification_status) VALUES ('Erlang is a general-purpo', 'closed') ;
INSERT INTO ticket (creation_date, closing_date, ticket_text) VALUES ('2015-12-04T14:45:31.051465', '2015-12-10T14:45:31.051465', 'The Galactic Empire is ne') ;
INSERT INTO appointment (occurrence_date, diagnosis, description, reason_to_create) VALUES ('2012-04-21 14:15:01.201178', 'The Galact', 'Erlang is a general-purpo', 'Atoms can ') ;
INSERT INTO auth (login, password1, name) VALUES ('[email protected]', 'LF7214ZY08', 'Sang') ;
INSERT INTO passport (seria, number, birth, f_name, l_name, gender, address) VALUES (5632, 064244, '2015-09-29', 'Rayford', 'Dunn', 'female', 'Transport Engineer') ;
INSERT INTO patient (auth_id, bank_account_id, insurance_policy_id, passport_seria, passport_number, phone_num) VALUES (151, 837093, 21723, 5632, 064244, '+50056257685') ;
INSERT INTO auth (login, password1, name) VALUES ('[email protected]', 'SW5001PW42', 'Mika') ;
INSERT INTO staff (first_name, last_name, room, auth_id, birthday, position, gender) VALUES ('Melodee', 'Baird', 37, 152, '2004-07-23', 'doctor', 'female') ;
INSERT INTO appointment (occurrence_date, diagnosis, description, reason_to_create) VALUES ('2013-09-24 16:03:01.062338', 'In 1989 th', 'Atoms can contain any cha', 'Haskell is') ;
INSERT INTO appointment_patient_doctor_relation (appointment_id, patient_id, doctor_id) VALUES (2, 41, 41) ;
INSERT INTO appointment (occurrence_date, diagnosis, description, reason_to_create) VALUES ('2010-08-29 11:03:55.938865', 'Its main i', 'They are written as strin', 'Do you hav') ;
INSERT INTO auth (login, password1, name) VALUES ('[email protected]', 'ZH3238ZZ55', 'Alonso') ;
INSERT INTO passport (seria, number, birth, f_name, l_name, gender, address) VALUES (7480, 497550, '1954-07-12', 'Doug', 'Duran', 'male', 'Fund Raiser') ;
INSERT INTO patient (auth_id, bank_account_id, insurance_policy_id, passport_seria, passport_number, phone_num) VALUES (153, 429906, 17935, 7480, 497550, '+28881024377') ;
INSERT INTO auth (login, password1, name) VALUES ('[email protected]', 'ZR4664NH96', 'Maximo') ;
INSERT INTO staff (first_name, last_name, room, auth_id, birthday, position, gender) VALUES ('Dana', 'Castaneda', 47, 154, '1968-02-16', 'doctor', 'male') ;
INSERT INTO appointment (occurrence_date, diagnosis, description, reason_to_create) VALUES ('2014-12-09 15:59:27.044565', 'Atoms are ', 'Initially composing light', 'In 1989 th') ;
INSERT INTO appointment_patient_doctor_relation (appointment_id, patient_id, doctor_id) VALUES (4, 42, 42) ;
INSERT INTO appointment (occurrence_date, diagnosis, description, reason_to_create) VALUES ('2018-05-02 16:09:41.047659', 'Make me a ', 'Erlang is known for its d', 'Ports are ') ;
INSERT INTO auth (login, password1, name) VALUES ('[email protected]', 'JZ2611XI38', 'Lorean') ;
INSERT INTO passport (seria, number, birth, f_name, l_name, gender, address) VALUES (2171, 360231, '1960-04-30', 'Tegan', 'Holloway', 'female', 'Word Processing Operator') ;
INSERT INTO patient (auth_id, bank_account_id, insurance_policy_id, passport_seria, passport_number, phone_num) VALUES (155, 115499, 22948, 2171, 360231, '+72991376586') ;
INSERT INTO auth (login, password1, name) VALUES ('[email protected]', 'VB2811BB73', 'Antone') ;
INSERT INTO staff (first_name, last_name, room, auth_id, birthday, position, gender) VALUES ('Norbert', 'Pickett', 87, 156, '2017-03-26', 'doctor', 'male') ;
INSERT INTO appointment (occurrence_date, diagnosis, description, reason_to_create) VALUES ('2001-08-15 13:18:13.816676', 'Haskell fe', 'Erlang is a general-purpo', 'Tuples are') ;
INSERT INTO appointment_patient_doctor_relation (appointment_id, patient_id, doctor_id) VALUES (6, 43, 43) ;
INSERT INTO appointment (occurrence_date, diagnosis, description, reason_to_create) VALUES ('2002-05-14 13:39:10.062165', 'Atoms are ', 'Do you have any idea why ', 'Messages c') ;
INSERT INTO auth (login, password1, name) VALUES ('[email protected]', 'LZ2492GP83', 'Tracey') ;
INSERT INTO passport (seria, number, birth, f_name, l_name, gender, address) VALUES (6086, 595062, '2001-04-01', 'Shannon', 'Downs', 'female', 'Cafe Owner') ;
INSERT INTO patient (auth_id, bank_account_id, insurance_policy_id, passport_seria, passport_number, phone_num) VALUES (157, 150757, 10309, 6086, 595062, '+27571065890') ;
INSERT INTO auth (login, password1, name) VALUES ('[email protected]', 'ZT7883MJ74', 'Azalee') ;
INSERT INTO staff (first_name, last_name, room, auth_id, birthday, position, gender) VALUES ('Lavelle', 'Dunn', 84, 158, '2011-10-23', 'doctor', 'male') ;
INSERT INTO appointment (occurrence_date, diagnosis, description, reason_to_create) VALUES ('2009-07-14 16:59:57.954043', 'They are w', 'Do you have any idea why ', 'Do you hav') ;
INSERT INTO appointment_patient_doctor_relation (appointment_id, patient_id, doctor_id) VALUES (8, 44, 44) ;
INSERT INTO appointment (occurrence_date, diagnosis, description, reason_to_create) VALUES ('2007-09-14 11:03:19.634382', 'Its main i', 'They are written as strin', 'Do you com') ;
INSERT INTO auth (login, password1, name) VALUES ('[email protected]', 'RV8172ZE68', 'Darryl') ;
INSERT INTO passport (seria, number, birth, f_name, l_name, gender, address) VALUES (6549, 623863, '2013-11-22', 'Justin', 'Norton', 'female', 'Lampshade Maker') ;
INSERT INTO patient (auth_id, bank_account_id, insurance_policy_id, passport_seria, passport_number, phone_num) VALUES (159, 256431, 59692, 6549, 623863, '+62497632653') ;
INSERT INTO auth (login, password1, name) VALUES ('[email protected]', 'QZ2787QJ74', 'Deandrea') ;
INSERT INTO staff (first_name, last_name, room, auth_id, birthday, position, gender) VALUES ('Kandra', 'Jennings', 5, 160, '1960-01-08', 'doctor', 'female') ;
INSERT INTO appointment (occurrence_date, diagnosis, description, reason_to_create) VALUES ('2015-08-29 13:56:03.246442', 'Its main i', 'He looked inquisitively a', 'Initially ') ;
INSERT INTO appointment_patient_doctor_relation (appointment_id, patient_id, doctor_id) VALUES (10, 45, 45) ;
INSERT INTO appointment (occurrence_date, diagnosis, description, reason_to_create) VALUES ('2018-06-20 15:20:37.604442', 'She spent ', 'Its main implementation i', 'It is also') ;
INSERT INTO auth (login, password1, name) VALUES ('[email protected]', 'JE8866ER15', 'Shu') ;
INSERT INTO passport (seria, number, birth, f_name, l_name, gender, address) VALUES (4364, 375782, '2011-01-26', 'Tama', 'Mullins', 'male', 'Operative') ;
INSERT INTO patient (auth_id, bank_account_id, insurance_policy_id, passport_seria, passport_number, phone_num) VALUES (161, 749250, 53843, 4364, 375782, '+07195494670') ;
INSERT INTO auth (login, password1, name) VALUES ('[email protected]', 'HI1260MQ12', 'Edmond') ;
INSERT INTO staff (first_name, last_name, room, auth_id, birthday, position, gender) VALUES ('Jim', 'Maxwell', 21, 162, '1955-03-25', 'doctor', 'male') ;
INSERT INTO appointment (occurrence_date, diagnosis, description, reason_to_create) VALUES ('2010-01-15 14:04:03.269268', 'Ports are ', 'Atoms can contain any cha', 'Haskell is') ;
INSERT INTO appointment_patient_doctor_relation (appointment_id, patient_id, doctor_id) VALUES (12, 46, 46) ;
INSERT INTO appointment (occurrence_date, diagnosis, description, reason_to_create) VALUES ('2006-12-17 14:51:08.779625', 'Messages c', 'Do you have any idea why ', 'They are w') ;
INSERT INTO auth (login, password1, name) VALUES ('[email protected]', 'SI1279WX25', 'Emerson') ;
INSERT INTO passport (seria, number, birth, f_name, l_name, gender, address) VALUES (9358, 429054, '1954-04-21', 'Roland', 'Morse', 'female', 'Executive') ;
INSERT INTO patient (auth_id, bank_account_id, insurance_policy_id, passport_seria, passport_number, phone_num) VALUES (163, 570927, 53128, 9358, 429054, '+92328200904') ;
INSERT INTO auth (login, password1, name) VALUES ('[email protected]', 'MK7322XN28', 'Cleveland') ;
INSERT INTO staff (first_name, last_name, room, auth_id, birthday, position, gender) VALUES ('Lance', 'Herman', 35, 164, '2018-06-23', 'doctor', 'female') ;
INSERT INTO appointment (occurrence_date, diagnosis, description, reason_to_create) VALUES ('2002-10-13 11:56:02.946454', 'Haskell fe', 'The Galactic Empire is ne', 'Do you hav') ;
INSERT INTO appointment_patient_doctor_relation (appointment_id, patient_id, doctor_id) VALUES (14, 47, 47) ;
INSERT INTO appointment (occurrence_date, diagnosis, description, reason_to_create) VALUES ('2015-01-09 11:12:08.684109', 'He looked ', 'She spent her earliest ye', 'Erlang is ') ;
INSERT INTO auth (login, password1, name) VALUES ('[email protected]', 'CT2069IL25', 'Prince') ;
INSERT INTO passport (seria, number, birth, f_name, l_name, gender, address) VALUES (7497, 415986, '1983-01-05', 'Regan', 'Maxwell', 'male', 'Investment Manager') ;
INSERT INTO patient (auth_id, bank_account_id, insurance_policy_id, passport_seria, passport_number, phone_num) VALUES (165, 935975, 32306, 7497, 415986, '+23324430308') ;
INSERT INTO auth (login, password1, name) VALUES ('[email protected]', 'DG0350IN64', 'Rolf') ;
INSERT INTO staff (first_name, last_name, room, auth_id, birthday, position, gender) VALUES ('Jeromy', 'Rowland', 44, 166, '1973-05-30', 'doctor', 'female') ;
INSERT INTO appointment (occurrence_date, diagnosis, description, reason_to_create) VALUES ('2007-06-24 16:43:41.800443', 'The argume', 'Erlang is known for its d', 'Atoms are ') ;
INSERT INTO appointment_patient_doctor_relation (appointment_id, patient_id, doctor_id) VALUES (16, 48, 48) ;
INSERT INTO appointment (occurrence_date, diagnosis, description, reason_to_create) VALUES ('2005-01-17 14:26:47.318426', 'The sequen', 'I dont even care. She spe', 'I dont eve') ;
INSERT INTO auth (login, password1, name) VALUES ('[email protected]', 'BH2925HE47', 'Franklyn') ;
INSERT INTO passport (seria, number, birth, f_name, l_name, gender, address) VALUES (4910, 972306, '2006-09-28', 'Ramon', 'Mcgowan', 'male', 'School Inspector') ;
INSERT INTO patient (auth_id, bank_account_id, insurance_policy_id, passport_seria, passport_number, phone_num) VALUES (167, 652469, 49546, 4910, 972306, '+79143875181') ;
INSERT INTO auth (login, password1, name) VALUES ('[email protected]', 'UD1155EM54', 'Else') ;
INSERT INTO staff (first_name, last_name, room, auth_id, birthday, position, gender) VALUES ('Dexter', 'Nunez', 71, 168, '2017-06-14', 'doctor', 'male') ;
INSERT INTO appointment (occurrence_date, diagnosis, description, reason_to_create) VALUES ('2008-11-27 12:10:56.201463', 'They are w', 'Erlang is a general-purpo', 'He looked ') ;
INSERT INTO appointment_patient_doctor_relation (appointment_id, patient_id, doctor_id) VALUES (18, 49, 49) ;
INSERT INTO appointment (occurrence_date, diagnosis, description, reason_to_create) VALUES ('2016-01-01 16:01:29.876581', 'The Galact', 'Haskell features a type s', 'Ports are ') ;
INSERT INTO auth (login, password1, name) VALUES ('[email protected]', 'CW3471VQ49', 'Mendy') ;
INSERT INTO passport (seria, number, birth, f_name, l_name, gender, address) VALUES (3317, 572275, '1999-06-26', 'Yuonne', 'York', 'female', 'Stock Controller') ;
INSERT INTO patient (auth_id, bank_account_id, insurance_policy_id, passport_seria, passport_number, phone_num) VALUES (169, 808740, 04934, 3317, 572275, '+67981673847') ;
INSERT INTO auth (login, password1, name) VALUES ('[email protected]', 'GU5832UX48', 'Luke') ;
INSERT INTO staff (first_name, last_name, room, auth_id, birthday, position, gender) VALUES ('Beatris', 'Sexton', 90, 170, '2005-12-04', 'doctor', 'male') ;
INSERT INTO appointment (occurrence_date, diagnosis, description, reason_to_create) VALUES ('2009-07-20 11:10:41.522620', 'Any elemen', 'Atoms can contain any cha', 'The argume') ;
INSERT INTO appointment_patient_doctor_relation (appointment_id, patient_id, doctor_id) VALUES (20, 50, 50) ;
INSERT INTO appointment (occurrence_date, diagnosis, description, reason_to_create) VALUES ('2012-10-04 14:02:53.381645', 'It is also', 'They are written as strin', 'Do you hav') ;
INSERT INTO auth (login, password1, name) VALUES ('[email protected]', 'EB4190JB07', 'Danae') ;
INSERT INTO passport (seria, number, birth, f_name, l_name, gender, address) VALUES (1105, 672498, '1996-12-05', 'Antonietta', 'Valentine', 'male', 'Fork Lift Truck Driver') ;
INSERT INTO patient (auth_id, bank_account_id, insurance_policy_id, passport_seria, passport_number, phone_num) VALUES (171, 842592, 57596, 1105, 672498, '+42190162769') ;
INSERT INTO auth (login, password1, name) VALUES ('[email protected]', 'YM5706WH68', 'Malvina') ;
INSERT INTO staff (first_name, last_name, room, auth_id, birthday, position, gender) VALUES ('Noah', 'Levy', 43, 172, '1971-06-13', 'doctor', 'male') ;
INSERT INTO appointment (occurrence_date, diagnosis, description, reason_to_create) VALUES ('2019-01-09 16:45:18.549537', 'In 1989 th', 'Haskell is a standardized', 'It is also') ;
INSERT INTO appointment_patient_doctor_relation (appointment_id, patient_id, doctor_id) VALUES (22, 51, 51) ;
INSERT INTO appointment (occurrence_date, diagnosis, description, reason_to_create) VALUES ('2009-05-03 11:36:18.056529', 'Its main i', 'The sequential subset of ', 'Its main i') ;
INSERT INTO auth (login, password1, name) VALUES ('[email protected]', 'CT9376UK34', 'Ellis') ;
INSERT INTO passport (seria, number, birth, f_name, l_name, gender, address) VALUES (3717, 209881, '1991-12-19', 'Leon', 'Barrett', 'female', 'Minibus Driver') ;
INSERT INTO patient (auth_id, bank_account_id, insurance_policy_id, passport_seria, passport_number, phone_num) VALUES (173, 650050, 52840, 3717, 209881, '+49353517263') ;
INSERT INTO auth (login, password1, name) VALUES ('[email protected]', 'MG1394QR59', 'Joey') ;
INSERT INTO staff (first_name, last_name, room, auth_id, birthday, position, gender) VALUES ('Tomas', 'Higgins', 22, 174, '1979-05-06', 'doctor', 'male') ;
INSERT INTO appointment (occurrence_date, diagnosis, description, reason_to_create) VALUES ('2012-02-10 11:56:07.093919', 'He looked ', 'Ports are used to communi', 'Atoms can ') ;
INSERT INTO appointment_patient_doctor_relation (appointment_id, patient_id, doctor_id) VALUES (24, 52, 52) ;
INSERT INTO appointment (occurrence_date, diagnosis, description, reason_to_create) VALUES ('2017-06-30 14:05:59.848254', 'I dont eve', 'The sequential subset of ', 'In 1989 th') ;
INSERT INTO auth (login, password1, name) VALUES ('[email protected]', 'XY4964PK49', 'Donnetta') ;
INSERT INTO passport (seria, number, birth, f_name, l_name, gender, address) VALUES (2630, 702928, '1983-11-22', 'Hayden', 'Hayes', 'male', 'Outdoor Pursuits') ;
INSERT INTO patient (auth_id, bank_account_id, insurance_policy_id, passport_seria, passport_number, phone_num) VALUES (175, 642561, 97968, 2630, 702928, '+01193294079') ;
INSERT INTO auth (login, password1, name) VALUES ('[email protected]', 'BJ2517NO17', 'Fermin') ;
INSERT INTO staff (first_name, last_name, room, auth_id, birthday, position, gender) VALUES ('Roger', 'Bond', 75, 176, '1966-04-18', 'doctor', 'male') ;
INSERT INTO appointment (occurrence_date, diagnosis, description, reason_to_create) VALUES ('2020-02-29 15:43:26.640724', 'Atoms can ', 'Make me a sandwich. Haske', 'Messages c') ;
INSERT INTO appointment_patient_doctor_relation (appointment_id, patient_id, doctor_id) VALUES (26, 53, 53) ;
INSERT INTO appointment (occurrence_date, diagnosis, description, reason_to_create) VALUES ('2007-04-26 14:50:37.622001', 'Make me a ', 'Any element of a tuple ca', 'Its main i') ;
INSERT INTO auth (login, password1, name) VALUES ('[email protected]', 'EZ9716QR62', 'Truman') ;
INSERT INTO passport (seria, number, birth, f_name, l_name, gender, address) VALUES (4657, 085154, '1962-05-27', 'Jonas', 'Nash', 'male', 'Jockey') ;
INSERT INTO patient (auth_id, bank_account_id, insurance_policy_id, passport_seria, passport_number, phone_num) VALUES (177, 865717, 74655, 4657, 085154, '+24423219324') ;
INSERT INTO auth (login, password1, name) VALUES ('[email protected]', 'CD9517MX49', 'Derek') ;
INSERT INTO staff (first_name, last_name, room, auth_id, birthday, position, gender) VALUES ('Latoria', 'Torres', 81, 178, '1957-03-23', 'doctor', 'male') ;
INSERT INTO appointment (occurrence_date, diagnosis, description, reason_to_create) VALUES ('2020-08-06 13:14:43.597762', 'Atoms are ', 'Where are my pants? It is', 'Atoms are ') ;
INSERT INTO appointment_patient_doctor_relation (appointment_id, patient_id, doctor_id) VALUES (28, 54, 54) ;
INSERT INTO appointment (occurrence_date, diagnosis, description, reason_to_create) VALUES ('2016-07-13 11:46:07.836675', 'Messages c', 'Its main implementation i', 'The sequen') ;
INSERT INTO auth (login, password1, name) VALUES ('[email protected]', 'QO4601VD25', 'Alita') ;
INSERT INTO passport (seria, number, birth, f_name, l_name, gender, address) VALUES (6027, 077049, '2003-03-25', 'Kimbra', 'Fields', 'male', 'Lavatory Attendant') ;
INSERT INTO patient (auth_id, bank_account_id, insurance_policy_id, passport_seria, passport_number, phone_num) VALUES (179, 765834, 92309, 6027, 077049, '+59935118333') ;
INSERT INTO auth (login, password1, name) VALUES ('[email protected]', 'OJ3768FV74', 'Judson') ;
INSERT INTO staff (first_name, last_name, room, auth_id, birthday, position, gender) VALUES ('Devin', 'Petty', 40, 180, '1990-11-19', 'doctor', 'female') ;
INSERT INTO appointment (occurrence_date, diagnosis, description, reason_to_create) VALUES ('2008-06-15 12:19:01.068938', 'The syntax', 'They are written as strin', 'Any elemen') ;
INSERT INTO appointment_patient_doctor_relation (appointment_id, patient_id, doctor_id) VALUES (30, 55, 55) ;
INSERT INTO appointment (occurrence_date, diagnosis, description, reason_to_create) VALUES ('2020-12-26 12:50:51.437680', 'Messages c', 'Atoms can contain any cha', 'Atoms can ') ;
INSERT INTO auth (login, password1, name) VALUES ('[email protected]', 'XZ5721WW72', 'Rebbecca') ;
INSERT INTO passport (seria, number, birth, f_name, l_name, gender, address) VALUES (2113, 625041, '1972-09-26', 'Rozanne', 'Mullen', 'male', 'Advertising Manager') ;
INSERT INTO patient (auth_id, bank_account_id, insurance_policy_id, passport_seria, passport_number, phone_num) VALUES (181, 554785, 88288, 2113, 625041, '+86913452151') ;
INSERT INTO auth (login, password1, name) VALUES ('[email protected]', 'HS9716YF91', 'Marvella') ;
INSERT INTO staff (first_name, last_name, room, auth_id, birthday, position, gender) VALUES ('Rafael', 'William', 47, 182, '2019-11-03', 'doctor', 'male') ;
INSERT INTO appointment (occurrence_date, diagnosis, description, reason_to_create) VALUES ('2004-09-28 13:46:58.100167', 'The argume', 'Ports are used to communi', 'Erlang is ') ;
INSERT INTO appointment_patient_doctor_relation (appointment_id, patient_id, doctor_id) VALUES (32, 56, 56) ;
INSERT INTO appointment (occurrence_date, diagnosis, description, reason_to_create) VALUES ('2012-06-05 16:52:12.362142', 'They are w', 'She spent her earliest ye', 'I dont eve') ;
INSERT INTO auth (login, password1, name) VALUES ('[email protected]', 'VD2486TQ86', 'Jacques') ;
INSERT INTO passport (seria, number, birth, f_name, l_name, gender, address) VALUES (2408, 394431, '2019-10-17', 'Elijah', 'Schroeder', 'male', 'Legal Advisor') ;
INSERT INTO patient (auth_id, bank_account_id, insurance_policy_id, passport_seria, passport_number, phone_num) VALUES (183, 376170, 52610, 2408, 394431, '+71584826154') ;
INSERT INTO auth (login, password1, name) VALUES ('[email protected]', 'AP0403NZ60', 'Asa') ;
INSERT INTO staff (first_name, last_name, room, auth_id, birthday, position, gender) VALUES ('Joya', 'Monroe', 15, 184, '1998-10-29', 'doctor', 'male') ;
INSERT INTO appointment (occurrence_date, diagnosis, description, reason_to_create) VALUES ('2013-06-21 11:55:08.402026', 'Ports are ', 'They are written as strin', 'Any elemen') ;
INSERT INTO appointment_patient_doctor_relation (appointment_id, patient_id, doctor_id) VALUES (34, 57, 57) ;
INSERT INTO appointment (occurrence_date, diagnosis, description, reason_to_create) VALUES ('2003-04-05 14:59:42.483862', 'Initially ', 'The syntax {D1,D2,...,Dn}', 'Ports are ') ;
INSERT INTO auth (login, password1, name) VALUES ('[email protected]', 'VA8958XI89', 'Christoper') ;
INSERT INTO passport (seria, number, birth, f_name, l_name, gender, address) VALUES (4113, 434332, '2001-05-24', 'Kathline', 'Calhoun', 'male', 'Induction Moulder') ;
INSERT INTO patient (auth_id, bank_account_id, insurance_policy_id, passport_seria, passport_number, phone_num) VALUES (185, 061322, 40162, 4113, 434332, '+27644044467') ;
INSERT INTO auth (login, password1, name) VALUES ('[email protected]', 'IH6113RT60', 'Trevor') ;
INSERT INTO staff (first_name, last_name, room, auth_id, birthday, position, gender) VALUES ('Roxy', 'Ortega', 25, 186, '2014-02-15', 'doctor', 'male') ;
INSERT INTO appointment (occurrence_date, diagnosis, description, reason_to_create) VALUES ('2007-10-12 14:02:06.412817', 'Erlang is ', 'Atoms are used within a p', 'Messages c') ;
INSERT INTO appointment_patient_doctor_relation (appointment_id, patient_id, doctor_id) VALUES (36, 58, 58) ;
INSERT INTO appointment (occurrence_date, diagnosis, description, reason_to_create) VALUES ('2012-10-05 16:49:36.490267', 'Haskell is', 'Its main implementation i', 'Initially ') ;
INSERT INTO auth (login, password1, name) VALUES ('[email protected]', 'DS9761VS32', 'Janise') ;
INSERT INTO passport (seria, number, birth, f_name, l_name, gender, address) VALUES (1097, 364044, '2015-04-22', 'Shala', 'Rosa', 'female', 'Assessor') ;
INSERT INTO patient (auth_id, bank_account_id, insurance_policy_id, passport_seria, passport_number, phone_num) VALUES (187, 668917, 67790, 1097, 364044, '+42992283703') ;
INSERT INTO auth (login, password1, name) VALUES ('[email protected]', 'PE7213CC10', 'Verdell') ;
INSERT INTO staff (first_name, last_name, room, auth_id, birthday, position, gender) VALUES ('Desmond', 'Collins', 99, 188, '1965-04-06', 'doctor', 'female') ;
INSERT INTO appointment (occurrence_date, diagnosis, description, reason_to_create) VALUES ('2016-02-05 13:45:21.249407', 'Atoms are ', 'Messages can be sent to a', 'Its main i') ;
INSERT INTO appointment_patient_doctor_relation (appointment_id, patient_id, doctor_id) VALUES (38, 59, 59) ;
INSERT INTO appointment (occurrence_date, diagnosis, description, reason_to_create) VALUES ('2002-10-18 13:47:26.777602', 'Type class', 'Atoms can contain any cha', 'Its main i') ;
INSERT INTO auth (login, password1, name) VALUES ('[email protected]', 'BI8759FD04', 'Thurman') ;
INSERT INTO passport (seria, number, birth, f_name, l_name, gender, address) VALUES (5484, 978621, '2009-03-04', 'Carl', 'Martinez', 'female', 'Shot Blaster') ;
INSERT INTO patient (auth_id, bank_account_id, insurance_policy_id, passport_seria, passport_number, phone_num) VALUES (189, 166494, 28258, 5484, 978621, '+46973735729') ;
INSERT INTO auth (login, password1, name) VALUES ('[email protected]', 'LQ2917RF00', 'Zane') ;
INSERT INTO staff (first_name, last_name, room, auth_id, birthday, position, gender) VALUES ('Shay', 'Mccoy', 75, 190, '2005-03-25', 'doctor', 'female') ;
INSERT INTO appointment (occurrence_date, diagnosis, description, reason_to_create) VALUES ('2002-09-21 11:46:49.927599', 'Haskell fe', 'Erlang is a general-purpo', 'Atoms are ') ;
INSERT INTO appointment_patient_doctor_relation (appointment_id, patient_id, doctor_id) VALUES (40, 60, 60) ;
INSERT INTO appointment (occurrence_date, diagnosis, description, reason_to_create) VALUES ('2016-07-23 11:51:41.125448', 'Where are ', 'Initially composing light', 'Tuples are') ;
INSERT INTO auth (login, password1, name) VALUES ('[email protected]', 'HU3344GL05', 'Stefania') ;
INSERT INTO passport (seria, number, birth, f_name, l_name, gender, address) VALUES (9306, 381351, '1967-06-01', 'Jack', 'Walsh', 'female', 'Technical Instructor') ;
INSERT INTO patient (auth_id, bank_account_id, insurance_policy_id, passport_seria, passport_number, phone_num) VALUES (191, 735638, 25815, 9306, 381351, '+03446669524') ;
INSERT INTO auth (login, password1, name) VALUES ('[email protected]', 'NE4569NX30', 'Quincy') ;
INSERT INTO staff (first_name, last_name, room, auth_id, birthday, position, gender) VALUES ('Leon', 'Burke', 47, 192, '1975-09-16', 'doctor', 'female') ;
INSERT INTO appointment (occurrence_date, diagnosis, description, reason_to_create) VALUES ('2002-02-11 13:24:17.224325', 'It is also', 'The sequential subset of ', 'Type class') ;
INSERT INTO appointment_patient_doctor_relation (appointment_id, patient_id, doctor_id) VALUES (42, 61, 61) ;
INSERT INTO appointment (occurrence_date, diagnosis, description, reason_to_create) VALUES ('2020-10-17 13:56:56.921100', 'Where are ', 'Do you have any idea why ', 'Ports are ') ;
INSERT INTO auth (login, password1, name) VALUES ('[email protected]', 'II4475OK53', 'Tawna') ;
INSERT INTO passport (seria, number, birth, f_name, l_name, gender, address) VALUES (9582, 809778, '2005-12-29', 'Hayden', 'Sharp', 'female', 'Furniture Dealer') ;
INSERT INTO patient (auth_id, bank_account_id, insurance_policy_id, passport_seria, passport_number, phone_num) VALUES (193, 311396, 70119, 9582, 809778, '+42882686151') ;
INSERT INTO auth (login, password1, name) VALUES ('[email protected]', 'EZ7581AW42', 'Amado') ;
INSERT INTO staff (first_name, last_name, room, auth_id, birthday, position, gender) VALUES ('Jayson', 'Scott', 6, 194, '1976-09-10', 'doctor', 'female') ;
INSERT INTO appointment (occurrence_date, diagnosis, description, reason_to_create) VALUES ('2010-01-11 10:00:24.888893', 'Ports are ', 'Ports are created with th', 'Ports are ') ;
INSERT INTO appointment_patient_doctor_relation (appointment_id, patient_id, doctor_id) VALUES (44, 62, 62) ;
INSERT INTO appointment (occurrence_date, diagnosis, description, reason_to_create) VALUES ('2002-01-26 11:11:32.786877', 'In 1989 th', 'Its main implementation i', 'He looked ') ;
INSERT INTO auth (login, password1, name) VALUES ('[email protected]', 'RC4238JO41', 'Lenny') ;
INSERT INTO passport (seria, number, birth, f_name, l_name, gender, address) VALUES (2059, 182927, '1986-08-19', 'Criselda', 'Kemp', 'male', 'Landlord') ;
INSERT INTO patient (auth_id, bank_account_id, insurance_policy_id, passport_seria, passport_number, phone_num) VALUES (195, 457490, 12941, 2059, 182927, '+23222521554') ;
INSERT INTO auth (login, password1, name) VALUES ('[email protected]', 'VM0325DE40', 'Phung') ;
INSERT INTO staff (first_name, last_name, room, auth_id, birthday, position, gender) VALUES ('Kiesha', 'Ward', 73, 196, '1956-08-10', 'doctor', 'male') ;
INSERT INTO appointment (occurrence_date, diagnosis, description, reason_to_create) VALUES ('2003-06-17 12:48:35.127691', 'Do you hav', 'Do you have any idea why ', 'He looked ') ;
INSERT INTO appointment_patient_doctor_relation (appointment_id, patient_id, doctor_id) VALUES (46, 63, 63) ;
INSERT INTO appointment (occurrence_date, diagnosis, description, reason_to_create) VALUES ('2007-04-11 10:12:08.847259', 'Ports are ', 'Atoms can contain any cha', 'Make me a ') ;
INSERT INTO auth (login, password1, name) VALUES ('[email protected]', 'WW1584MH29', 'Nadene') ;
INSERT INTO passport (seria, number, birth, f_name, l_name, gender, address) VALUES (1923, 222006, '2011-01-25', 'Velvet', 'Hendrix', 'male', 'Aerobic Instructor') ;
INSERT INTO patient (auth_id, bank_account_id, insurance_policy_id, passport_seria, passport_number, phone_num) VALUES (197, 381751, 89117, 1923, 222006, '+91073147049') ;
INSERT INTO auth (login, password1, name) VALUES ('[email protected]', 'WA8334HB29', 'Basilia') ;
INSERT INTO staff (first_name, last_name, room, auth_id, birthday, position, gender) VALUES ('Lon', 'Mathews', 66, 198, '1978-12-11', 'doctor', 'male') ;
INSERT INTO appointment (occurrence_date, diagnosis, description, reason_to_create) VALUES ('2016-07-11 14:26:41.553439', 'Initially ', 'Haskell is a standardized', 'The syntax') ;
INSERT INTO appointment_patient_doctor_relation (appointment_id, patient_id, doctor_id) VALUES (48, 64, 64) ;
INSERT INTO appointment (occurrence_date, diagnosis, description, reason_to_create) VALUES ('2015-10-25 10:24:12.133893', 'Its main i', 'Atoms are used within a p', 'Messages c') ;
INSERT INTO auth (login, password1, name) VALUES ('[email protected]', 'IR2849DB42', 'Reinaldo') ;
INSERT INTO passport (seria, number, birth, f_name, l_name, gender, address) VALUES (4534, 097083, '1955-10-20', 'Chance', 'Carrillo', 'female', 'Accountant') ;
INSERT INTO patient (auth_id, bank_account_id, insurance_policy_id, passport_seria, passport_number, phone_num) VALUES (199, 597683, 01979, 4534, 097083, '+73313559250') ;
INSERT INTO auth (login, password1, name) VALUES ('[email protected]', 'LI7650UY42', 'Davis') ;
INSERT INTO staff (first_name, last_name, room, auth_id, birthday, position, gender) VALUES ('Felipe', 'Boyd', 62, 200, '1984-12-05', 'doctor', 'male') ;
INSERT INTO appointment (occurrence_date, diagnosis, description, reason_to_create) VALUES ('2003-12-22 14:05:12.319453', 'Atoms can ', 'Initially composing light', 'Initially ') ;
INSERT INTO appointment_patient_doctor_relation (appointment_id, patient_id, doctor_id) VALUES (50, 65, 65) ;
INSERT INTO appointment (occurrence_date, diagnosis, description, reason_to_create) VALUES ('2017-05-11 11:45:56.548531', 'Erlang is ', 'Haskell features a type s', 'Haskell is') ;
INSERT INTO auth (login, password1, name) VALUES ('[email protected]', 'YZ6580PU22', 'Emilio') ;
INSERT INTO passport (seria, number, birth, f_name, l_name, gender, address) VALUES (6340, 477691, '1981-05-17', 'Jenae', 'Petersen', 'male', 'Brewer') ;
INSERT INTO patient (auth_id, bank_account_id, insurance_policy_id, passport_seria, passport_number, phone_num) VALUES (201, 027813, 09964, 6340, 477691, '+20664265423') ;
INSERT INTO auth (login, password1, name) VALUES ('[email protected]', 'PJ0025XK52', 'Lonnie') ;
INSERT INTO staff (first_name, last_name, room, auth_id, birthday, position, gender) VALUES ('Warner', 'Church', 50, 202, '1958-06-06', 'doctor', 'male') ;
INSERT INTO appointment (occurrence_date, diagnosis, description, reason_to_create) VALUES ('2004-05-15 14:11:17.789432', 'Initially ', 'Messages can be sent to a', 'Do you hav') ;
INSERT INTO appointment_patient_doctor_relation (appointment_id, patient_id, doctor_id) VALUES (52, 66, 66) ;
INSERT INTO appointment (occurrence_date, diagnosis, description, reason_to_create) VALUES ('2007-01-11 13:58:20.130760', 'Atoms are ', 'She spent her earliest ye', 'Ports are ') ;
INSERT INTO auth (login, password1, name) VALUES ('[email protected]', 'NI8546XI30', 'Genna') ;
INSERT INTO passport (seria, number, birth, f_name, l_name, gender, address) VALUES (6557, 587106, '2019-08-24', 'Manie', 'Acevedo', 'female', 'Sail Maker') ;
INSERT INTO patient (auth_id, bank_account_id, insurance_policy_id, passport_seria, passport_number, phone_num) VALUES (203, 738632, 49315, 6557, 587106, '+18389770182') ;
INSERT INTO auth (login, password1, name) VALUES ('[email protected]', 'CY3409UH97', 'Vern') ;
INSERT INTO staff (first_name, last_name, room, auth_id, birthday, position, gender) VALUES ('Han', 'Figueroa', 9, 204, '1974-09-02', 'doctor', 'female') ;
INSERT INTO appointment (occurrence_date, diagnosis, description, reason_to_create) VALUES ('2017-08-26 10:25:25.494859', 'Ports are ', 'Erlang is a general-purpo', 'The syntax') ;
INSERT INTO appointment_patient_doctor_relation (appointment_id, patient_id, doctor_id) VALUES (54, 67, 67) ;
INSERT INTO appointment (occurrence_date, diagnosis, description, reason_to_create) VALUES ('2015-03-30 14:57:24.170923', 'Haskell fe', 'It is also a garbage-coll', 'It is also') ;
INSERT INTO auth (login, password1, name) VALUES ('[email protected]', 'LJ5879BM99', 'Bradly') ;
INSERT INTO passport (seria, number, birth, f_name, l_name, gender, address) VALUES (0457, 310747, '1972-09-12', 'Sharita', 'Riley', 'female', 'Site Engineer') ;
INSERT INTO patient (auth_id, bank_account_id, insurance_policy_id, passport_seria, passport_number, phone_num) VALUES (205, 678584, 69011, 0457, 310747, '+74811710683') ;
INSERT INTO auth (login, password1, name) VALUES ('[email protected]', 'GO0208PS79', 'Chester') ;
INSERT INTO staff (first_name, last_name, room, auth_id, birthday, position, gender) VALUES ('Denita', 'Scott', 44, 206, '2008-10-01', 'doctor', 'male') ;
INSERT INTO appointment (occurrence_date, diagnosis, description, reason_to_create) VALUES ('2004-08-03 12:39:51.366793', 'Atoms are ', 'The syntax {D1,D2,...,Dn}', 'It is also') ;
INSERT INTO appointment_patient_doctor_relation (appointment_id, patient_id, doctor_id) VALUES (56, 68, 68) ;
INSERT INTO appointment (occurrence_date, diagnosis, description, reason_to_create) VALUES ('2017-03-04 15:04:19.069380', 'Where are ', 'Do you have any idea why ', 'Atoms can ') ;
INSERT INTO auth (login, password1, name) VALUES ('[email protected]', 'AO4211FP57', 'Dan') ;
INSERT INTO passport (seria, number, birth, f_name, l_name, gender, address) VALUES (5669, 750844, '2008-09-12', 'Alphonso', 'Witt', 'male', 'Potter') ;
INSERT INTO patient (auth_id, bank_account_id, insurance_policy_id, passport_seria, passport_number, phone_num) VALUES (207, 647878, 88494, 5669, 750844, '+42133525057') ;
INSERT INTO auth (login, password1, name) VALUES ('[email protected]', 'UL0522SJ81', 'Dallas') ;
INSERT INTO staff (first_name, last_name, room, auth_id, birthday, position, gender) VALUES ('Dayle', 'Kim', 5, 208, '1960-06-20', 'doctor', 'male') ;
INSERT INTO appointment (occurrence_date, diagnosis, description, reason_to_create) VALUES ('2017-10-03 11:50:29.565105', 'Type class', 'Do you come here often? D', 'He looked ') ;
INSERT INTO appointment_patient_doctor_relation (appointment_id, patient_id, doctor_id) VALUES (58, 69, 69) ;
INSERT INTO appointment (occurrence_date, diagnosis, description, reason_to_create) VALUES ('2002-10-17 10:17:18.575937', 'Make me a ', 'I dont even care. Initial', 'They are w') ;
INSERT INTO auth (login, password1, name) VALUES ('[email protected]', 'NJ0409WX99', 'Rudy') ;
INSERT INTO passport (seria, number, birth, f_name, l_name, gender, address) VALUES (6676, 393322, '1983-09-24', 'Millard', 'Mayo', 'male', 'Analyst') ;
INSERT INTO patient (auth_id, bank_account_id, insurance_policy_id, passport_seria, passport_number, phone_num) VALUES (209, 604388, 51788, 6676, 393322, '+07569316039') ;
INSERT INTO auth (login, password1, name) VALUES ('[email protected]', 'MF7891AA41', 'Woodrow') ;
INSERT INTO staff (first_name, last_name, room, auth_id, birthday, position, gender) VALUES ('Catheryn', 'Norton', 64, 210, '1990-02-11', 'doctor', 'female') ;
INSERT INTO appointment (occurrence_date, diagnosis, description, reason_to_create) VALUES ('2018-02-20 16:30:52.445363', 'Any elemen', 'Atoms are used within a p', 'Ports are ') ;
INSERT INTO appointment_patient_doctor_relation (appointment_id, patient_id, doctor_id) VALUES (60, 70, 70) ;
INSERT INTO appointment (occurrence_date, diagnosis, description, reason_to_create) VALUES ('2003-09-11 16:07:11.394738', 'Where are ', 'The Galactic Empire is ne', 'Do you hav') ;
INSERT INTO auth (login, password1, name) VALUES ('[email protected]', 'XQ1771PR85', 'Nathanael') ;
INSERT INTO passport (seria, number, birth, f_name, l_name, gender, address) VALUES (4041, 759186, '2002-11-16', 'Palmer', 'Whitney', 'male', 'Art Dealer') ;
INSERT INTO patient (auth_id, bank_account_id, insurance_policy_id, passport_seria, passport_number, phone_num) VALUES (211, 022862, 34671, 4041, 759186, '+80890983183') ;
INSERT INTO auth (login, password1, name) VALUES ('[email protected]', 'RX4409OS71', 'Hilario') ;
INSERT INTO staff (first_name, last_name, room, auth_id, birthday, position, gender) VALUES ('Felton', 'Bowers', 5, 212, '1996-03-25', 'doctor', 'female') ;
INSERT INTO appointment (occurrence_date, diagnosis, description, reason_to_create) VALUES ('2006-05-06 15:24:11.681221', 'She spent ', 'Ports are created with th', 'Initially ') ;
INSERT INTO appointment_patient_doctor_relation (appointment_id, patient_id, doctor_id) VALUES (62, 71, 71) ;
INSERT INTO appointment (occurrence_date, diagnosis, description, reason_to_create) VALUES ('2003-08-28 12:51:35.756651', 'The syntax', 'Ports are used to communi', 'The Galact') ;
INSERT INTO auth (login, password1, name) VALUES ('[email protected]', 'LG1690CV94', 'Katerine') ;
INSERT INTO passport (seria, number, birth, f_name, l_name, gender, address) VALUES (3927, 255129, '1998-01-17', 'Jamel', 'Underwood', 'male', 'Forwarding Agent') ;
INSERT INTO patient (auth_id, bank_account_id, insurance_policy_id, passport_seria, passport_number, phone_num) VALUES (213, 365206, 07362, 3927, 255129, '+32434521175') ;
INSERT INTO auth (login, password1, name) VALUES ('[email protected]', 'LT3373WJ77', 'Marc') ;
INSERT INTO staff (first_name, last_name, room, auth_id, birthday, position, gender) VALUES ('Anya', 'Byers', 26, 214, '1976-01-05', 'doctor', 'male') ;
INSERT INTO appointment (occurrence_date, diagnosis, description, reason_to_create) VALUES ('2002-09-22 12:26:22.566979', 'They are w', 'Type classes first appear', 'The sequen') ;
INSERT INTO appointment_patient_doctor_relation (appointment_id, patient_id, doctor_id) VALUES (64, 72, 72) ;
INSERT INTO appointment (occurrence_date, diagnosis, description, reason_to_create) VALUES ('2018-04-16 11:37:24.964121', 'He looked ', 'Erlang is a general-purpo', 'Atoms can ') ;
INSERT INTO auth (login, password1, name) VALUES ('[email protected]', 'DK3766XV21', 'Jasper') ;
INSERT INTO passport (seria, number, birth, f_name, l_name, gender, address) VALUES (7023, 153456, '1982-09-22', 'Marco', 'Patton', 'male', 'Plant Manager') ;
INSERT INTO patient (auth_id, bank_account_id, insurance_policy_id, passport_seria, passport_number, phone_num) VALUES (215, 045189, 74550, 7023, 153456, '+96613171365') ;
INSERT INTO auth (login, password1, name) VALUES ('[email protected]', 'KM5149BL42', 'Lakeesha') ;
INSERT INTO staff (first_name, last_name, room, auth_id, birthday, position, gender) VALUES ('Dante', 'Rhodes', 95, 216, '2003-01-17', 'doctor', 'female') ;
INSERT INTO appointment (occurrence_date, diagnosis, description, reason_to_create) VALUES ('2012-08-01 13:42:06.615715', 'The argume', 'The syntax {D1,D2,...,Dn}', 'It is also') ;
INSERT INTO appointment_patient_doctor_relation (appointment_id, patient_id, doctor_id) VALUES (66, 73, 73) ;
INSERT INTO appointment (occurrence_date, diagnosis, description, reason_to_create) VALUES ('2002-01-08 15:45:02.882639', 'Erlang is ', 'She spent her earliest ye', 'Do you hav') ;
INSERT INTO auth (login, password1, name) VALUES ('[email protected]', 'CH6499FE77', 'Terisa') ;
INSERT INTO passport (seria, number, birth, f_name, l_name, gender, address) VALUES (1294, 390869, '1995-03-27', 'Colin', 'Eaton', 'female', 'Progress Chaser') ;
INSERT INTO patient (auth_id, bank_account_id, insurance_policy_id, passport_seria, passport_number, phone_num) VALUES (217, 757623, 35987, 1294, 390869, '+82222955898') ;
INSERT INTO auth (login, password1, name) VALUES ('[email protected]', 'SW1642XP05', 'Marivel') ;
INSERT INTO staff (first_name, last_name, room, auth_id, birthday, position, gender) VALUES ('Ryan', 'Summers', 65, 218, '1977-08-12', 'doctor', 'male') ;
INSERT INTO appointment (occurrence_date, diagnosis, description, reason_to_create) VALUES ('2013-11-20 15:09:51.790918', 'Do you hav', 'Make me a sandwich. Do yo', 'Ports are ') ;
INSERT INTO appointment_patient_doctor_relation (appointment_id, patient_id, doctor_id) VALUES (68, 74, 74) ;
INSERT INTO appointment (occurrence_date, diagnosis, description, reason_to_create) VALUES ('2008-08-24 12:21:37.641683', 'It is also', 'The arguments can be prim', 'Messages c') ;
INSERT INTO auth (login, password1, name) VALUES ('[email protected]', 'ME2805KO26', 'Steven') ;
INSERT INTO passport (seria, number, birth, f_name, l_name, gender, address) VALUES (3604, 396879, '2002-01-17', 'Bryan', 'Beach', 'female', 'Tennis Coach') ;
INSERT INTO patient (auth_id, bank_account_id, insurance_policy_id, passport_seria, passport_number, phone_num) VALUES (219, 965680, 42870, 3604, 396879, '+35360178680') ;
INSERT INTO auth (login, password1, name) VALUES ('[email protected]', 'KW0602TT90', 'Clarita') ;
INSERT INTO staff (first_name, last_name, room, auth_id, birthday, position, gender) VALUES ('Connie', 'Bond', 51, 220, '1988-04-24', 'doctor', 'female') ;
INSERT INTO appointment (occurrence_date, diagnosis, description, reason_to_create) VALUES ('2018-06-20 15:02:45.303976', 'The Galact', 'The syntax {D1,D2,...,Dn}', 'Atoms are ') ;
INSERT INTO appointment_patient_doctor_relation (appointment_id, patient_id, doctor_id) VALUES (70, 75, 75) ;
INSERT INTO appointment (occurrence_date, diagnosis, description, reason_to_create) VALUES ('2010-06-22 13:39:33.494398', 'Haskell fe', 'It is also a garbage-coll', 'Where are ') ;
INSERT INTO auth (login, password1, name) VALUES ('[email protected]', 'JB4232CX13', 'Scottie') ;
INSERT INTO passport (seria, number, birth, f_name, l_name, gender, address) VALUES (1667, 628357, '2011-12-22', 'Williemae', 'Mcdaniel', 'male', 'Marquee Erector') ;
INSERT INTO patient (auth_id, bank_account_id, insurance_policy_id, passport_seria, passport_number, phone_num) VALUES (221, 148510, 98371, 1667, 628357, '+41000977126') ;
INSERT INTO auth (login, password1, name) VALUES ('[email protected]', 'ST6162YC75', 'Alvera') ;
INSERT INTO staff (first_name, last_name, room, auth_id, birthday, position, gender) VALUES ('Yoshie', 'Kerr', 41, 222, '1970-04-23', 'doctor', 'male') ;
INSERT INTO appointment (occurrence_date, diagnosis, description, reason_to_create) VALUES ('2005-07-28 15:15:22.091023', 'Messages c', 'Any element of a tuple ca', 'Erlang is ') ;
INSERT INTO appointment_patient_doctor_relation (appointment_id, patient_id, doctor_id) VALUES (72, 76, 76) ;
INSERT INTO appointment (occurrence_date, diagnosis, description, reason_to_create) VALUES ('2012-06-21 15:12:40.968890', 'Messages c', 'The sequential subset of ', 'Messages c') ;
INSERT INTO auth (login, password1, name) VALUES ('[email protected]', 'MD2991VI95', 'Arnulfo') ;
INSERT INTO passport (seria, number, birth, f_name, l_name, gender, address) VALUES (3798, 215339, '1952-01-28', 'Roscoe', 'Hooper', 'female', 'Pasteuriser') ;
INSERT INTO patient (auth_id, bank_account_id, insurance_policy_id, passport_seria, passport_number, phone_num) VALUES (223, 536893, 11366, 3798, 215339, '+09350233327') ;
INSERT INTO auth (login, password1, name) VALUES ('[email protected]', 'NC1941TV60', 'Cassey') ;
INSERT INTO staff (first_name, last_name, room, auth_id, birthday, position, gender) VALUES ('Lisandra', 'Mcleod', 47, 224, '1987-06-18', 'doctor', 'female') ;
INSERT INTO appointment (occurrence_date, diagnosis, description, reason_to_create) VALUES ('2010-10-16 11:04:46.176835', 'Erlang is ', 'She spent her earliest ye', 'Haskell is') ;
INSERT INTO appointment_patient_doctor_relation (appointment_id, patient_id, doctor_id) VALUES (74, 77, 77) ;
INSERT INTO appointment (occurrence_date, diagnosis, description, reason_to_create) VALUES ('2013-12-10 10:55:41.087360', 'Make me a ', 'Haskell is a standardized', 'Make me a ') ;
INSERT INTO auth (login, password1, name) VALUES ('[email protected]', 'RQ2922CZ45', 'Elza') ;
INSERT INTO passport (seria, number, birth, f_name, l_name, gender, address) VALUES (1613, 740680, '1952-12-04', 'Suzi', 'Bullock', 'male', 'Street Entertainer') ;
INSERT INTO patient (auth_id, bank_account_id, insurance_policy_id, passport_seria, passport_number, phone_num) VALUES (225, 911187, 84109, 1613, 740680, '+06411377482') ;
INSERT INTO auth (login, password1, name) VALUES ('[email protected]', 'MG9894KU44', 'Wally') ;
INSERT INTO staff (first_name, last_name, room, auth_id, birthday, position, gender) VALUES ('Simonne', 'Ball', 82, 226, '1960-09-19', 'doctor', 'female') ;
INSERT INTO appointment (occurrence_date, diagnosis, description, reason_to_create) VALUES ('2016-12-11 15:23:02.419117', 'They are w', 'Do you have any idea why ', 'Do you hav') ;
INSERT INTO appointment_patient_doctor_relation (appointment_id, patient_id, doctor_id) VALUES (76, 78, 78) ;
INSERT INTO appointment (occurrence_date, diagnosis, description, reason_to_create) VALUES ('2020-04-17 12:27:49.741331', 'Its main i', 'Erlang is a general-purpo', 'Erlang is ') ;
INSERT INTO auth (login, password1, name) VALUES ('[email protected]', 'RF1010WT97', 'Ardath') ;
INSERT INTO passport (seria, number, birth, f_name, l_name, gender, address) VALUES (3603, 732384, '1975-05-09', 'Sabine', 'Everett', 'male', 'Typesetter') ;
INSERT INTO patient (auth_id, bank_account_id, insurance_policy_id, passport_seria, passport_number, phone_num) VALUES (227, 919731, 07854, 3603, 732384, '+76436960647') ;
INSERT INTO auth (login, password1, name) VALUES ('[email protected]', 'TG2116GU65', 'Maxwell') ;
INSERT INTO staff (first_name, last_name, room, auth_id, birthday, position, gender) VALUES ('Remedios', 'Sloan', 96, 228, '1951-07-08', 'doctor', 'female') ;
INSERT INTO appointment (occurrence_date, diagnosis, description, reason_to_create) VALUES ('2019-05-03 11:02:27.935998', 'The sequen', 'Type classes first appear', 'She spent ') ;
INSERT INTO appointment_patient_doctor_relation (appointment_id, patient_id, doctor_id) VALUES (78, 79, 79) ;
INSERT INTO appointment (occurrence_date, diagnosis, description, reason_to_create) VALUES ('2010-01-23 13:11:50.303378', 'Ports are ', 'He looked inquisitively a', 'Do you hav') ;
INSERT INTO auth (login, password1, name) VALUES ('[email protected]', 'BQ4898PR48', 'Ali') ;
INSERT INTO passport (seria, number, birth, f_name, l_name, gender, address) VALUES (0530, 246309, '1963-10-27', 'Colton', 'Hogan', 'male', 'Hairdresser') ;
INSERT INTO patient (auth_id, bank_account_id, insurance_policy_id, passport_seria, passport_number, phone_num) VALUES (229, 309886, 47816, 0530, 246309, '+12637623209') ;
INSERT INTO auth (login, password1, name) VALUES ('[email protected]', 'WV4640WB50', 'Ronald') ;
INSERT INTO staff (first_name, last_name, room, auth_id, birthday, position, gender) VALUES ('Tomoko', 'Colon', 35, 230, '1998-12-27', 'doctor', 'male') ;
INSERT INTO appointment (occurrence_date, diagnosis, description, reason_to_create) VALUES ('2017-05-02 16:07:38.734482', 'Do you com', 'Where are my pants? Ports', 'Haskell is') ;
INSERT INTO appointment_patient_doctor_relation (appointment_id, patient_id, doctor_id) VALUES (80, 80, 80) ;
INSERT INTO appointment (occurrence_date, diagnosis, description, reason_to_create) VALUES ('2001-04-06 14:27:40.633671', 'The argume', 'Ports are created with th', 'Make me a ') ;