-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdatabase_data.txt
More file actions
809 lines (799 loc) · 117 KB
/
Copy pathdatabase_data.txt
File metadata and controls
809 lines (799 loc) · 117 KB
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
INSERT INTO public.vehicle_models (model, manufacturer, category) VALUES ('Corsa', 'Opel', 'Car');
INSERT INTO public.vehicle_models (model, manufacturer, category) VALUES ('FH12', 'Volvo', 'Truck');
INSERT INTO public.vehicle_models (model, manufacturer, category) VALUES ('XT', 'Yamaha', 'Motorcycle');
INSERT INTO public.vehicle_models (model, manufacturer, category) VALUES ('Yaris', 'Toyota', 'Car');
INSERT INTO public.vehicle_models (model, manufacturer, category) VALUES ('R620', 'Scania', 'Truck');
INSERT INTO public.vehicle_models (model, manufacturer, category) VALUES ('Hobby', 'Daytona', 'Motorcycle');
INSERT INTO public.vehicle_models (model, manufacturer, category) VALUES ('R8', 'Audi', 'Car');
INSERT INTO public.vehicle_models (model, manufacturer, category) VALUES ('480XF', 'DAF', 'Truck');
INSERT INTO public.vehicle_models (model, manufacturer, category) VALUES ('Street Triple', 'Triumph', 'Motorcycle');
INSERT INTO public.vehicle_models (model, manufacturer, category) VALUES ('Impreza', 'Subaru', 'Car');
INSERT INTO public.vehicle_models (model, manufacturer, category) VALUES ('460Euro6', 'DAF', 'Truck');
INSERT INTO public.vehicle_models (model, manufacturer, category) VALUES ('GS Adventure', 'BMW', 'Motorcycle');
INSERT INTO public.vehicle_models (model, manufacturer, category) VALUES ('i10', 'Hyundai', 'Car');
INSERT INTO public.vehicle_models (model, manufacturer, category) VALUES ('400ATI', 'DAF', 'Truck');
INSERT INTO public.vehicle_models (model, manufacturer, category) VALUES ('Symphony ST', 'Sym', 'Motorcycle');
INSERT INTO public.vehicle_models (model, manufacturer, category) VALUES ('Swift', 'Suzuki', 'Car');
INSERT INTO public.vehicle_models (model, manufacturer, category) VALUES ('18440', 'MAN', 'Truck');
INSERT INTO public.vehicle_models (model, manufacturer, category) VALUES ('GTS 300', 'Piaggio', 'Motorcycle');
INSERT INTO public.vehicle_models (model, manufacturer, category) VALUES ('Veyron', 'Buggati', 'Car');
INSERT INTO public.vehicle_models (model, manufacturer, category) VALUES ('TGA', 'MAN', 'Truck');
INSERT INTO public.vehicle_models (model, manufacturer, category) VALUES ('PK', 'Vespa', 'Motorcycle');
INSERT INTO public.vehicle_models (model, manufacturer, category) VALUES ('Laferrari', 'Ferrari', 'Car');
INSERT INTO public.vehicle_models (model, manufacturer, category) VALUES ('TGX', 'MAN', 'Truck');
INSERT INTO public.vehicle_models (model, manufacturer, category) VALUES ('XLR', 'Honda', 'Motorcycle');
INSERT INTO public.clients_info (first_name, last_name, gender, birth_date, license_number, phone_number1, phone_number2, email, street, zip_code, city, country) VALUES ('Stephen', 'Kuehn', 'male', '1977-03-05', 7307866, '1-839-305-8711', '1-570-6052', 'L.Gonzalez4@gawab.ca', '189 Shawnee Ct', '81114', 'Beirut', 'Lebanon');
INSERT INTO public.clients_info (first_name, last_name, gender, birth_date, license_number, phone_number1, phone_number2, email, street, zip_code, city, country) VALUES ('Charlie', 'Nelson', 'female', '1992-05-27', 1373024, '1-906-2141', '1-696-3235', 'Frank.Wargula3@myspace.ca', '2 South MacArthur', '92238', 'Madrid', 'Spain');
INSERT INTO public.clients_info (first_name, last_name, gender, birth_date, license_number, phone_number1, phone_number2, email, street, zip_code, city, country) VALUES ('Marta', 'Wakefield', 'male', '1954-10-15', 3657661, '1-202-566-5797', NULL, 'LMuench3@mail.cn', '441 Scrutton Street', '81523', 'Lisbon', 'Portugal');
INSERT INTO public.clients_info (first_name, last_name, gender, birth_date, license_number, phone_number1, phone_number2, email, street, zip_code, city, country) VALUES ('Sally', 'DelRosso', 'male', '1982-03-26', 8288372, '1-111-9769', NULL, 'DanBright@myspace.cc', '9 N. Sherman Dr.', '64288', 'Sydney', 'Australia');
INSERT INTO public.clients_info (first_name, last_name, gender, birth_date, license_number, phone_number1, phone_number2, email, street, zip_code, city, country) VALUES ('Jill', 'Seibel', 'male', '1972-01-10', 1819881, '1-141-2726', NULL, 'Gretsj.Toreau@gawab.cn', '967 W. Broadway', '88913', 'Brussels', 'Belgium');
INSERT INTO public.clients_info (first_name, last_name, gender, birth_date, license_number, phone_number1, phone_number2, email, street, zip_code, city, country) VALUES ('Maggie', 'Wood', 'female', '1973-03-01', 1074911, '083-581-7103', '309-1944', 'Brent.Moore1@weboffice.be', '8762 Colette street', '06201', 'Panamas City', 'Panamas');
INSERT INTO public.clients_info (first_name, last_name, gender, birth_date, license_number, phone_number1, phone_number2, email, street, zip_code, city, country) VALUES ('Stanislaw', 'Thompson', 'male', '1958-10-12', 4449537, '1-191-3763', NULL, 'HansKellock2@kpn.ca', '737 Wellington Dr.', '07129', 'Mexico City', 'Mexico');
INSERT INTO public.clients_info (first_name, last_name, gender, birth_date, license_number, phone_number1, phone_number2, email, street, zip_code, city, country) VALUES ('Katarzyna', 'Hamilton', 'female', '2000-11-18', 9170944, '621-7599', '1-862-5753', 'Patty.Byrnes3@gawab.be', '18 Chehalis Road', '76301', 'Damascus', 'Syria');
INSERT INTO public.clients_info (first_name, last_name, gender, birth_date, license_number, phone_number1, phone_number2, email, street, zip_code, city, country) VALUES ('Duncan', 'Weaver', 'male', '1955-10-30', 9640655, '473-1777', '105-498-2367', 'G.Willis@gmail.dk', '924 Copeland Place', '51370', 'Paris', 'France');
INSERT INTO public.clients_info (first_name, last_name, gender, birth_date, license_number, phone_number1, phone_number2, email, street, zip_code, city, country) VALUES ('Ruth', 'Zimmerman', 'male', '1975-12-22', 3096863, '204-3388', '621-5513', 'FredRay@mymail.dk', '16 W. Broadway', '45675', 'Tripoli', 'Libya');
INSERT INTO public.clients_info (first_name, last_name, gender, birth_date, license_number, phone_number1, phone_number2, email, street, zip_code, city, country) VALUES ('Georgina', 'King', 'male', '1998-01-13', 1422054, '1-960-864-3859', '093-621-8961', 'BiancaDavis@lycos.it', '4226 Ferro Dr', '96352', 'Nicosia', 'Cyprus');
INSERT INTO public.clients_info (first_name, last_name, gender, birth_date, license_number, phone_number1, phone_number2, email, street, zip_code, city, country) VALUES ('Adrian', 'Willis', 'male', '1977-11-02', 9400667, '579-352-3318', '601-4952', 'WilliamDurso4@mymail.nl', '3 Carnaby Creek', '19440', 'Prague', 'Czech Republic');
INSERT INTO public.clients_info (first_name, last_name, gender, birth_date, license_number, phone_number1, phone_number2, email, street, zip_code, city, country) VALUES ('Peggy', 'Baltec', 'male', '1969-12-17', 6157195, '998-7622', NULL, 'J.Arcadi3@telefonica.cc', '1372 Willowcrest', '80566', 'Athens', 'Greece');
INSERT INTO public.clients_info (first_name, last_name, gender, birth_date, license_number, phone_number1, phone_number2, email, street, zip_code, city, country) VALUES ('Raul', 'Phelps', 'male', '1962-12-31', 9090696, '1-935-8796', '1-620-2422', 'LucyPolti2@telefonica.net', '8493 Roan Lane', '98989', 'Madrid', 'Spain');
INSERT INTO public.clients_info (first_name, last_name, gender, birth_date, license_number, phone_number1, phone_number2, email, street, zip_code, city, country) VALUES ('Will', 'Lamere', 'female', '1976-05-26', 1556537, '1-664-315-3262', NULL, 'R.Pyland@freeweb.dk', '683 Sutter St', '98707', 'Lisbon', 'Portugal');
INSERT INTO public.clients_info (first_name, last_name, gender, birth_date, license_number, phone_number1, phone_number2, email, street, zip_code, city, country) VALUES ('Chuck', 'Heyn', 'male', '1953-05-16', 4937228, '308-8591', '042-7050', 'DavidMaribarski4@kpn.org', '5 E. Plumb Lane', '65324', 'Sydney', 'Australia');
INSERT INTO public.clients_info (first_name, last_name, gender, birth_date, license_number, phone_number1, phone_number2, email, street, zip_code, city, country) VALUES ('Edwina', 'Pyland', 'male', '1957-07-07', 3575306, '807-971-2943', '1-252-887-9180', 'LindsyZimmerman@gmail.ca', '646 Carnaby Creek', '46705', 'Brussels', 'Belgium');
INSERT INTO public.clients_info (first_name, last_name, gender, birth_date, license_number, phone_number1, phone_number2, email, street, zip_code, city, country) VALUES ('Anton', 'Phelps', 'male', '1973-04-20', 6186696, '1-886-9611', '385-659-6010', 'Will.Pierce@myspace.no', '2 North 00th Street', '24844', 'Panamas City', 'Panamas');
INSERT INTO public.clients_info (first_name, last_name, gender, birth_date, license_number, phone_number1, phone_number2, email, street, zip_code, city, country) VALUES ('Ed', 'Newman', 'male', '1963-06-05', 5635070, '1-224-724-4540', '999-901-6829', 'TonForsberg@msn.net', '4 Freidrich Lane', '35389', 'Mexico City', 'Mexico');
INSERT INTO public.clients_info (first_name, last_name, gender, birth_date, license_number, phone_number1, phone_number2, email, street, zip_code, city, country) VALUES ('Harold', 'Olson', 'male', '1978-07-29', 6961770, '1-647-315-1321', '1-700-966-2130', 'J.Chwatal@excite.nl', '50 Hunt Valley Road', '69485', 'Damascus', 'Syria');
INSERT INTO public.clients_info (first_name, last_name, gender, birth_date, license_number, phone_number1, phone_number2, email, street, zip_code, city, country) VALUES ('Jonas', 'Overton', 'female', '1956-06-13', 7973265, '1-310-265-3435', '571-3836', 'K.Daughtery4@excite.nl', '735 Shawnee Ct', '76817', 'Rabat', 'Morocco');
INSERT INTO public.clients_info (first_name, last_name, gender, birth_date, license_number, phone_number1, phone_number2, email, street, zip_code, city, country) VALUES ('Scottie', 'Hancock', 'female', '1992-10-15', 6213694, '1-718-1265', '1-030-5801', 'RichardNobles3@kpn.fr', '65 Sulgrave Lane', '31182', 'Paris', 'France');
INSERT INTO public.clients_info (first_name, last_name, gender, birth_date, license_number, phone_number1, phone_number2, email, street, zip_code, city, country) VALUES ('Milan', 'DeWilde', 'female', '1983-08-29', 9229637, '1-141-2670', '348-1812', 'RickClarke@excite.cc', '7 Freidrich Lane', '81372', 'Tripoli', 'Libya');
INSERT INTO public.clients_info (first_name, last_name, gender, birth_date, license_number, phone_number1, phone_number2, email, street, zip_code, city, country) VALUES ('Marcin', 'Knight', 'male', '1998-02-17', 9654799, '1-336-9001', NULL, 'DanaBright@telfort.no', '776 Morningside Dr', '64770', 'Nicosia', 'Cyprus');
INSERT INTO public.clients_info (first_name, last_name, gender, birth_date, license_number, phone_number1, phone_number2, email, street, zip_code, city, country) VALUES ('Johnny', 'Daniel', 'male', '1972-10-09', 799924, '264-535-4401', '386-941-9718', 'Pauline.Fernandez@yahoo.co.uk', '773 W. Broadway', '52477', 'Prague', 'Czech Republic');
INSERT INTO public.clients_info (first_name, last_name, gender, birth_date, license_number, phone_number1, phone_number2, email, street, zip_code, city, country) VALUES ('JanCees', 'Bloom', 'female', '1961-11-07', 7491303, '1-027-5271', '1-958-8241', 'Freddy.Tudisco@mobileme.no', '772 Calle Fidelidad', '53292', 'Athens', 'Greece');
INSERT INTO public.clients_info (first_name, last_name, gender, birth_date, license_number, phone_number1, phone_number2, email, street, zip_code, city, country) VALUES ('Jurre', 'Ionescu', 'male', '1981-02-24', 5630830, '759-842-1454', '421-470-1548', 'NigelDeWilde3@mymail.nl', '679 Crookston Lane', '42671', 'Beirut', 'Lebanon');
INSERT INTO public.clients_info (first_name, last_name, gender, birth_date, license_number, phone_number1, phone_number2, email, street, zip_code, city, country) VALUES ('Chuck', 'Foreman', 'female', '1961-02-02', 2865818, '818-0771', '1-202-833-1305', 'Femkevan het Hof@weboffice.es', '76 Spottswood Drive', '64366', 'Madrid', 'Spain');
INSERT INTO public.clients_info (first_name, last_name, gender, birth_date, license_number, phone_number1, phone_number2, email, street, zip_code, city, country) VALUES ('Ann', 'Green', 'female', '1998-10-12', 146827, '1-846-377-1042', '1-304-2645', 'M.Wood@hotmail.de', '5 Everglades Way', '88523', 'Lisbon', 'Portugal');
INSERT INTO public.clients_info (first_name, last_name, gender, birth_date, license_number, phone_number1, phone_number2, email, street, zip_code, city, country) VALUES ('Helen', 'Knight', 'female', '1981-08-08', 8933188, '1-396-4178', '1-372-590-0646', 'IGreen4@hotmail.es', '0 Grant Place', '96827', 'Brussels', 'Belgium');
INSERT INTO public.clients_info (first_name, last_name, gender, birth_date, license_number, phone_number1, phone_number2, email, street, zip_code, city, country) VALUES ('Manuel', 'Ladaille', 'female', '1973-09-29', 5662644, '1-416-443-3339', '1-551-5610', 'Jack.Ladaille4@gmail.cc', '752 Forest Windway', '57748', 'Panamas City', 'Panamas');
INSERT INTO public.clients_info (first_name, last_name, gender, birth_date, license_number, phone_number1, phone_number2, email, street, zip_code, city, country) VALUES ('Peg', 'Pickering', 'female', '1991-12-17', 577281, '1-322-270-2720', '865-6349', 'Isolde.Schmidt@libero.ca', '5 J. Carcione Way', '14779', 'Mexico City', 'Mexico');
INSERT INTO public.clients_info (first_name, last_name, gender, birth_date, license_number, phone_number1, phone_number2, email, street, zip_code, city, country) VALUES ('Elizabeth', 'Suszantor', 'male', '1995-08-09', 1025287, '1-678-7919', '596-9686', 'BasGildersleeve5@gmail.dk', '2 Wellington Dr.', '69108', 'Damascus', 'Syria');
INSERT INTO public.clients_info (first_name, last_name, gender, birth_date, license_number, phone_number1, phone_number2, email, street, zip_code, city, country) VALUES ('Jamie', 'Morgan', 'female', '1991-02-19', 8365266, '523-320-0133', '1-156-9445', 'PeteBitmacs2@telefonica.nl', '93 Devonshire Rd', '27689', 'Rabat', 'Morocco');
INSERT INTO public.clients_info (first_name, last_name, gender, birth_date, license_number, phone_number1, phone_number2, email, street, zip_code, city, country) VALUES ('Bob', 'King', 'female', '1952-05-05', 278350, '1-030-971-1181', '1-642-9174', 'FransHelbush5@yahoo.gov', '8 Fontanoso Way', '63316', 'Paris', 'France');
INSERT INTO public.clients_info (first_name, last_name, gender, birth_date, license_number, phone_number1, phone_number2, email, street, zip_code, city, country) VALUES ('Betty', 'Allison', 'male', '1972-12-01', 1285301, '1-293-7727', '1-870-913-8145', 'GeoffryLangham@aol.fr', '152 N. Deerwood Road', '39349', 'Tripoli', 'Libya');
INSERT INTO public.clients_info (first_name, last_name, gender, birth_date, license_number, phone_number1, phone_number2, email, street, zip_code, city, country) VALUES ('Krystyna', 'Patricelli', 'male', '1953-05-16', 4510746, '1-890-0112', '314-1351', 'Camilla.Huffsmitt@freeweb.fr', '7762 Trenton Avenue', '74734', 'Prague', 'Czech Republic');
INSERT INTO public.clients_info (first_name, last_name, gender, birth_date, license_number, phone_number1, phone_number2, email, street, zip_code, city, country) VALUES ('Betty', 'Slocum', 'female', '1995-07-09', 2014667, '279-6490', '1-635-497-8705', 'WCarlos3@freeweb.it', '42 West 96th Street', '43234', 'Athens', 'Greece');
INSERT INTO public.clients_info (first_name, last_name, gender, birth_date, license_number, phone_number1, phone_number2, email, street, zip_code, city, country) VALUES ('Petra', 'Phillips', 'male', '1982-01-06', 4963611, '155-731-1251', NULL, 'GHuston2@gmail.de', '1282 Willowcrest', '14391', 'Beirut', 'Lebanon');
INSERT INTO public.clients_info (first_name, last_name, gender, birth_date, license_number, phone_number1, phone_number2, email, street, zip_code, city, country) VALUES ('Piotr', 'Langham ', 'male', '1996-07-27', 2667826, '076-097-5462', '1-373-9666', 'Jim.van Dijk4@web.cc', '61 Vanderheck', '88434', 'Madrid', 'Spain');
INSERT INTO public.clients_info (first_name, last_name, gender, birth_date, license_number, phone_number1, phone_number2, email, street, zip_code, city, country) VALUES ('Nathan', 'Haynes', 'male', '1987-08-09', 8401218, '1-481-4404', '768-762-6518', 'Freddy.Bogdanovich4@lycos.net', '0390 S. Brackbank Dr', '39698', 'Lisbon', 'Portugal');
INSERT INTO public.clients_info (first_name, last_name, gender, birth_date, license_number, phone_number1, phone_number2, email, street, zip_code, city, country) VALUES ('Martien', 'Hulshof', 'female', '1963-03-30', 9070744, '087-715-1210', NULL, 'Martin.Browne@mymail.cc', '42 Durness Place', '93696', 'Sydney', 'Australia');
INSERT INTO public.clients_info (first_name, last_name, gender, birth_date, license_number, phone_number1, phone_number2, email, street, zip_code, city, country) VALUES ('Talitha', 'White', 'female', '1982-10-12', 6252546, '699-0491', '463-9229', 'Frans.Shapiro1@mail.ca', '48 Cheltenham Road', '70152', 'Damascus', 'Syria');
INSERT INTO public.clients_info (first_name, last_name, gender, birth_date, license_number, phone_number1, phone_number2, email, street, zip_code, city, country) VALUES ('Theo', 'Makelaar', 'male', '1951-11-26', 1911994, '876-843-7521', '1-759-995-5576', 'Nadine.Gerschkow@mymail.it', '6999 Trenton Avenue', '91217', 'Rabat', 'Morocco');
INSERT INTO public.clients_info (first_name, last_name, gender, birth_date, license_number, phone_number1, phone_number2, email, street, zip_code, city, country) VALUES ('Pedro', 'Helbush', 'female', '1967-09-15', 2322021, '1-699-431-4084', '1-675-2469', 'HNovratni2@lycos.cc', '520 Carolyn Close', '11664', 'Paris', 'France');
INSERT INTO public.clients_info (first_name, last_name, gender, birth_date, license_number, phone_number1, phone_number2, email, street, zip_code, city, country) VALUES ('Maja', 'Dean', 'female', '1992-02-08', 3798538, '530-4602', '1-981-3995', 'RickMorton5@aol.co.uk', '570 Hunt Valley Road', '15842', 'Tripoli', 'Libya');
INSERT INTO public.clients_info (first_name, last_name, gender, birth_date, license_number, phone_number1, phone_number2, email, street, zip_code, city, country) VALUES ('Laura', 'Yinger', 'male', '1979-03-10', 7820343, '1-689-5740', NULL, 'Georgevan Dijk5@web.us', '8 Stewart Ave', '71120', 'Nicosia', 'Cyprus');
INSERT INTO public.clients_info (first_name, last_name, gender, birth_date, license_number, phone_number1, phone_number2, email, street, zip_code, city, country) VALUES ('Liam', 'Kingslan', 'female', '1969-10-21', 8851367, '933-9737', '864-0344', 'Fons.Crocetti@gawab.cn', '70 South MacArthur', '27230', 'Prague', 'Czech Republic');
INSERT INTO public.clients_info (first_name, last_name, gender, birth_date, license_number, phone_number1, phone_number2, email, street, zip_code, city, country) VALUES ('Megan', 'Hankins', 'female', '1985-03-27', 4994634, '1-814-467-7302', NULL, 'George.Brennan1@web.cn', '4 Warwick Square', '52881', 'Athens', 'Greece');
INSERT INTO public.contracts (contract_code, insurance_category, start_date, end_date, contract_cost) VALUES ('A087805', 'professional', '2018-06-22', '2021-06-22', 42008);
INSERT INTO public.contracts (contract_code, insurance_category, start_date, end_date, contract_cost) VALUES ('A975011', 'mixed', '2021-06-20', '2024-05-14', 7117900);
INSERT INTO public.contracts (contract_code, insurance_category, start_date, end_date, contract_cost) VALUES ('P599183', 'mixed', '2014-06-15', '2021-03-09', 9935500);
INSERT INTO public.contracts (contract_code, insurance_category, start_date, end_date, contract_cost) VALUES ('P217418', 'private', '2021-07-28', '2022-01-30', 69106);
INSERT INTO public.contracts (contract_code, insurance_category, start_date, end_date, contract_cost) VALUES ('P270842', 'professional', '2021-06-22', '2025-09-22', 90195);
INSERT INTO public.contracts (contract_code, insurance_category, start_date, end_date, contract_cost) VALUES ('P474722', 'mixed', '2021-06-19', '2022-05-19', 4541600);
INSERT INTO public.contracts (contract_code, insurance_category, start_date, end_date, contract_cost) VALUES ('A009542', 'professional', '2009-07-14', '2025-08-10', 52676);
INSERT INTO public.contracts (contract_code, insurance_category, start_date, end_date, contract_cost) VALUES ('A010481', 'mixed', '2011-07-16', '2022-09-11', 5023500);
INSERT INTO public.contracts (contract_code, insurance_category, start_date, end_date, contract_cost) VALUES ('A330596', 'mixed', '2014-05-17', '2017-04-02', 4962600);
INSERT INTO public.contracts (contract_code, insurance_category, start_date, end_date, contract_cost) VALUES ('A182593', 'mixed', '2000-06-08', '2023-05-19', 9521900);
INSERT INTO public.contracts (contract_code, insurance_category, start_date, end_date, contract_cost) VALUES ('A087547', 'mixed', '2018-08-09', '2022-08-18', 6218200);
INSERT INTO public.contracts (contract_code, insurance_category, start_date, end_date, contract_cost) VALUES ('P323953', 'mixed', '2017-12-21', '2022-03-20', 9440056);
INSERT INTO public.contracts (contract_code, insurance_category, start_date, end_date, contract_cost) VALUES ('P811636', 'mixed', '2021-06-28', '2023-08-13', 1009841);
INSERT INTO public.contracts (contract_code, insurance_category, start_date, end_date, contract_cost) VALUES ('A258364', 'mixed', '2021-07-07', '2023-12-14', 2370059);
INSERT INTO public.contracts (contract_code, insurance_category, start_date, end_date, contract_cost) VALUES ('P360972', 'mixed', '2013-04-21', '2025-06-10', 53497);
INSERT INTO public.contracts (contract_code, insurance_category, start_date, end_date, contract_cost) VALUES ('A787634', 'mixed', '2019-07-03', '2022-06-26', 8300880);
INSERT INTO public.contracts (contract_code, insurance_category, start_date, end_date, contract_cost) VALUES ('P671261', 'private', '2021-06-17', '2023-07-08', 6434);
INSERT INTO public.contracts (contract_code, insurance_category, start_date, end_date, contract_cost) VALUES ('A491880', 'mixed', '2010-08-03', '2024-04-25', 8005185);
INSERT INTO public.contracts (contract_code, insurance_category, start_date, end_date, contract_cost) VALUES ('P725362', 'mixed', '2000-06-21', '2022-05-02', 4000865);
INSERT INTO public.contracts (contract_code, insurance_category, start_date, end_date, contract_cost) VALUES ('A647907', 'professional', '2021-06-02', '2021-07-20', 8206);
INSERT INTO public.contracts (contract_code, insurance_category, start_date, end_date, contract_cost) VALUES ('A888672', 'private', '2004-01-06', '2021-10-25', 57792);
INSERT INTO public.contracts (contract_code, insurance_category, start_date, end_date, contract_cost) VALUES ('A250245', 'mixed', '2021-07-23', '2023-06-03', 7600047);
INSERT INTO public.contracts (contract_code, insurance_category, start_date, end_date, contract_cost) VALUES ('A611724', 'mixed', '2005-05-13', '2024-04-04', 9674004);
INSERT INTO public.contracts (contract_code, insurance_category, start_date, end_date, contract_cost) VALUES ('P582518', 'professional', '2019-06-02', '2024-05-20', 83016);
INSERT INTO public.contracts (contract_code, insurance_category, start_date, end_date, contract_cost) VALUES ('A737545', 'professional', '2017-02-02', '2025-08-28', 42693);
INSERT INTO public.contracts (contract_code, insurance_category, start_date, end_date, contract_cost) VALUES ('A650855', 'professional', '2020-06-07', '2023-09-27', 8790);
INSERT INTO public.contracts (contract_code, insurance_category, start_date, end_date, contract_cost) VALUES ('P247822', 'mixed', '2017-11-15', '2022-08-06', 4006146);
INSERT INTO public.contracts (contract_code, insurance_category, start_date, end_date, contract_cost) VALUES ('A737486', 'private', '2017-06-06', '2022-04-18', 61019);
INSERT INTO public.contracts (contract_code, insurance_category, start_date, end_date, contract_cost) VALUES ('P152440', 'mixed', '2003-10-03', '2025-08-13', 9740060);
INSERT INTO public.contracts (contract_code, insurance_category, start_date, end_date, contract_cost) VALUES ('A419286', 'private', '2019-11-02', '2024-03-15', 41305);
INSERT INTO public.contracts (contract_code, insurance_category, start_date, end_date, contract_cost) VALUES ('P962264', 'mixed', '2016-02-08', '2019-05-24', 6870072);
INSERT INTO public.contracts (contract_code, insurance_category, start_date, end_date, contract_cost) VALUES ('A925510', 'professional', '2019-10-10', '2021-07-04', 77144);
INSERT INTO public.contracts (contract_code, insurance_category, start_date, end_date, contract_cost) VALUES ('A282408', 'mixed', '2021-07-23', '2024-12-13', 4007009);
INSERT INTO public.contracts (contract_code, insurance_category, start_date, end_date, contract_cost) VALUES ('P951147', 'professional', '2008-10-03', '2021-02-06', 20248);
INSERT INTO public.contracts (contract_code, insurance_category, start_date, end_date, contract_cost) VALUES ('A569834', 'mixed', '2005-12-21', '2024-12-02', 9070018);
INSERT INTO public.contracts (contract_code, insurance_category, start_date, end_date, contract_cost) VALUES ('P252360', 'mixed', '2021-07-16', '2025-01-15', 7204005);
INSERT INTO public.contracts (contract_code, insurance_category, start_date, end_date, contract_cost) VALUES ('P449289', 'professional', '2002-03-25', '2024-05-02', 62458);
INSERT INTO public.contracts (contract_code, insurance_category, start_date, end_date, contract_cost) VALUES ('P465068', 'professional', '2000-07-04', '2019-11-19', 64647);
INSERT INTO public.contracts (contract_code, insurance_category, start_date, end_date, contract_cost) VALUES ('A719740', 'professional', '2010-09-25', '2020-06-02', 51324);
INSERT INTO public.contracts (contract_code, insurance_category, start_date, end_date, contract_cost) VALUES ('P774736', 'professional', '2021-06-11', '2022-04-14', 87402);
INSERT INTO public.contracts (contract_code, insurance_category, start_date, end_date, contract_cost) VALUES ('P260568', 'professional', '2021-07-18', '2024-08-12', 95744);
INSERT INTO public.contracts (contract_code, insurance_category, start_date, end_date, contract_cost) VALUES ('P017333', 'professional', '2015-12-29', '2021-03-27', 29993);
INSERT INTO public.contracts (contract_code, insurance_category, start_date, end_date, contract_cost) VALUES ('A451737', 'private', '2008-07-23', '2023-03-29', 19451);
INSERT INTO public.contracts (contract_code, insurance_category, start_date, end_date, contract_cost) VALUES ('P492063', 'professional', '2004-02-14', '2017-10-15', 45131);
INSERT INTO public.contracts (contract_code, insurance_category, start_date, end_date, contract_cost) VALUES ('P069931', 'mixed', '2021-07-24', '2021-09-07', 1700376);
INSERT INTO public.contracts (contract_code, insurance_category, start_date, end_date, contract_cost) VALUES ('P583759', 'mixed', '2018-12-31', '2019-10-29', 8006835);
INSERT INTO public.contracts (contract_code, insurance_category, start_date, end_date, contract_cost) VALUES ('A941331', 'mixed', '2017-07-11', '2021-11-27', 1202024);
INSERT INTO public.contracts (contract_code, insurance_category, start_date, end_date, contract_cost) VALUES ('A094850', 'professional', '2005-04-08', '2016-05-29', 21350);
INSERT INTO public.contracts (contract_code, insurance_category, start_date, end_date, contract_cost) VALUES ('A407701', 'private', '2021-07-09', '2021-10-10', 42299);
INSERT INTO public.contracts (contract_code, insurance_category, start_date, end_date, contract_cost) VALUES ('P209751', 'mixed', '2021-06-15', '2024-08-13', 1650084);
INSERT INTO public.contracts (contract_code, insurance_category, start_date, end_date, contract_cost) VALUES ('A818231', 'private', '2014-09-26', '2020-09-04', 58060);
INSERT INTO public.contracts (contract_code, insurance_category, start_date, end_date, contract_cost) VALUES ('A285146', 'mixed', '2004-07-24', '2023-06-11', 5047010);
INSERT INTO public.contracts (contract_code, insurance_category, start_date, end_date, contract_cost) VALUES ('P006282', 'private', '2011-01-12', '2020-10-16', 94491);
INSERT INTO public.contracts (contract_code, insurance_category, start_date, end_date, contract_cost) VALUES ('P286587', 'private', '2008-03-03', '2024-08-15', 76031);
INSERT INTO public.contracts (contract_code, insurance_category, start_date, end_date, contract_cost) VALUES ('P879829', 'mixed', '2021-07-14', '2022-09-17', 2405005);
INSERT INTO public.contracts (contract_code, insurance_category, start_date, end_date, contract_cost) VALUES ('A657195', 'mixed', '2000-09-11', '2025-01-10', 7240064);
INSERT INTO public.contracts (contract_code, insurance_category, start_date, end_date, contract_cost) VALUES ('A813903', 'private', '2009-09-29', '2022-06-21', 18750);
INSERT INTO public.contracts (contract_code, insurance_category, start_date, end_date, contract_cost) VALUES ('P487048', 'private', '2014-08-31', '2025-06-27', 35798);
INSERT INTO public.contracts (contract_code, insurance_category, start_date, end_date, contract_cost) VALUES ('P157818', 'professional', '2016-11-10', '2025-11-20', 85198);
INSERT INTO public.contracts (contract_code, insurance_category, start_date, end_date, contract_cost) VALUES ('A980090', 'mixed', '2007-07-27', '2024-03-16', 6063070);
INSERT INTO public.contracts (contract_code, insurance_category, start_date, end_date, contract_cost) VALUES ('A908508', 'professional', '2021-07-26', '2024-12-20', 46404);
INSERT INTO public.contracts (contract_code, insurance_category, start_date, end_date, contract_cost) VALUES ('P049538', 'mixed', '2011-03-10', '2024-05-06', 5172005);
INSERT INTO public.contracts (contract_code, insurance_category, start_date, end_date, contract_cost) VALUES ('P125254', 'mixed', '2014-08-11', '2021-11-10', 6300982);
INSERT INTO public.contracts (contract_code, insurance_category, start_date, end_date, contract_cost) VALUES ('A298941', 'private', '2009-03-01', '2021-07-25', 9295);
INSERT INTO public.contracts (contract_code, insurance_category, start_date, end_date, contract_cost) VALUES ('P591494', 'private', '2004-11-16', '2025-09-21', 97354);
INSERT INTO public.contracts (contract_code, insurance_category, start_date, end_date, contract_cost) VALUES ('A484319', 'mixed', '2021-06-13', '2022-09-27', 2190005);
INSERT INTO public.contracts (contract_code, insurance_category, start_date, end_date, contract_cost) VALUES ('A805674', 'professional', '2006-10-19', '2025-12-18', 97995);
INSERT INTO public.contracts (contract_code, insurance_category, start_date, end_date, contract_cost) VALUES ('A701776', 'professional', '2007-08-03', '2021-07-04', 72125);
INSERT INTO public.contracts (contract_code, insurance_category, start_date, end_date, contract_cost) VALUES ('A313694', 'mixed', '2006-02-05', '2022-08-03', 3963600);
INSERT INTO public.contracts (contract_code, insurance_category, start_date, end_date, contract_cost) VALUES ('P922997', 'professional', '2017-03-04', '2024-08-09', 90869);
INSERT INTO public.contracts (contract_code, insurance_category, start_date, end_date, contract_cost) VALUES ('A013883', 'mixed', '2016-04-04', '2022-12-22', 5002500);
INSERT INTO public.contracts (contract_code, insurance_category, start_date, end_date, contract_cost) VALUES ('P227684', 'mixed', '2017-07-12', '2025-11-28', 1040337);
INSERT INTO public.contracts (contract_code, insurance_category, start_date, end_date, contract_cost) VALUES ('P914992', 'professional', '2016-09-02', '2021-07-08', 11426);
INSERT INTO public.contracts (contract_code, insurance_category, start_date, end_date, contract_cost) VALUES ('A455091', 'mixed', '2002-08-13', '2023-08-22', 4601401);
INSERT INTO public.contracts (contract_code, insurance_category, start_date, end_date, contract_cost) VALUES ('P590699', 'private', '2021-06-10', '2025-11-24', 66034);
INSERT INTO public.contracts (contract_code, insurance_category, start_date, end_date, contract_cost) VALUES ('P884429', 'professional', '2012-10-11', '2023-03-22', 65362);
INSERT INTO public.contracts (contract_code, insurance_category, start_date, end_date, contract_cost) VALUES ('A322497', 'professional', '2012-02-26', '2024-09-16', 29142);
INSERT INTO public.contracts (contract_code, insurance_category, start_date, end_date, contract_cost) VALUES ('P758737', 'professional', '2013-06-04', '2023-06-10', 31174);
INSERT INTO public.contracts (contract_code, insurance_category, start_date, end_date, contract_cost) VALUES ('A830268', 'mixed', '2003-06-11', '2025-04-07', 3601308);
INSERT INTO public.contracts (contract_code, insurance_category, start_date, end_date, contract_cost) VALUES ('P863728', 'professional', '2003-07-30', '2023-11-30', 32563);
INSERT INTO public.contracts (contract_code, insurance_category, start_date, end_date, contract_cost) VALUES ('P988165', 'professional', '2001-01-31', '2023-10-24', 29084);
INSERT INTO public.contracts (contract_code, insurance_category, start_date, end_date, contract_cost) VALUES ('P102628', 'private', '2001-06-24', '2025-05-15', 82357);
INSERT INTO public.contracts (contract_code, insurance_category, start_date, end_date, contract_cost) VALUES ('P568133', 'mixed', '2021-07-30', '2024-08-09', 2087061);
INSERT INTO public.contracts (contract_code, insurance_category, start_date, end_date, contract_cost) VALUES ('A053646', 'mixed', '2008-12-10', '2025-09-16', 4050480);
INSERT INTO public.contracts (contract_code, insurance_category, start_date, end_date, contract_cost) VALUES ('P723792', 'mixed', '2012-01-06', '2025-05-08', 8807073);
INSERT INTO public.contracts (contract_code, insurance_category, start_date, end_date, contract_cost) VALUES ('A356540', 'professional', '2002-03-09', '2024-12-25', 11621);
INSERT INTO public.contracts (contract_code, insurance_category, start_date, end_date, contract_cost) VALUES ('A247579', 'mixed', '2015-03-22', '2024-02-02', 7050082);
INSERT INTO public.contracts (contract_code, insurance_category, start_date, end_date, contract_cost) VALUES ('P891811', 'professional', '2008-03-24', '2024-06-14', 99662);
INSERT INTO public.contracts (contract_code, insurance_category, start_date, end_date, contract_cost) VALUES ('P331897', 'professional', '2018-01-16', '2025-02-20', 27916);
INSERT INTO public.contracts (contract_code, insurance_category, start_date, end_date, contract_cost) VALUES ('A019821', 'mixed', '2020-05-22', '2024-05-18', 3900861);
INSERT INTO public.contracts (contract_code, insurance_category, start_date, end_date, contract_cost) VALUES ('P911823', 'professional', '2004-05-17', '2025-07-03', 56340);
INSERT INTO public.contracts (contract_code, insurance_category, start_date, end_date, contract_cost) VALUES ('A224603', 'private', '2003-07-20', '2024-03-24', 52219);
INSERT INTO public.contracts (contract_code, insurance_category, start_date, end_date, contract_cost) VALUES ('P103573', 'mixed', '2013-02-14', '2023-12-30', 8200668);
INSERT INTO public.contracts (contract_code, insurance_category, start_date, end_date, contract_cost) VALUES ('P029547', 'private', '2002-12-22', '2023-12-27', 45141);
INSERT INTO public.contracts (contract_code, insurance_category, start_date, end_date, contract_cost) VALUES ('A892937', 'professional', '2008-09-15', '2023-01-24', 19945);
INSERT INTO public.contracts (contract_code, insurance_category, start_date, end_date, contract_cost) VALUES ('A625101', 'private', '2014-11-10', '2021-07-03', 34956);
INSERT INTO public.contracts (contract_code, insurance_category, start_date, end_date, contract_cost) VALUES ('P428897', 'professional', '2018-09-12', '2023-08-12', 95605);
INSERT INTO public.contracts (contract_code, insurance_category, start_date, end_date, contract_cost) VALUES ('P401461', 'private', '2016-08-14', '2023-07-10', 63452);
INSERT INTO public.contracts (contract_code, insurance_category, start_date, end_date, contract_cost) VALUES ('A385214', 'mixed', '2007-07-16', '2025-09-08', 7003930);
INSERT INTO public.contracts (contract_code, insurance_category, start_date, end_date, contract_cost) VALUES ('P329398', 'mixed', '2021-06-21', '2022-01-14', 3960071);
INSERT INTO public.vehicles (plate_number, car_license_number, model, color, first_year, current_price, contract_code) VALUES ('3468SV', 'NL112400486B60', 'FH12', 'Hot Pink', 2020, 46755644, 'A087805');
INSERT INTO public.vehicles (plate_number, car_license_number, model, color, first_year, current_price, contract_code) VALUES ('2579UZ', 'NL201102642B81', 'XT', 'Dark tan', 2005, 26209876, 'A975011');
INSERT INTO public.vehicles (plate_number, car_license_number, model, color, first_year, current_price, contract_code) VALUES ('5306MH', 'NL907279990B51', 'Yaris', 'Aqua', 2014, 21974218, 'P599183');
INSERT INTO public.vehicles (plate_number, car_license_number, model, color, first_year, current_price, contract_code) VALUES ('6333IB', 'NL261186271B63', 'Yaris', 'Silver', 2013, 25486598, 'P217418');
INSERT INTO public.vehicles (plate_number, car_license_number, model, color, first_year, current_price, contract_code) VALUES ('0710KF', 'NL286537603B38', 'R620', 'Dark tangerine', 2010, 43999305, 'P270842');
INSERT INTO public.vehicles (plate_number, car_license_number, model, color, first_year, current_price, contract_code) VALUES ('8932YU', 'NL534868379B79', 'R620', 'Rose Taupe', 2011, 39793954, 'P474722');
INSERT INTO public.vehicles (plate_number, car_license_number, model, color, first_year, current_price, contract_code) VALUES ('3945ZZ', 'NL418715106B60', 'Hobby', 'Puce', 2006, 40160156, 'A009542');
INSERT INTO public.vehicles (plate_number, car_license_number, model, color, first_year, current_price, contract_code) VALUES ('3555DD', 'NL354465415B40', 'Hobby', 'Forest green', 2018, 10421543, 'A010481');
INSERT INTO public.vehicles (plate_number, car_license_number, model, color, first_year, current_price, contract_code) VALUES ('9241LU', 'NL054393498B61', 'Hobby', 'Spring bud', 2001, 5064425, 'A330596');
INSERT INTO public.vehicles (plate_number, car_license_number, model, color, first_year, current_price, contract_code) VALUES ('7683KH', 'NL485151414B42', 'R8', 'Turquoise', 2008, 2188026, 'A182593');
INSERT INTO public.vehicles (plate_number, car_license_number, model, color, first_year, current_price, contract_code) VALUES ('1696ZB', 'NL431383325B08', 'R8', 'Ivory', 2009, 27749328, 'A087547');
INSERT INTO public.vehicles (plate_number, car_license_number, model, color, first_year, current_price, contract_code) VALUES ('4663AP', 'NL038919718B24', 'R8', 'Red-violet', 2017, 15977027, 'P323953');
INSERT INTO public.vehicles (plate_number, car_license_number, model, color, first_year, current_price, contract_code) VALUES ('9116FF', 'NL786872467B48', '480XF', 'Sapphire', 2010, 40516899, 'P811636');
INSERT INTO public.vehicles (plate_number, car_license_number, model, color, first_year, current_price, contract_code) VALUES ('1056TQ', 'NL272916684B92', '480XF', 'Rust', 2009, 27966439, 'A258364');
INSERT INTO public.vehicles (plate_number, car_license_number, model, color, first_year, current_price, contract_code) VALUES ('3167ZW', 'NL133241045B84', 'Street Triple', 'Ivory', 2014, 43316483, 'P360972');
INSERT INTO public.vehicles (plate_number, car_license_number, model, color, first_year, current_price, contract_code) VALUES ('0989MY', 'NL586417421B09', 'Impreza', 'Fern green', 2012, 25115780, 'A787634');
INSERT INTO public.vehicles (plate_number, car_license_number, model, color, first_year, current_price, contract_code) VALUES ('7839SP', 'NL644337446B88', 'Impreza', 'Cerise', 1982, 25239990, 'P671261');
INSERT INTO public.vehicles (plate_number, car_license_number, model, color, first_year, current_price, contract_code) VALUES ('8555EY', 'NL906463093B03', '460Euro6', 'Maroon', 2019, 14948902, 'A491880');
INSERT INTO public.vehicles (plate_number, car_license_number, model, color, first_year, current_price, contract_code) VALUES ('0685MD', 'NL247116642B80', '460Euro6', 'Electric indigo', 1989, 42938166, 'P725362');
INSERT INTO public.vehicles (plate_number, car_license_number, model, color, first_year, current_price, contract_code) VALUES ('7774EY', 'NL303852607B12', 'GS Adventure', 'Dark tangerine', 2009, 19341176, 'A647907');
INSERT INTO public.vehicles (plate_number, car_license_number, model, color, first_year, current_price, contract_code) VALUES ('5076DW', 'NL139792271B28', 'i10', 'Puce', 2019, 12126676, 'A888672');
INSERT INTO public.vehicles (plate_number, car_license_number, model, color, first_year, current_price, contract_code) VALUES ('7504GE', 'NL607679615B08', 'i10', 'Denim', 2004, 7433889, 'A250245');
INSERT INTO public.vehicles (plate_number, car_license_number, model, color, first_year, current_price, contract_code) VALUES ('2222CP', 'NL220574243B97', 'i10', 'Office green', 2009, 38773755, 'A611724');
INSERT INTO public.vehicles (plate_number, car_license_number, model, color, first_year, current_price, contract_code) VALUES ('1977PX', 'NL299548821B53', '400ATI', 'Emerald', 2002, 15726473, 'P582518');
INSERT INTO public.vehicles (plate_number, car_license_number, model, color, first_year, current_price, contract_code) VALUES ('3261VV', 'NL788745957B12', '400ATI', 'Moss green', 2016, 4568818, 'A737545');
INSERT INTO public.vehicles (plate_number, car_license_number, model, color, first_year, current_price, contract_code) VALUES ('6331II', 'NL516040985B35', 'Symphony ST', 'Pastel green', 2021, 33854051, 'A650855');
INSERT INTO public.vehicles (plate_number, car_license_number, model, color, first_year, current_price, contract_code) VALUES ('2825FQ', 'NL486575450B73', 'Symphony ST', 'Seashell', 2006, 12548643, 'P247822');
INSERT INTO public.vehicles (plate_number, car_license_number, model, color, first_year, current_price, contract_code) VALUES ('6780LI', 'NL497947061B36', 'Symphony ST', 'Dark spring green', 1993, 30311308, 'A737486');
INSERT INTO public.vehicles (plate_number, car_license_number, model, color, first_year, current_price, contract_code) VALUES ('5077MT', 'NL026960563B81', 'Swift', 'Pastel green', 2005, 31847097, 'P152440');
INSERT INTO public.vehicles (plate_number, car_license_number, model, color, first_year, current_price, contract_code) VALUES ('9969VG', 'NL819311916B12', 'Swift', 'Fuchsia', 2003, 1763123, 'A419286');
INSERT INTO public.vehicles (plate_number, car_license_number, model, color, first_year, current_price, contract_code) VALUES ('3901LA', 'NL845005898B91', '18440', 'Dark goldenrod', 2002, 42038770, 'P962264');
INSERT INTO public.vehicles (plate_number, car_license_number, model, color, first_year, current_price, contract_code) VALUES ('2975YJ', 'NL922794341B07', 'GTS 300', 'Brass', 2014, 3746592, 'A925510');
INSERT INTO public.vehicles (plate_number, car_license_number, model, color, first_year, current_price, contract_code) VALUES ('9166RF', 'NL631499069B87', 'Veyron', 'Silver', 2003, 12640045, 'A282408');
INSERT INTO public.vehicles (plate_number, car_license_number, model, color, first_year, current_price, contract_code) VALUES ('2974EX', 'NL016849042B39', 'Veyron', 'Dark slate gray', 1985, 20522294, 'P951147');
INSERT INTO public.vehicles (plate_number, car_license_number, model, color, first_year, current_price, contract_code) VALUES ('5398ZQ', 'NL926860813B29', 'TGA', 'Flax', 2014, 30686725, 'A569834');
INSERT INTO public.vehicles (plate_number, car_license_number, model, color, first_year, current_price, contract_code) VALUES ('9182EF', 'NL334455660B52', 'PK', 'Sandy brown', 1989, 27455246, 'P252360');
INSERT INTO public.vehicles (plate_number, car_license_number, model, color, first_year, current_price, contract_code) VALUES ('0997PW', 'NL689373438B01', 'Laferrari', 'Peach', 2019, 17325023, 'P449289');
INSERT INTO public.vehicles (plate_number, car_license_number, model, color, first_year, current_price, contract_code) VALUES ('2883SZ', 'NL380082052B69', 'Laferrari', 'Cosmic latte', 2002, 11907727, 'P465068');
INSERT INTO public.vehicles (plate_number, car_license_number, model, color, first_year, current_price, contract_code) VALUES ('2074MO', 'NL993314119B90', 'Laferrari', 'Deep pink', 2004, 48249403, 'A719740');
INSERT INTO public.vehicles (plate_number, car_license_number, model, color, first_year, current_price, contract_code) VALUES ('2566EL', 'NL064925962B07', 'TGX', 'Dark chestnut', 2016, 30006214, 'P774736');
INSERT INTO public.vehicles (plate_number, car_license_number, model, color, first_year, current_price, contract_code) VALUES ('9191ZD', 'NL159788446B54', 'XLR', 'Chartreuse', 2016, 744701, 'P260568');
INSERT INTO public.vehicles (plate_number, car_license_number, model, color, first_year, current_price, contract_code) VALUES ('7566TV', 'NL241785510B06', 'XLR', 'Chartreuse', 2006, 9745289, 'P017333');
INSERT INTO public.vehicles (plate_number, car_license_number, model, color, first_year, current_price, contract_code) VALUES ('2570OR', 'NL192162035B62', 'XLR', 'Tea rose', 2021, 32486537, 'A451737');
INSERT INTO public.vehicles (plate_number, car_license_number, model, color, first_year, current_price, contract_code) VALUES ('5907QH', 'NL659066327B52', 'Corsa', 'Corn', 2015, 2813157, 'P492063');
INSERT INTO public.vehicles (plate_number, car_license_number, model, color, first_year, current_price, contract_code) VALUES ('8902MP', 'NL709231895B57', 'FH12', 'Olivine', 2001, 43212555, 'P069931');
INSERT INTO public.vehicles (plate_number, car_license_number, model, color, first_year, current_price, contract_code) VALUES ('8245RL', 'NL649080054B37', 'XT', 'Burgundy', 2016, 1905437, 'P583759');
INSERT INTO public.vehicles (plate_number, car_license_number, model, color, first_year, current_price, contract_code) VALUES ('4074GV', 'NL872542422B09', 'XT', 'Fern green', 1999, 24532613, 'A941331');
INSERT INTO public.vehicles (plate_number, car_license_number, model, color, first_year, current_price, contract_code) VALUES ('4389WT', 'NL681352951B23', 'XT', 'Mint Green', 2000, 11144034, 'A094850');
INSERT INTO public.vehicles (plate_number, car_license_number, model, color, first_year, current_price, contract_code) VALUES ('1702UQ', 'NL785133610B29', 'Yaris', 'Tan', 2001, 26307821, 'A407701');
INSERT INTO public.vehicles (plate_number, car_license_number, model, color, first_year, current_price, contract_code) VALUES ('8875NL', 'NL728900071B61', 'R620', 'Malachite', 2001, 34076492, 'P209751');
INSERT INTO public.vehicles (plate_number, car_license_number, model, color, first_year, current_price, contract_code) VALUES ('3876AN', 'NL587673236B97', 'R620', 'Falu red', 2015, 23764660, 'A818231');
INSERT INTO public.vehicles (plate_number, car_license_number, model, color, first_year, current_price, contract_code) VALUES ('0551QC', 'NL119876978B23', 'Hobby', 'Deep pink', 1981, 25530374, 'A285146');
INSERT INTO public.vehicles (plate_number, car_license_number, model, color, first_year, current_price, contract_code) VALUES ('4891DC', 'NL092459240B94', 'R8', 'Cobalt', 2009, 15863736, 'P006282');
INSERT INTO public.vehicles (plate_number, car_license_number, model, color, first_year, current_price, contract_code) VALUES ('8126XL', 'NL235943396B99', 'R8', 'Electric lime', 2009, 38367541, 'P286587');
INSERT INTO public.vehicles (plate_number, car_license_number, model, color, first_year, current_price, contract_code) VALUES ('0868HR', 'NL225464833B82', '480XF', 'Dark tangerine', 2013, 44447385, 'P879829');
INSERT INTO public.vehicles (plate_number, car_license_number, model, color, first_year, current_price, contract_code) VALUES ('3569LX', 'NL312882349B45', '480XF', 'Brown', 2009, 45551185, 'A657195');
INSERT INTO public.vehicles (plate_number, car_license_number, model, color, first_year, current_price, contract_code) VALUES ('4214DP', 'NL355575231B44', 'Street Triple', 'Coral', 2008, 8505739, 'A813903');
INSERT INTO public.vehicles (plate_number, car_license_number, model, color, first_year, current_price, contract_code) VALUES ('7781QI', 'NL597871038B88', 'Street Triple', 'Cinnabar', 2001, 2897790, 'P487048');
INSERT INTO public.vehicles (plate_number, car_license_number, model, color, first_year, current_price, contract_code) VALUES ('6820TG', 'NL063574725B72', 'Street Triple', 'Carrot orange', 2018, 11618574, 'P157818');
INSERT INTO public.vehicles (plate_number, car_license_number, model, color, first_year, current_price, contract_code) VALUES ('9282AC', 'NL481412616B60', 'Impreza', 'Turquoise', 2010, 38722460, 'A980090');
INSERT INTO public.vehicles (plate_number, car_license_number, model, color, first_year, current_price, contract_code) VALUES ('9876RO', 'NL375295669B76', '460Euro6', 'Mauve Taupe', 2000, 10856786, 'A908508');
INSERT INTO public.vehicles (plate_number, car_license_number, model, color, first_year, current_price, contract_code) VALUES ('4992GY', 'NL980785488B10', 'GS Adventure', 'Azure', 2011, 24373277, 'P049538');
INSERT INTO public.vehicles (plate_number, car_license_number, model, color, first_year, current_price, contract_code) VALUES ('1235WW', 'NL396411321B99', 'GS Adventure', 'Red-violet', 2015, 1258191, 'P125254');
INSERT INTO public.vehicles (plate_number, car_license_number, model, color, first_year, current_price, contract_code) VALUES ('5471FO', 'NL845511681B65', 'GS Adventure', 'Chestnut', 2013, 33554263, 'A298941');
INSERT INTO public.vehicles (plate_number, car_license_number, model, color, first_year, current_price, contract_code) VALUES ('1123OA', 'NL413368994B07', 'i10', 'Dodger blue', 2016, 35286525, 'P591494');
INSERT INTO public.vehicles (plate_number, car_license_number, model, color, first_year, current_price, contract_code) VALUES ('1512ER', 'NL146972012B88', 'i10', 'Dark salmon', 2020, 12715604, 'A484319');
INSERT INTO public.vehicles (plate_number, car_license_number, model, color, first_year, current_price, contract_code) VALUES ('6118UJ', 'NL673146284B71', '400ATI', 'Sea Green', 2012, 19926339, 'A805674');
INSERT INTO public.vehicles (plate_number, car_license_number, model, color, first_year, current_price, contract_code) VALUES ('3486OE', 'NL953420267B21', 'Symphony ST', 'Burnt orange', 2008, 39657580, 'A701776');
INSERT INTO public.vehicles (plate_number, car_license_number, model, color, first_year, current_price, contract_code) VALUES ('5005PB', 'NL666843543B43', 'Symphony ST', 'Pear', 2013, 44991579, 'A313694');
INSERT INTO public.vehicles (plate_number, car_license_number, model, color, first_year, current_price, contract_code) VALUES ('0951GD', 'NL866145131B66', 'Swift', 'Navy Blue', 2020, 30351725, 'P922997');
INSERT INTO public.vehicles (plate_number, car_license_number, model, color, first_year, current_price, contract_code) VALUES ('7739LW', 'NL149332682B09', '18440', 'Moss green', 1990, 15197438, 'A013883');
INSERT INTO public.vehicles (plate_number, car_license_number, model, color, first_year, current_price, contract_code) VALUES ('5172UD', 'NL547458608B26', 'GTS 300', 'Mauve', 1994, 2936679, 'P227684');
INSERT INTO public.vehicles (plate_number, car_license_number, model, color, first_year, current_price, contract_code) VALUES ('4161PC', 'NL414735247B28', 'GTS 300', 'Denim', 2007, 6191485, 'P914992');
INSERT INTO public.vehicles (plate_number, car_license_number, model, color, first_year, current_price, contract_code) VALUES ('8865HH', 'NL011519617B50', 'Veyron', 'Sandy brown', 2019, 33895980, 'A455091');
INSERT INTO public.vehicles (plate_number, car_license_number, model, color, first_year, current_price, contract_code) VALUES ('0260IO', 'NL826863749B41', 'Veyron', 'Russet', 2008, 47050362, 'P590699');
INSERT INTO public.vehicles (plate_number, car_license_number, model, color, first_year, current_price, contract_code) VALUES ('3466YY', 'NL764523761B62', 'Veyron', 'Rich magenta', 2002, 1271371, 'P884429');
INSERT INTO public.vehicles (plate_number, car_license_number, model, color, first_year, current_price, contract_code) VALUES ('6680NB', 'NL538682005B14', 'TGA', 'Black', 2016, 49386682, 'A322497');
INSERT INTO public.vehicles (plate_number, car_license_number, model, color, first_year, current_price, contract_code) VALUES ('4742SO', 'NL331800774B03', 'PK', 'Deep magenta', 2019, 16896780, 'P758737');
INSERT INTO public.vehicles (plate_number, car_license_number, model, color, first_year, current_price, contract_code) VALUES ('4615GO', 'NL157896127B43', 'PK', 'Blue', 2012, 30876560, 'A830268');
INSERT INTO public.vehicles (plate_number, car_license_number, model, color, first_year, current_price, contract_code) VALUES ('3197YK', 'NL899879952B09', 'PK', 'Dodger blue', 2004, 14285781, 'P863728');
INSERT INTO public.vehicles (plate_number, car_license_number, model, color, first_year, current_price, contract_code) VALUES ('5403KR', 'NL829418278B83', 'Laferrari', 'Olive Drab', 2006, 38202746, 'P988165');
INSERT INTO public.vehicles (plate_number, car_license_number, model, color, first_year, current_price, contract_code) VALUES ('7916NT', 'NL113729646B16', 'Laferrari', 'Khaki', 2012, 17835437, 'P102628');
INSERT INTO public.vehicles (plate_number, car_license_number, model, color, first_year, current_price, contract_code) VALUES ('1728BO', 'NL501748571B29', 'TGX', 'Persian pink', 2005, 8826211, 'P568133');
INSERT INTO public.vehicles (plate_number, car_license_number, model, color, first_year, current_price, contract_code) VALUES ('5889HS', 'NL466360463B85', 'XLR', 'Robin egg blue', 2009, 17160732, 'A053646');
INSERT INTO public.vehicles (plate_number, car_license_number, model, color, first_year, current_price, contract_code) VALUES ('1335AL', 'NL072924501B11', 'XLR', 'Black', 2013, 35077104, 'P723792');
INSERT INTO public.vehicles (plate_number, car_license_number, model, color, first_year, current_price, contract_code) VALUES ('8245LP', 'NL275012580B48', 'Corsa', 'Salmon', 2001, 36397691, 'A356540');
INSERT INTO public.vehicles (plate_number, car_license_number, model, color, first_year, current_price, contract_code) VALUES ('6657DL', 'NL782982827B08', 'FH12', 'Ruby', 2003, 12368351, 'A247579');
INSERT INTO public.vehicles (plate_number, car_license_number, model, color, first_year, current_price, contract_code) VALUES ('8484QR', 'NL322283860B73', 'FH12', 'Sapphire', 2001, 42952841, 'P891811');
INSERT INTO public.vehicles (plate_number, car_license_number, model, color, first_year, current_price, contract_code) VALUES ('2812HJ', 'NL022504152B36', 'XT', 'Hot Magenta', 2002, 33104811, 'P331897');
INSERT INTO public.vehicles (plate_number, car_license_number, model, color, first_year, current_price, contract_code) VALUES ('8785NI', 'NL592771594B01', 'Yaris', 'Persian indigo', 2000, 16533574, 'A019821');
INSERT INTO public.vehicles (plate_number, car_license_number, model, color, first_year, current_price, contract_code) VALUES ('0505DR', 'NL946410254B98', 'Yaris', 'Dark khaki', 2001, 32270114, 'P911823');
INSERT INTO public.vehicles (plate_number, car_license_number, model, color, first_year, current_price, contract_code) VALUES ('7776LE', 'NL403144097B29', 'Yaris', 'Pastel pink', 2013, 22536396, 'A224603');
INSERT INTO public.vehicles (plate_number, car_license_number, model, color, first_year, current_price, contract_code) VALUES ('6454SA', 'NL746270582B44', 'R620', 'Dark green', 2005, 37200606, 'P103573');
INSERT INTO public.vehicles (plate_number, car_license_number, model, color, first_year, current_price, contract_code) VALUES ('6718FE', 'NL438240596B64', 'Hobby', 'Red', 2002, 41077525, 'P029547');
INSERT INTO public.vehicles (plate_number, car_license_number, model, color, first_year, current_price, contract_code) VALUES ('8941GJ', 'NL750521626B50', 'R8', 'Dodger blue', 2014, 42782929, 'A892937');
INSERT INTO public.vehicles (plate_number, car_license_number, model, color, first_year, current_price, contract_code) VALUES ('6464OO', 'NL094880329B62', 'R8', 'Salmon', 2014, 49613058, 'A625101');
INSERT INTO public.vehicles (plate_number, car_license_number, model, color, first_year, current_price, contract_code) VALUES ('5989GH', 'NL624935185B89', '480XF', 'Green', 2011, 31359686, 'P428897');
INSERT INTO public.vehicles (plate_number, car_license_number, model, color, first_year, current_price, contract_code) VALUES ('2702ZX', 'NL821387469B33', 'Street Triple', 'Crimson', 2003, 16323119, 'P401461');
INSERT INTO public.vehicles (plate_number, car_license_number, model, color, first_year, current_price, contract_code) VALUES ('6327RB', 'NL704039173B00', 'Impreza', 'Brass', 2001, 27905052, 'A385214');
INSERT INTO public.vehicles (plate_number, car_license_number, model, color, first_year, current_price, contract_code) VALUES ('9700HP', 'NL268300866B93', 'Impreza', 'Olivine', 2003, 1957961, 'P329398');
INSERT INTO public.drivers_info (first_name, last_name, birth_date, street, zip_code, city, country, gender, license_number) VALUES ('Diego', 'Stevens', '1986-02-09', '49 Crookston Lane', '49154', 'Paris', 'Spain', 'male', 4585079);
INSERT INTO public.drivers_info (first_name, last_name, birth_date, street, zip_code, city, country, gender, license_number) VALUES ('Giel', 'Watson', '2000-11-15', '72 Paddington Lane', '37164', 'Paris', 'Panamas', 'female', 3654485);
INSERT INTO public.drivers_info (first_name, last_name, birth_date, street, zip_code, city, country, gender, license_number) VALUES ('Linnea', 'Morgan', '1982-06-09', '25 Freeman St', '72604', 'Athens', 'Morocco', 'female', 7973487);
INSERT INTO public.drivers_info (first_name, last_name, birth_date, street, zip_code, city, country, gender, license_number) VALUES ('Isaac', 'Van Toorenbeek', '1943-02-03', '7624 Stony Field Rd', '38492', 'Paris', 'Lebanon', 'male', 820081);
INSERT INTO public.drivers_info (first_name, last_name, birth_date, street, zip_code, city, country, gender, license_number) VALUES ('Marty', 'Poole', '1997-01-10', '2 N York Dr', '85766', 'Lisbon', 'Panamas', 'female', 6424331);
INSERT INTO public.drivers_info (first_name, last_name, birth_date, street, zip_code, city, country, gender, license_number) VALUES ('Al', 'Guyer', '1976-10-28', '14 Quorum Dr', '68949', 'Mexico City', 'Spain', 'female', 9025050);
INSERT INTO public.drivers_info (first_name, last_name, birth_date, street, zip_code, city, country, gender, license_number) VALUES ('Lotte', 'Crocetti', '1979-06-18', '1323 Lindstrom Rd', '14459', 'Rabat', 'France', 'female', 2959790);
INSERT INTO public.drivers_info (first_name, last_name, birth_date, street, zip_code, city, country, gender, license_number) VALUES ('Chloe', 'Weaver', '1984-04-17', '5 Everglades Way', '04506', 'Beirut', 'Czech Republic', 'female', 9248360);
INSERT INTO public.drivers_info (first_name, last_name, birth_date, street, zip_code, city, country, gender, license_number) VALUES ('Alejandro', 'Daley', '2000-05-29', '4 Willingdon Ave', '45220', 'Athens', 'Libya', 'male', 5272823);
INSERT INTO public.drivers_info (first_name, last_name, birth_date, street, zip_code, city, country, gender, license_number) VALUES ('Alex', 'Braconi', '1970-10-27', '245 Braemar Drive', '95774', 'Beirut', 'Belgium', 'female', 3492248);
INSERT INTO public.drivers_info (first_name, last_name, birth_date, street, zip_code, city, country, gender, license_number) VALUES ('Matthijs', 'Williams', '1977-06-13', '5 Highland Drive', '97517', 'Brussels', 'Australia', 'male', 8006023);
INSERT INTO public.drivers_info (first_name, last_name, birth_date, street, zip_code, city, country, gender, license_number) VALUES ('Ed', 'Weaver', '1981-09-23', '4048 Corporate Drive', '01787', 'Prague', 'Czech Republic', 'male', 4937416);
INSERT INTO public.drivers_info (first_name, last_name, birth_date, street, zip_code, city, country, gender, license_number) VALUES ('Edwina', 'Stewart', '1997-11-28', '7288 Roan Lane', '44897', 'Lisbon', 'Portugal', 'male', 5076663);
INSERT INTO public.drivers_info (first_name, last_name, birth_date, street, zip_code, city, country, gender, license_number) VALUES ('Francisco', 'Gildersleeve', '1970-11-23', '235 Northpark Blvd', '35345', 'Lisbon', 'Lebanon', 'male', 8124154);
INSERT INTO public.drivers_info (first_name, last_name, birth_date, street, zip_code, city, country, gender, license_number) VALUES ('Ike', 'Beckbau', '1993-05-03', '29 Fox Squirrel Lane', '62026', 'Brussels', 'Lebanon', 'male', 8722023);
INSERT INTO public.drivers_info (first_name, last_name, birth_date, street, zip_code, city, country, gender, license_number) VALUES ('Jo', 'Stockton', '1950-05-19', '16 Buckthorn Lane', '22457', 'Nicosia', 'Portugal', 'male', 6746299);
INSERT INTO public.drivers_info (first_name, last_name, birth_date, street, zip_code, city, country, gender, license_number) VALUES ('Jane', 'Griffioen', '1994-11-08', '43 Quorum Dr', '37892', 'Mexico City', 'Panamas', 'male', 9585809);
INSERT INTO public.drivers_info (first_name, last_name, birth_date, street, zip_code, city, country, gender, license_number) VALUES ('Eleanor', 'Linhart', '1945-07-09', '524 Freeman St', '53587', 'Beirut', 'Panamas', 'female', 1819588);
INSERT INTO public.drivers_info (first_name, last_name, birth_date, street, zip_code, city, country, gender, license_number) VALUES ('Erik', 'Chapman', '1949-10-16', '4 S. Maryland Ave', '42825', 'Prague', 'Greece', 'male', 7371415);
INSERT INTO public.drivers_info (first_name, last_name, birth_date, street, zip_code, city, country, gender, license_number) VALUES ('Pip', 'Visentini', '1989-06-26', '376 Buckthorn Lane', '49945', 'Brussels', 'Libya', 'female', 2415612);
INSERT INTO public.drivers_info (first_name, last_name, birth_date, street, zip_code, city, country, gender, license_number) VALUES ('Daan', 'Pensec', '1956-10-09', '0485 Amadonna Road', '92380', 'Athens', 'France', 'female', 9546096);
INSERT INTO public.drivers_info (first_name, last_name, birth_date, street, zip_code, city, country, gender, license_number) VALUES ('Sydney', 'Whitehurst', '1993-08-16', '1 Scrutton Street', '84281', 'Mexico City', 'Cyprus', 'male', 6628274);
INSERT INTO public.drivers_info (first_name, last_name, birth_date, street, zip_code, city, country, gender, license_number) VALUES ('Teun', 'Gibson', '1944-12-11', '1 Alder Road', '54000', 'Prague', 'Lebanon', 'female', 6245525);
INSERT INTO public.drivers_info (first_name, last_name, birth_date, street, zip_code, city, country, gender, license_number) VALUES ('Maja', 'Reames', '1962-02-07', '7262 Wellington Dr.', '08172', 'Sydney', 'Panamas', 'male', 9938445);
INSERT INTO public.drivers_info (first_name, last_name, birth_date, street, zip_code, city, country, gender, license_number) VALUES ('Theo', 'Dittrich', '1998-02-12', '0247 Shawnee Ct', '92979', 'Beirut', 'Portugal', 'female', 4882958);
INSERT INTO public.drivers_info (first_name, last_name, birth_date, street, zip_code, city, country, gender, license_number) VALUES ('Sergio', 'Manson', '2000-08-15', '12 Lindstrom Rd', '10696', 'Tripoli', 'France', 'male', 2490645);
INSERT INTO public.drivers_info (first_name, last_name, birth_date, street, zip_code, city, country, gender, license_number) VALUES ('Patricia', 'Orcutt', '1989-06-29', '90 Willowcrest', '29056', 'Damascus', 'Portugal', 'female', 5020179);
INSERT INTO public.drivers_info (first_name, last_name, birth_date, street, zip_code, city, country, gender, license_number) VALUES ('Jose', 'Wood', '1990-12-01', '764 Lindstrom Rd', '99277', 'Rabat', 'Libya', 'male', 643774);
INSERT INTO public.drivers_info (first_name, last_name, birth_date, street, zip_code, city, country, gender, license_number) VALUES ('Agnieszka', 'Griffith', '1968-07-28', '21 Sulgrave Ave', '09265', 'Paris', 'Panamas', 'male', 5432637);
INSERT INTO public.drivers_info (first_name, last_name, birth_date, street, zip_code, city, country, gender, license_number) VALUES ('Shermie', 'Wilson', '1947-03-30', '9 E. Plumb Lane', '34896', 'Athens', 'Libya', 'male', 8236767);
INSERT INTO public.drivers_info (first_name, last_name, birth_date, street, zip_code, city, country, gender, license_number) VALUES ('Marieke', 'Stockton', '1981-02-07', '880 Highland Drive', '28032', 'Paris', 'Lebanon', 'male', 2594716);
INSERT INTO public.drivers_info (first_name, last_name, birth_date, street, zip_code, city, country, gender, license_number) VALUES ('Megan', 'Pierce', '1969-04-03', '39 Station Street', '81704', 'Athens', 'Australia', 'male', 379687);
INSERT INTO public.drivers_info (first_name, last_name, birth_date, street, zip_code, city, country, gender, license_number) VALUES ('Ivan', 'Pierce', '1961-09-28', '0281 Grant Avenue', '41827', 'Beirut', 'Panamas', 'female', 3978726);
INSERT INTO public.drivers_info (first_name, last_name, birth_date, street, zip_code, city, country, gender, license_number) VALUES ('Peg', 'Ladaille', '1964-08-22', '6 Floribunda Ave', '27980', 'Lisbon', 'Belgium', 'female', 6050192);
INSERT INTO public.drivers_info (first_name, last_name, birth_date, street, zip_code, city, country, gender, license_number) VALUES ('Luis', 'Reames', '1980-09-01', '9933 Melrose Ave', '10778', 'Tripoli', 'Cyprus', 'female', 8694925);
INSERT INTO public.drivers_info (first_name, last_name, birth_date, street, zip_code, city, country, gender, license_number) VALUES ('Sylvia', 'Gibson', '1951-08-19', '4 Braemar Drive', '58467', 'Beirut', 'France', 'male', 980680);
INSERT INTO public.drivers_info (first_name, last_name, birth_date, street, zip_code, city, country, gender, license_number) VALUES ('Emily', 'White', '1995-01-07', '2040 University ave.', '95008', 'Lisbon', 'Australia', 'male', 6563790);
INSERT INTO public.drivers_info (first_name, last_name, birth_date, street, zip_code, city, country, gender, license_number) VALUES ('Peg', 'Petrzelka', '1987-07-14', '7433 J. Carcione Way', '88091', 'Panamas City', 'Spain', 'male', 6605852);
INSERT INTO public.drivers (contract_code, license_number) VALUES ('A087805', 7371415);
INSERT INTO public.drivers (contract_code, license_number) VALUES ('A975011', 9546096);
INSERT INTO public.drivers (contract_code, license_number) VALUES ('P599183', 6628274);
INSERT INTO public.drivers (contract_code, license_number) VALUES ('P217418', 5020179);
INSERT INTO public.drivers (contract_code, license_number) VALUES ('P270842', 379687);
INSERT INTO public.drivers (contract_code, license_number) VALUES ('A087805', 4585079);
INSERT INTO public.drivers (contract_code, license_number) VALUES ('A975011', 3654485);
INSERT INTO public.drivers (contract_code, license_number) VALUES ('P599183', 7973487);
INSERT INTO public.drivers (contract_code, license_number) VALUES ('P217418', 820081);
INSERT INTO public.drivers (contract_code, license_number) VALUES ('P270842', 6424331);
INSERT INTO public.drivers (contract_code, license_number) VALUES ('P474722', 9025050);
INSERT INTO public.drivers (contract_code, license_number) VALUES ('A009542', 2959790);
INSERT INTO public.drivers (contract_code, license_number) VALUES ('A010481', 9248360);
INSERT INTO public.drivers (contract_code, license_number) VALUES ('A330596', 5272823);
INSERT INTO public.drivers (contract_code, license_number) VALUES ('A182593', 3492248);
INSERT INTO public.drivers (contract_code, license_number) VALUES ('A087547', 8006023);
INSERT INTO public.drivers (contract_code, license_number) VALUES ('P323953', 4937416);
INSERT INTO public.drivers (contract_code, license_number) VALUES ('P811636', 5076663);
INSERT INTO public.drivers (contract_code, license_number) VALUES ('A258364', 8124154);
INSERT INTO public.drivers (contract_code, license_number) VALUES ('P360972', 6245525);
INSERT INTO public.drivers (contract_code, license_number) VALUES ('A787634', 5020179);
INSERT INTO public.drivers (contract_code, license_number) VALUES ('P671261', 8236767);
INSERT INTO public.drivers (contract_code, license_number) VALUES ('A491880', 6605852);
INSERT INTO public.drivers (contract_code, license_number) VALUES ('P725362', 6245525);
INSERT INTO public.drivers (contract_code, license_number) VALUES ('A647907', 643774);
INSERT INTO public.drivers (contract_code, license_number) VALUES ('A888672', 980680);
INSERT INTO public.drivers (contract_code, license_number) VALUES ('A250245', 1819588);
INSERT INTO public.drivers (contract_code, license_number) VALUES ('A611724', 2490645);
INSERT INTO public.drivers (contract_code, license_number) VALUES ('P582518', 3978726);
INSERT INTO public.drivers (contract_code, license_number) VALUES ('A737545', 6563790);
INSERT INTO public.drivers (contract_code, license_number) VALUES ('A650855', 1819588);
INSERT INTO public.drivers (contract_code, license_number) VALUES ('P247822', 2415612);
INSERT INTO public.drivers (contract_code, license_number) VALUES ('A737486', 6628274);
INSERT INTO public.drivers (contract_code, license_number) VALUES ('P152440', 5432637);
INSERT INTO public.drivers (contract_code, license_number) VALUES ('A419286', 8236767);
INSERT INTO public.drivers (contract_code, license_number) VALUES ('P962264', 8694925);
INSERT INTO public.drivers (contract_code, license_number) VALUES ('A925510', 6605852);
INSERT INTO public.drivers (contract_code, license_number) VALUES ('A282408', 9585809);
INSERT INTO public.drivers (contract_code, license_number) VALUES ('P951147', 6245525);
INSERT INTO public.drivers (contract_code, license_number) VALUES ('A657195', 3492248);
INSERT INTO public.drivers (contract_code, license_number) VALUES ('P428897', 8006023);
INSERT INTO public.drivers (contract_code, license_number) VALUES ('P671261', 4937416);
INSERT INTO public.drivers (contract_code, license_number) VALUES ('A650855', 5076663);
INSERT INTO public.drivers (contract_code, license_number) VALUES ('P125254', 8124154);
INSERT INTO public.drivers (contract_code, license_number) VALUES ('A818231', 6245525);
INSERT INTO public.drivers (contract_code, license_number) VALUES ('A484319', 5020179);
INSERT INTO public.drivers (contract_code, license_number) VALUES ('A569834', 9938445);
INSERT INTO public.drivers (contract_code, license_number) VALUES ('P252360', 2594716);
INSERT INTO public.drivers (contract_code, license_number) VALUES ('P449289', 6746299);
INSERT INTO public.drivers (contract_code, license_number) VALUES ('P465068', 4882958);
INSERT INTO public.drivers (contract_code, license_number) VALUES ('A719740', 6050192);
INSERT INTO public.drivers (contract_code, license_number) VALUES ('P774736', 980680);
INSERT INTO public.drivers (contract_code, license_number) VALUES ('P260568', 6746299);
INSERT INTO public.drivers (contract_code, license_number) VALUES ('P017333', 6628274);
INSERT INTO public.drivers (contract_code, license_number) VALUES ('A451737', 2594716);
INSERT INTO public.drivers (contract_code, license_number) VALUES ('P492063', 6050192);
INSERT INTO public.drivers (contract_code, license_number) VALUES ('P069931', 6605852);
INSERT INTO public.drivers (contract_code, license_number) VALUES ('P583759', 7371415);
INSERT INTO public.drivers (contract_code, license_number) VALUES ('A941331', 643774);
INSERT INTO public.drivers (contract_code, license_number) VALUES ('A094850', 5432637);
INSERT INTO public.drivers (contract_code, license_number) VALUES ('A407701', 379687);
INSERT INTO public.drivers (contract_code, license_number) VALUES ('P209751', 1819588);
INSERT INTO public.drivers (contract_code, license_number) VALUES ('A818231', 2415612);
INSERT INTO public.drivers (contract_code, license_number) VALUES ('A285146', 643774);
INSERT INTO public.drivers (contract_code, license_number) VALUES ('P006282', 6605852);
INSERT INTO public.drivers (contract_code, license_number) VALUES ('P286587', 6245525);
INSERT INTO public.drivers (contract_code, license_number) VALUES ('P879829', 4882958);
INSERT INTO public.drivers (contract_code, license_number) VALUES ('A657195', 6050192);
INSERT INTO public.drivers (contract_code, license_number) VALUES ('A813903', 6563790);
INSERT INTO public.drivers (contract_code, license_number) VALUES ('P487048', 1819588);
INSERT INTO public.drivers (contract_code, license_number) VALUES ('P157818', 5020179);
INSERT INTO public.drivers (contract_code, license_number) VALUES ('A980090', 379687);
INSERT INTO public.drivers (contract_code, license_number) VALUES ('A908508', 8722023);
INSERT INTO public.drivers (contract_code, license_number) VALUES ('P049538', 6245525);
INSERT INTO public.drivers (contract_code, license_number) VALUES ('P125254', 8236767);
INSERT INTO public.drivers (contract_code, license_number) VALUES ('A298941', 379687);
INSERT INTO public.drivers (contract_code, license_number) VALUES ('P591494', 8722023);
INSERT INTO public.drivers (contract_code, license_number) VALUES ('A484319', 7371415);
INSERT INTO public.drivers (contract_code, license_number) VALUES ('A805674', 9938445);
INSERT INTO public.drivers (contract_code, license_number) VALUES ('A701776', 3978726);
INSERT INTO public.drivers (contract_code, license_number) VALUES ('A313694', 980680);
INSERT INTO public.drivers (contract_code, license_number) VALUES ('P922997', 2415612);
INSERT INTO public.drivers (contract_code, license_number) VALUES ('A013883', 5432637);
INSERT INTO public.drivers (contract_code, license_number) VALUES ('P227684', 980680);
INSERT INTO public.drivers (contract_code, license_number) VALUES ('P914992', 2415612);
INSERT INTO public.drivers (contract_code, license_number) VALUES ('A455091', 643774);
INSERT INTO public.drivers (contract_code, license_number) VALUES ('P590699', 6605852);
INSERT INTO public.drivers (contract_code, license_number) VALUES ('P884429', 7371415);
INSERT INTO public.drivers (contract_code, license_number) VALUES ('A322497', 6245525);
INSERT INTO public.drivers (contract_code, license_number) VALUES ('P758737', 9938445);
INSERT INTO public.drivers (contract_code, license_number) VALUES ('A830268', 643774);
INSERT INTO public.drivers (contract_code, license_number) VALUES ('P863728', 3978726);
INSERT INTO public.drivers (contract_code, license_number) VALUES ('P988165', 7371415);
INSERT INTO public.drivers (contract_code, license_number) VALUES ('P102628', 6245525);
INSERT INTO public.drivers (contract_code, license_number) VALUES ('P568133', 9938445);
INSERT INTO public.drivers (contract_code, license_number) VALUES ('A053646', 5020179);
INSERT INTO public.drivers (contract_code, license_number) VALUES ('P723792', 6050192);
INSERT INTO public.drivers (contract_code, license_number) VALUES ('P891811', 6605852);
INSERT INTO public.drivers (contract_code, license_number) VALUES ('A247579', 6245525);
INSERT INTO public.drivers (contract_code, license_number) VALUES ('P891811', 9938445);
INSERT INTO public.drivers (contract_code, license_number) VALUES ('P331897', 2594716);
INSERT INTO public.drivers (contract_code, license_number) VALUES ('A019821', 8722023);
INSERT INTO public.drivers (contract_code, license_number) VALUES ('P911823', 9546096);
INSERT INTO public.drivers (contract_code, license_number) VALUES ('A224603', 4882958);
INSERT INTO public.drivers (contract_code, license_number) VALUES ('P103573', 2594716);
INSERT INTO public.drivers (contract_code, license_number) VALUES ('P029547', 6563790);
INSERT INTO public.drivers (contract_code, license_number) VALUES ('A892937', 8722023);
INSERT INTO public.drivers (contract_code, license_number) VALUES ('A625101', 7371415);
INSERT INTO public.drivers (contract_code, license_number) VALUES ('P428897', 9546096);
INSERT INTO public.drivers (contract_code, license_number) VALUES ('P401461', 6628274);
INSERT INTO public.drivers (contract_code, license_number) VALUES ('A385214', 5020179);
INSERT INTO public.drivers (contract_code, license_number) VALUES ('P329398', 379687);
INSERT INTO public.drivers (contract_code, license_number) VALUES ('P329398', 7371415);
INSERT INTO public.drivers (contract_code, license_number) VALUES ('P329398', 6245525);
INSERT INTO public.drivers (contract_code, license_number) VALUES ('P103573', 9938445);
INSERT INTO public.drivers (contract_code, license_number) VALUES ('A224603', 5020179);
INSERT INTO public.drivers (contract_code, license_number) VALUES ('A224603', 6050192);
INSERT INTO public.drivers (contract_code, license_number) VALUES ('A356540', 6605852);
INSERT INTO public.drivers (contract_code, license_number) VALUES ('P591494', 6245525);
INSERT INTO public.drivers (contract_code, license_number) VALUES ('P591494', 9938445);
INSERT INTO public.drivers (contract_code, license_number) VALUES ('P157818', 2594716);
INSERT INTO public.drivers (contract_code, license_number) VALUES ('P157818', 8722023);
INSERT INTO public.drivers (contract_code, license_number) VALUES ('P323953', 9546096);
INSERT INTO public.drivers (contract_code, license_number) VALUES ('P323953', 4882958);
INSERT INTO public.drivers (contract_code, license_number) VALUES ('P323953', 2594716);
INSERT INTO public.drivers (contract_code, license_number) VALUES ('P323953', 6563790);
INSERT INTO public.drivers (contract_code, license_number) VALUES ('P323953', 8722023);
INSERT INTO public.clients (license_number, contract_code, "isDriver") VALUES (7307866, 'A087805', false);
INSERT INTO public.clients (license_number, contract_code, "isDriver") VALUES (1373024, 'A975011', false);
INSERT INTO public.clients (license_number, contract_code, "isDriver") VALUES (3657661, 'P599183', true);
INSERT INTO public.clients (license_number, contract_code, "isDriver") VALUES (3657661, 'P217418', false);
INSERT INTO public.clients (license_number, contract_code, "isDriver") VALUES (3657661, 'P270842', false);
INSERT INTO public.clients (license_number, contract_code, "isDriver") VALUES (8288372, 'P474722', true);
INSERT INTO public.clients (license_number, contract_code, "isDriver") VALUES (8288372, 'A009542', false);
INSERT INTO public.clients (license_number, contract_code, "isDriver") VALUES (1819881, 'A010481', true);
INSERT INTO public.clients (license_number, contract_code, "isDriver") VALUES (1074911, 'A330596', false);
INSERT INTO public.clients (license_number, contract_code, "isDriver") VALUES (1074911, 'A182593', true);
INSERT INTO public.clients (license_number, contract_code, "isDriver") VALUES (1074911, 'A087547', false);
INSERT INTO public.clients (license_number, contract_code, "isDriver") VALUES (4449537, 'P323953', false);
INSERT INTO public.clients (license_number, contract_code, "isDriver") VALUES (4449537, 'P811636', false);
INSERT INTO public.clients (license_number, contract_code, "isDriver") VALUES (4449537, 'A258364', false);
INSERT INTO public.clients (license_number, contract_code, "isDriver") VALUES (9170944, 'P360972', true);
INSERT INTO public.clients (license_number, contract_code, "isDriver") VALUES (9170944, 'A787634', true);
INSERT INTO public.clients (license_number, contract_code, "isDriver") VALUES (9640655, 'P671261', true);
INSERT INTO public.clients (license_number, contract_code, "isDriver") VALUES (9640655, 'A491880', false);
INSERT INTO public.clients (license_number, contract_code, "isDriver") VALUES (9640655, 'P725362', true);
INSERT INTO public.clients (license_number, contract_code, "isDriver") VALUES (3096863, 'A647907', false);
INSERT INTO public.clients (license_number, contract_code, "isDriver") VALUES (1422054, 'A888672', false);
INSERT INTO public.clients (license_number, contract_code, "isDriver") VALUES (9400667, 'A250245', false);
INSERT INTO public.clients (license_number, contract_code, "isDriver") VALUES (6157195, 'A611724', true);
INSERT INTO public.clients (license_number, contract_code, "isDriver") VALUES (9090696, 'P582518', true);
INSERT INTO public.clients (license_number, contract_code, "isDriver") VALUES (9090696, 'A737545', true);
INSERT INTO public.clients (license_number, contract_code, "isDriver") VALUES (9090696, 'A650855', false);
INSERT INTO public.clients (license_number, contract_code, "isDriver") VALUES (1556537, 'P247822', false);
INSERT INTO public.clients (license_number, contract_code, "isDriver") VALUES (1556537, 'A737486', false);
INSERT INTO public.clients (license_number, contract_code, "isDriver") VALUES (1556537, 'P152440', false);
INSERT INTO public.clients (license_number, contract_code, "isDriver") VALUES (4937228, 'A419286', false);
INSERT INTO public.clients (license_number, contract_code, "isDriver") VALUES (4937228, 'P962264', true);
INSERT INTO public.clients (license_number, contract_code, "isDriver") VALUES (3575306, 'A925510', true);
INSERT INTO public.clients (license_number, contract_code, "isDriver") VALUES (6186696, 'A282408', false);
INSERT INTO public.clients (license_number, contract_code, "isDriver") VALUES (6186696, 'P951147', false);
INSERT INTO public.clients (license_number, contract_code, "isDriver") VALUES (5635070, 'A569834', true);
INSERT INTO public.clients (license_number, contract_code, "isDriver") VALUES (5635070, 'P252360', true);
INSERT INTO public.clients (license_number, contract_code, "isDriver") VALUES (5635070, 'P449289', false);
INSERT INTO public.clients (license_number, contract_code, "isDriver") VALUES (6961770, 'P465068', true);
INSERT INTO public.clients (license_number, contract_code, "isDriver") VALUES (6961770, 'A719740', false);
INSERT INTO public.clients (license_number, contract_code, "isDriver") VALUES (7973265, 'P774736', true);
INSERT INTO public.clients (license_number, contract_code, "isDriver") VALUES (7973265, 'P260568', false);
INSERT INTO public.clients (license_number, contract_code, "isDriver") VALUES (7973265, 'P017333', false);
INSERT INTO public.clients (license_number, contract_code, "isDriver") VALUES (6213694, 'A451737', false);
INSERT INTO public.clients (license_number, contract_code, "isDriver") VALUES (6213694, 'P492063', false);
INSERT INTO public.clients (license_number, contract_code, "isDriver") VALUES (6213694, 'P069931', false);
INSERT INTO public.clients (license_number, contract_code, "isDriver") VALUES (9229637, 'P583759', true);
INSERT INTO public.clients (license_number, contract_code, "isDriver") VALUES (9229637, 'A941331', true);
INSERT INTO public.clients (license_number, contract_code, "isDriver") VALUES (9229637, 'A094850', false);
INSERT INTO public.clients (license_number, contract_code, "isDriver") VALUES (9654799, 'A407701', false);
INSERT INTO public.clients (license_number, contract_code, "isDriver") VALUES (9654799, 'P209751', false);
INSERT INTO public.clients (license_number, contract_code, "isDriver") VALUES (9654799, 'A818231', true);
INSERT INTO public.clients (license_number, contract_code, "isDriver") VALUES (799924, 'A285146', true);
INSERT INTO public.clients (license_number, contract_code, "isDriver") VALUES (7491303, 'P006282', false);
INSERT INTO public.clients (license_number, contract_code, "isDriver") VALUES (7491303, 'P286587', false);
INSERT INTO public.clients (license_number, contract_code, "isDriver") VALUES (5630830, 'P879829', true);
INSERT INTO public.clients (license_number, contract_code, "isDriver") VALUES (2865818, 'A657195', true);
INSERT INTO public.clients (license_number, contract_code, "isDriver") VALUES (2865818, 'A813903', false);
INSERT INTO public.clients (license_number, contract_code, "isDriver") VALUES (146827, 'P487048', true);
INSERT INTO public.clients (license_number, contract_code, "isDriver") VALUES (146827, 'P157818', true);
INSERT INTO public.clients (license_number, contract_code, "isDriver") VALUES (146827, 'A980090', true);
INSERT INTO public.clients (license_number, contract_code, "isDriver") VALUES (8933188, 'A908508', true);
INSERT INTO public.clients (license_number, contract_code, "isDriver") VALUES (8933188, 'P049538', false);
INSERT INTO public.clients (license_number, contract_code, "isDriver") VALUES (8933188, 'P125254', false);
INSERT INTO public.clients (license_number, contract_code, "isDriver") VALUES (5662644, 'A298941', false);
INSERT INTO public.clients (license_number, contract_code, "isDriver") VALUES (5662644, 'P591494', false);
INSERT INTO public.clients (license_number, contract_code, "isDriver") VALUES (5662644, 'A484319', true);
INSERT INTO public.clients (license_number, contract_code, "isDriver") VALUES (577281, 'A805674', true);
INSERT INTO public.clients (license_number, contract_code, "isDriver") VALUES (577281, 'A701776', false);
INSERT INTO public.clients (license_number, contract_code, "isDriver") VALUES (1025287, 'A313694', false);
INSERT INTO public.clients (license_number, contract_code, "isDriver") VALUES (1025287, 'P922997', false);
INSERT INTO public.clients (license_number, contract_code, "isDriver") VALUES (8365266, 'A013883', true);
INSERT INTO public.clients (license_number, contract_code, "isDriver") VALUES (8365266, 'P227684', true);
INSERT INTO public.clients (license_number, contract_code, "isDriver") VALUES (278350, 'P914992', true);
INSERT INTO public.clients (license_number, contract_code, "isDriver") VALUES (278350, 'A455091', false);
INSERT INTO public.clients (license_number, contract_code, "isDriver") VALUES (278350, 'P590699', true);
INSERT INTO public.clients (license_number, contract_code, "isDriver") VALUES (1285301, 'P884429', true);
INSERT INTO public.clients (license_number, contract_code, "isDriver") VALUES (1285301, 'A322497', false);
INSERT INTO public.clients (license_number, contract_code, "isDriver") VALUES (1285301, 'P758737', true);
INSERT INTO public.clients (license_number, contract_code, "isDriver") VALUES (4510746, 'A830268', true);
INSERT INTO public.clients (license_number, contract_code, "isDriver") VALUES (4510746, 'P863728', true);
INSERT INTO public.clients (license_number, contract_code, "isDriver") VALUES (2014667, 'P988165', true);
INSERT INTO public.clients (license_number, contract_code, "isDriver") VALUES (2014667, 'P102628', true);
INSERT INTO public.clients (license_number, contract_code, "isDriver") VALUES (2014667, 'P568133', true);
INSERT INTO public.clients (license_number, contract_code, "isDriver") VALUES (4963611, 'A053646', true);
INSERT INTO public.clients (license_number, contract_code, "isDriver") VALUES (2667826, 'P723792', false);
INSERT INTO public.clients (license_number, contract_code, "isDriver") VALUES (2667826, 'A356540', true);
INSERT INTO public.clients (license_number, contract_code, "isDriver") VALUES (8401218, 'A247579', true);
INSERT INTO public.clients (license_number, contract_code, "isDriver") VALUES (8401218, 'P891811', true);
INSERT INTO public.clients (license_number, contract_code, "isDriver") VALUES (8401218, 'P331897', true);
INSERT INTO public.clients (license_number, contract_code, "isDriver") VALUES (9070744, 'A019821', false);
INSERT INTO public.clients (license_number, contract_code, "isDriver") VALUES (6252546, 'P911823', true);
INSERT INTO public.clients (license_number, contract_code, "isDriver") VALUES (6252546, 'A224603', false);
INSERT INTO public.clients (license_number, contract_code, "isDriver") VALUES (1911994, 'P103573', true);
INSERT INTO public.clients (license_number, contract_code, "isDriver") VALUES (2322021, 'P029547', false);
INSERT INTO public.clients (license_number, contract_code, "isDriver") VALUES (3798538, 'A892937', false);
INSERT INTO public.clients (license_number, contract_code, "isDriver") VALUES (7820343, 'A625101', true);
INSERT INTO public.clients (license_number, contract_code, "isDriver") VALUES (8851367, 'P428897', true);
INSERT INTO public.clients (license_number, contract_code, "isDriver") VALUES (8851367, 'P401461', false);
INSERT INTO public.clients (license_number, contract_code, "isDriver") VALUES (8851367, 'A385214', false);
INSERT INTO public.clients (license_number, contract_code, "isDriver") VALUES (4994634, 'P329398', true);
INSERT INTO public.infringements (infringement_code, infringement_date, description, infringement_time) VALUES ('PO26887025_1000', '2020-11-29', 'Accident in the city', '07:18:00');
INSERT INTO public.infringements (infringement_code, infringement_date, description, infringement_time) VALUES ('PO26887025_1001', '2020-02-04', 'Accident in the city', '04:01:00');
INSERT INTO public.infringements (infringement_code, infringement_date, description, infringement_time) VALUES ('PO26887025_1002', '2020-01-27', 'Serious damage', '01:53:00');
INSERT INTO public.infringements (infringement_code, infringement_date, description, infringement_time) VALUES ('PO26887025_1003', '2021-06-07', 'Illegal parking', '04:01:00');
INSERT INTO public.infringements (infringement_code, infringement_date, description, infringement_time) VALUES ('PO26887025_1004', '2020-11-04', 'Accident in the city', '05:46:00');
INSERT INTO public.infringements (infringement_code, infringement_date, description, infringement_time) VALUES ('PO26887025_1005', '2021-04-08', 'Serious damage', '05:46:00');
INSERT INTO public.infringements (infringement_code, infringement_date, description, infringement_time) VALUES ('PO26887025_1006', '2020-10-28', 'Serious accident', '06:16:00');
INSERT INTO public.infringements (infringement_code, infringement_date, description, infringement_time) VALUES ('PO26887025_1007', '2020-11-24', 'Serious damage', '06:28:00');
INSERT INTO public.infringements (infringement_code, infringement_date, description, infringement_time) VALUES ('PO26887025_1008', '2021-05-04', 'Accident in the suburbs', '07:23:00');
INSERT INTO public.infringements (infringement_code, infringement_date, description, infringement_time) VALUES ('PO26887025_1009', '2020-05-06', 'Illegal parking', '09:46:00');
INSERT INTO public.infringements (infringement_code, infringement_date, description, infringement_time) VALUES ('PO26887025_1010', '2021-04-29', 'Illegal parking', '05:43:00');
INSERT INTO public.infringements (infringement_code, infringement_date, description, infringement_time) VALUES ('PO26887025_1011', '2021-05-18', 'Serious accident', '02:33:00');
INSERT INTO public.infringements (infringement_code, infringement_date, description, infringement_time) VALUES ('PO26887025_1012', '2020-12-13', 'Accident in the suburbs', '03:22:00');
INSERT INTO public.infringements (infringement_code, infringement_date, description, infringement_time) VALUES ('PO26887025_1013', '2020-02-15', 'Accident in the city', '07:01:00');
INSERT INTO public.infringements (infringement_code, infringement_date, description, infringement_time) VALUES ('PO26887025_1014', '2020-10-02', 'Illegal parking', '07:09:00');
INSERT INTO public.infringements (infringement_code, infringement_date, description, infringement_time) VALUES ('PO26887025_1015', '2020-07-23', 'Serious accident', '02:12:00');
INSERT INTO public.infringements (infringement_code, infringement_date, description, infringement_time) VALUES ('PO26887025_1016', '2020-01-02', 'Illegal parking', '03:35:00');
INSERT INTO public.infringements (infringement_code, infringement_date, description, infringement_time) VALUES ('PO26887025_1017', '2021-09-07', 'Accident in the suburbs', '01:54:00');
INSERT INTO public.infringements (infringement_code, infringement_date, description, infringement_time) VALUES ('PO26887025_1018', '2021-02-13', 'Illegal parking', '05:08:00');
INSERT INTO public.infringements (infringement_code, infringement_date, description, infringement_time) VALUES ('PO26887025_1019', '2021-08-19', 'Serious accident', '08:19:00');
INSERT INTO public.infringements (infringement_code, infringement_date, description, infringement_time) VALUES ('PO26887025_1020', '2021-03-11', 'Serious damage', '07:44:00');
INSERT INTO public.infringements (infringement_code, infringement_date, description, infringement_time) VALUES ('PO26887025_1021', '2020-03-16', 'Serious accident', '05:29:00');
INSERT INTO public.infringements (infringement_code, infringement_date, description, infringement_time) VALUES ('PO26887025_1022', '2020-03-30', 'Accident in the city', '07:18:00');
INSERT INTO public.infringements (infringement_code, infringement_date, description, infringement_time) VALUES ('PO26887025_1023', '2020-09-23', 'Accident in the city', '08:01:00');
INSERT INTO public.infringements (infringement_code, infringement_date, description, infringement_time) VALUES ('PO26887025_1024', '2021-01-10', 'Serious accident', '07:17:00');
INSERT INTO public.infringements (infringement_code, infringement_date, description, infringement_time) VALUES ('PO26887025_1025', '2021-06-09', 'Serious damage', '00:03:00');
INSERT INTO public.infringements (infringement_code, infringement_date, description, infringement_time) VALUES ('PO26887025_1026', '2021-08-11', 'Illegal parking', '05:30:00');
INSERT INTO public.infringements (infringement_code, infringement_date, description, infringement_time) VALUES ('PO26887025_1027', '2021-06-22', 'Accident in the city', '08:48:00');
INSERT INTO public.infringements (infringement_code, infringement_date, description, infringement_time) VALUES ('PO26887025_1028', '2020-06-10', 'Serious damage', '01:45:00');
INSERT INTO public.infringements (infringement_code, infringement_date, description, infringement_time) VALUES ('PO26887025_1029', '2021-06-20', 'Serious damage', '03:41:00');
INSERT INTO public.infringements (infringement_code, infringement_date, description, infringement_time) VALUES ('PO26887025_1030', '2020-10-08', 'Serious damage', '03:18:00');
INSERT INTO public.infringements (infringement_code, infringement_date, description, infringement_time) VALUES ('PO26887025_1031', '2021-08-09', 'Illegal parking', '06:23:00');
INSERT INTO public.infringements (infringement_code, infringement_date, description, infringement_time) VALUES ('PO26887025_1032', '2021-04-16', 'Serious damage', '09:26:00');
INSERT INTO public.infringements (infringement_code, infringement_date, description, infringement_time) VALUES ('PO26887025_1033', '2020-11-30', 'Serious damage', '10:44:00');
INSERT INTO public.infringements (infringement_code, infringement_date, description, infringement_time) VALUES ('PO26887025_1034', '2020-03-09', 'Illegal parking', '03:49:00');
INSERT INTO public.infringements (infringement_code, infringement_date, description, infringement_time) VALUES ('PO26887025_1035', '2021-01-23', 'Accident in the city', '09:42:00');
INSERT INTO public.infringements (infringement_code, infringement_date, description, infringement_time) VALUES ('PO26887025_1036', '2020-02-01', 'Accident in the suburbs', '05:14:00');
INSERT INTO public.infringements (infringement_code, infringement_date, description, infringement_time) VALUES ('PO26887025_1037', '2021-04-05', 'Serious damage', '04:35:00');
INSERT INTO public.infringements (infringement_code, infringement_date, description, infringement_time) VALUES ('PO26887025_1038', '2021-02-21', 'Illegal parking', '07:19:00');
INSERT INTO public.infringements (infringement_code, infringement_date, description, infringement_time) VALUES ('PO26887025_1039', '2021-06-11', 'Accident in the city', '04:49:00');
INSERT INTO public.infringements (infringement_code, infringement_date, description, infringement_time) VALUES ('PO26887025_1040', '2020-09-16', 'Serious accident', '07:16:00');
INSERT INTO public.infringements (infringement_code, infringement_date, description, infringement_time) VALUES ('PO26887025_1041', '2021-05-22', 'Accident in the city', '04:52:00');
INSERT INTO public.infringements (infringement_code, infringement_date, description, infringement_time) VALUES ('PO26887025_1042', '2021-09-16', 'Accident in the city', '03:33:00');
INSERT INTO public.infringements (infringement_code, infringement_date, description, infringement_time) VALUES ('PO26887025_1043', '2021-03-21', 'Serious accident', '10:30:00');
INSERT INTO public.infringements (infringement_code, infringement_date, description, infringement_time) VALUES ('PO26887025_1044', '2020-05-22', 'Accident in the city', '03:39:00');
INSERT INTO public.infringements (infringement_code, infringement_date, description, infringement_time) VALUES ('PO26887025_1045', '2021-02-12', 'Accident in the city', '05:46:00');
INSERT INTO public.infringements (infringement_code, infringement_date, description, infringement_time) VALUES ('PO26887025_1046', '2020-04-20', 'Accident in the suburbs', '02:09:00');
INSERT INTO public.infringements (infringement_code, infringement_date, description, infringement_time) VALUES ('PO26887025_1047', '2021-08-29', 'Accident in the suburbs', '00:33:00');
INSERT INTO public.infringements (infringement_code, infringement_date, description, infringement_time) VALUES ('PO26887025_1048', '2021-09-19', 'Serious damage', '09:23:00');
INSERT INTO public.infringements (infringement_code, infringement_date, description, infringement_time) VALUES ('PO26887025_1049', '2020-09-17', 'Serious accident', '09:56:00');
INSERT INTO public.infringements (infringement_code, infringement_date, description, infringement_time) VALUES ('PO26887025_1050', '2020-11-11', 'Serious damage', '06:23:00');
INSERT INTO public.infringements_clients (infringement_code, license_number) VALUES ('PO26887025_1000', 1074911);
INSERT INTO public.infringements_clients (infringement_code, license_number) VALUES ('PO26887025_1002', 9170944);
INSERT INTO public.infringements_clients (infringement_code, license_number) VALUES ('PO26887025_1004', 9640655);
INSERT INTO public.infringements_clients (infringement_code, license_number) VALUES ('PO26887025_1006', 1422054);
INSERT INTO public.infringements_clients (infringement_code, license_number) VALUES ('PO26887025_1008', 6961770);
INSERT INTO public.infringements_clients (infringement_code, license_number) VALUES ('PO26887025_1010', 2865818);
INSERT INTO public.infringements_clients (infringement_code, license_number) VALUES ('PO26887025_1012', 146827);
INSERT INTO public.infringements_clients (infringement_code, license_number) VALUES ('PO26887025_1014', 577281);
INSERT INTO public.infringements_clients (infringement_code, license_number) VALUES ('PO26887025_1016', 278350);
INSERT INTO public.infringements_clients (infringement_code, license_number) VALUES ('PO26887025_1018', 9070744);
INSERT INTO public.infringements_clients (infringement_code, license_number) VALUES ('PO26887025_1020', 6252546);
INSERT INTO public.infringements_clients (infringement_code, license_number) VALUES ('PO26887025_1022', 3798538);
INSERT INTO public.infringements_clients (infringement_code, license_number) VALUES ('PO26887025_1024', 1074911);
INSERT INTO public.infringements_clients (infringement_code, license_number) VALUES ('PO26887025_1027', 9170944);
INSERT INTO public.infringements_clients (infringement_code, license_number) VALUES ('PO26887025_1049', 9640655);
INSERT INTO public.infringements_clients (infringement_code, license_number) VALUES ('PO26887025_1031', 1422054);
INSERT INTO public.infringements_clients (infringement_code, license_number) VALUES ('PO26887025_1033', 6961770);
INSERT INTO public.infringements_clients (infringement_code, license_number) VALUES ('PO26887025_1035', 2865818);
INSERT INTO public.infringements_clients (infringement_code, license_number) VALUES ('PO26887025_1037', 146827);
INSERT INTO public.infringements_clients (infringement_code, license_number) VALUES ('PO26887025_1003', 577281);
INSERT INTO public.infringements_clients (infringement_code, license_number) VALUES ('PO26887025_1005', 278350);
INSERT INTO public.infringements_clients (infringement_code, license_number) VALUES ('PO26887025_1007', 9070744);
INSERT INTO public.infringements_clients (infringement_code, license_number) VALUES ('PO26887025_1001', 6252546);
INSERT INTO public.infringements_clients (infringement_code, license_number) VALUES ('PO26887025_1011', 3798538);
INSERT INTO public.infringements_clients (infringement_code, license_number) VALUES ('PO26887025_1050', 9070744);
INSERT INTO public.infringements_clients (infringement_code, license_number) VALUES ('PO26887025_1009', 6252546);
INSERT INTO public.infringements_clients (infringement_code, license_number) VALUES ('PO26887025_1048', 3798538);
INSERT INTO public.infringements_clients (infringement_code, license_number) VALUES ('PO26887025_1047', 1074911);
INSERT INTO public.infringements_clients (infringement_code, license_number) VALUES ('PO26887025_1050', 9170944);
INSERT INTO public.infringements_clients (infringement_code, license_number) VALUES ('PO26887025_1032', 9640655);
INSERT INTO public.infringements_drivers (infringement_code, license_number) VALUES ('PO26887025_1000', 820081);
INSERT INTO public.infringements_drivers (infringement_code, license_number) VALUES ('PO26887025_1001', 3492248);
INSERT INTO public.infringements_drivers (infringement_code, license_number) VALUES ('PO26887025_1002', 8006023);
INSERT INTO public.infringements_drivers (infringement_code, license_number) VALUES ('PO26887025_1003', 8124154);
INSERT INTO public.infringements_drivers (infringement_code, license_number) VALUES ('PO26887025_1004', 9546096);
INSERT INTO public.infringements_drivers (infringement_code, license_number) VALUES ('PO26887025_1005', 8236767);
INSERT INTO public.infringements_drivers (infringement_code, license_number) VALUES ('PO26887025_1006', 6746299);
INSERT INTO public.infringements_drivers (infringement_code, license_number) VALUES ('PO26887025_1007', 6245525);
INSERT INTO public.infringements_drivers (infringement_code, license_number) VALUES ('PO26887025_1008', 379687);
INSERT INTO public.infringements_drivers (infringement_code, license_number) VALUES ('PO26887025_1009', 8722023);
INSERT INTO public.infringements_drivers (infringement_code, license_number) VALUES ('PO26887025_1010', 9938445);
INSERT INTO public.infringements_drivers (infringement_code, license_number) VALUES ('PO26887025_1011', 5020179);
INSERT INTO public.infringements_drivers (infringement_code, license_number) VALUES ('PO26887025_1012', 379687);
INSERT INTO public.infringements_drivers (infringement_code, license_number) VALUES ('PO26887025_1013', 6050192);
INSERT INTO public.infringements_drivers (infringement_code, license_number) VALUES ('PO26887025_1014', 980680);
INSERT INTO public.infringements_drivers (infringement_code, license_number) VALUES ('PO26887025_1015', 1819588);
INSERT INTO public.infringements_drivers (infringement_code, license_number) VALUES ('PO26887025_1016', 2490645);
INSERT INTO public.infringements_drivers (infringement_code, license_number) VALUES ('PO26887025_1017', 3978726);
INSERT INTO public.infringements_drivers (infringement_code, license_number) VALUES ('PO26887025_1018', 9585809);
INSERT INTO public.infringements_drivers (infringement_code, license_number) VALUES ('PO26887025_1019', 6628274);
INSERT INTO public.infringements_drivers (infringement_code, license_number) VALUES ('PO26887025_1020', 6245525);
INSERT INTO public.infringements_drivers (infringement_code, license_number) VALUES ('PO26887025_1021', 4882958);
INSERT INTO public.infringements_drivers (infringement_code, license_number) VALUES ('PO26887025_1022', 5432637);
INSERT INTO public.infringements_drivers (infringement_code, license_number) VALUES ('PO26887025_1023', 379687);
INSERT INTO public.infringements_drivers (infringement_code, license_number) VALUES ('PO26887025_1024', 9585809);
INSERT INTO public.infringements_drivers (infringement_code, license_number) VALUES ('PO26887025_1025', 7371415);
INSERT INTO public.infringements_drivers (infringement_code, license_number) VALUES ('PO26887025_1026', 2490645);
INSERT INTO public.infringements_drivers (infringement_code, license_number) VALUES ('PO26887025_1027', 5432637);
INSERT INTO public.infringements_drivers (infringement_code, license_number) VALUES ('PO26887025_1028', 980680);
INSERT INTO public.infringements_drivers (infringement_code, license_number) VALUES ('PO26887025_1029', 6628274);
INSERT INTO public.infringements_drivers (infringement_code, license_number) VALUES ('PO26887025_1030', 9938445);
INSERT INTO public.infringements_drivers (infringement_code, license_number) VALUES ('PO26887025_1031', 643774);
INSERT INTO public.infringements_drivers (infringement_code, license_number) VALUES ('PO26887025_1032', 3978726);
INSERT INTO public.infringements_drivers (infringement_code, license_number) VALUES ('PO26887025_1033', 980680);
INSERT INTO public.infringements_drivers (infringement_code, license_number) VALUES ('PO26887025_1034', 1819588);
INSERT INTO public.infringements_drivers (infringement_code, license_number) VALUES ('PO26887025_1035', 9546096);
INSERT INTO public.infringements_drivers (infringement_code, license_number) VALUES ('PO26887025_1036', 6245525);
INSERT INTO public.infringements_drivers (infringement_code, license_number) VALUES ('PO26887025_1037', 5432637);
INSERT INTO public.infringements_drivers (infringement_code, license_number) VALUES ('PO26887025_1038', 3978726);
INSERT INTO public.infringements_drivers (infringement_code, license_number) VALUES ('PO26887025_1039', 6050192);
INSERT INTO public.infringements_drivers (infringement_code, license_number) VALUES ('PO26887025_1040', 1819588);
INSERT INTO public.infringements_drivers (infringement_code, license_number) VALUES ('PO26887025_1041', 5020179);
INSERT INTO public.infringements_drivers (infringement_code, license_number) VALUES ('PO26887025_1042', 5432637);
INSERT INTO public.infringements_drivers (infringement_code, license_number) VALUES ('PO26887025_1043', 8722023);
INSERT INTO public.infringements_drivers (infringement_code, license_number) VALUES ('PO26887025_1044', 7371415);
INSERT INTO public.infringements_drivers (infringement_code, license_number) VALUES ('PO26887025_1045', 2415612);
INSERT INTO public.infringements_drivers (infringement_code, license_number) VALUES ('PO26887025_1046', 9546096);
INSERT INTO public.infringements_drivers (infringement_code, license_number) VALUES ('PO26887025_1047', 6245525);
INSERT INTO public.infringements_drivers (infringement_code, license_number) VALUES ('PO26887025_1048', 820081);
INSERT INTO public.infringements_drivers (infringement_code, license_number) VALUES ('PO26887025_1049', 3492248);
INSERT INTO public.infringements_drivers (infringement_code, license_number) VALUES ('PO26887025_1050', 8006023);
INSERT INTO public.infringements_drivers (infringement_code, license_number) VALUES ('PO26887025_1000', 8124154);
INSERT INTO public.infringements_drivers (infringement_code, license_number) VALUES ('PO26887025_1001', 9546096);
INSERT INTO public.infringements_drivers (infringement_code, license_number) VALUES ('PO26887025_1002', 8236767);
INSERT INTO public.infringements_drivers (infringement_code, license_number) VALUES ('PO26887025_1003', 6746299);
INSERT INTO public.infringements_drivers (infringement_code, license_number) VALUES ('PO26887025_1004', 6245525);
INSERT INTO public.infringements_drivers (infringement_code, license_number) VALUES ('PO26887025_1005', 379687);
INSERT INTO public.infringements_drivers (infringement_code, license_number) VALUES ('PO26887025_1006', 8722023);
INSERT INTO public.infringements_drivers (infringement_code, license_number) VALUES ('PO26887025_1007', 9938445);
INSERT INTO public.infringements_drivers (infringement_code, license_number) VALUES ('PO26887025_1008', 5020179);
INSERT INTO public.infringements_drivers (infringement_code, license_number) VALUES ('PO26887025_1009', 379687);
INSERT INTO public.infringements_drivers (infringement_code, license_number) VALUES ('PO26887025_1010', 6050192);
INSERT INTO public.infringements_drivers (infringement_code, license_number) VALUES ('PO26887025_1011', 980680);
INSERT INTO public.infringements_drivers (infringement_code, license_number) VALUES ('PO26887025_1012', 1819588);
INSERT INTO public.infringements_drivers (infringement_code, license_number) VALUES ('PO26887025_1013', 2490645);
INSERT INTO public.infringements_drivers (infringement_code, license_number) VALUES ('PO26887025_1014', 3978726);
INSERT INTO public.infringements_drivers (infringement_code, license_number) VALUES ('PO26887025_1015', 9585809);
INSERT INTO public.infringements_drivers (infringement_code, license_number) VALUES ('PO26887025_1016', 6628274);
INSERT INTO public.infringements_drivers (infringement_code, license_number) VALUES ('PO26887025_1017', 6245525);
INSERT INTO public.infringements_drivers (infringement_code, license_number) VALUES ('PO26887025_1018', 4882958);
INSERT INTO public.infringements_drivers (infringement_code, license_number) VALUES ('PO26887025_1019', 5432637);
INSERT INTO public.infringements_drivers (infringement_code, license_number) VALUES ('PO26887025_1020', 379687);
INSERT INTO public.infringements_drivers (infringement_code, license_number) VALUES ('PO26887025_1021', 9585809);
INSERT INTO public.infringements_drivers (infringement_code, license_number) VALUES ('PO26887025_1022', 7371415);
INSERT INTO public.infringements_drivers (infringement_code, license_number) VALUES ('PO26887025_1023', 2490645);
INSERT INTO public.infringements_drivers (infringement_code, license_number) VALUES ('PO26887025_1024', 5432637);
INSERT INTO public.infringements_drivers (infringement_code, license_number) VALUES ('PO26887025_1025', 980680);
INSERT INTO public.infringements_drivers (infringement_code, license_number) VALUES ('PO26887025_1026', 6628274);
INSERT INTO public.infringements_drivers (infringement_code, license_number) VALUES ('PO26887025_1027', 9938445);
INSERT INTO public.infringements_drivers (infringement_code, license_number) VALUES ('PO26887025_1028', 643774);
INSERT INTO public.infringements_drivers (infringement_code, license_number) VALUES ('PO26887025_1029', 3978726);
INSERT INTO public.infringements_drivers (infringement_code, license_number) VALUES ('PO26887025_1030', 980680);
INSERT INTO public.infringements_drivers (infringement_code, license_number) VALUES ('PO26887025_1031', 1819588);
INSERT INTO public.infringements_drivers (infringement_code, license_number) VALUES ('PO26887025_1032', 9546096);
INSERT INTO public.infringements_drivers (infringement_code, license_number) VALUES ('PO26887025_1033', 6245525);
INSERT INTO public.infringements_drivers (infringement_code, license_number) VALUES ('PO26887025_1034', 5432637);
INSERT INTO public.infringements_drivers (infringement_code, license_number) VALUES ('PO26887025_1035', 3978726);
INSERT INTO public.infringements_drivers (infringement_code, license_number) VALUES ('PO26887025_1036', 6050192);
INSERT INTO public.infringements_drivers (infringement_code, license_number) VALUES ('PO26887025_1037', 1819588);
INSERT INTO public.infringements_drivers (infringement_code, license_number) VALUES ('PO26887025_1038', 5020179);
INSERT INTO public.infringements_drivers (infringement_code, license_number) VALUES ('PO26887025_1039', 5432637);
INSERT INTO public.infringements_drivers (infringement_code, license_number) VALUES ('PO26887025_1040', 8722023);
INSERT INTO public.infringements_drivers (infringement_code, license_number) VALUES ('PO26887025_1041', 7371415);
INSERT INTO public.infringements_drivers (infringement_code, license_number) VALUES ('PO26887025_1042', 2415612);
INSERT INTO public.infringements_drivers (infringement_code, license_number) VALUES ('PO26887025_1043', 9546096);
INSERT INTO public.infringements_drivers (infringement_code, license_number) VALUES ('PO26887025_1044', 6245525);
INSERT INTO public.infringements_vehicles (infringement_code, plate_number) VALUES ('PO26887025_1001', '3468SV');
INSERT INTO public.infringements_vehicles (infringement_code, plate_number) VALUES ('PO26887025_1002', '8932YU');
INSERT INTO public.infringements_vehicles (infringement_code, plate_number) VALUES ('PO26887025_1003', '9116FF');
INSERT INTO public.infringements_vehicles (infringement_code, plate_number) VALUES ('PO26887025_1004', '2222CP');
INSERT INTO public.infringements_vehicles (infringement_code, plate_number) VALUES ('PO26887025_1005', '9166RF');
INSERT INTO public.infringements_vehicles (infringement_code, plate_number) VALUES ('PO26887025_1006', '2974EX');
INSERT INTO public.infringements_vehicles (infringement_code, plate_number) VALUES ('PO26887025_1007', '2570OR');
INSERT INTO public.infringements_vehicles (infringement_code, plate_number) VALUES ('PO26887025_1008', '1702UQ');
INSERT INTO public.infringements_vehicles (infringement_code, plate_number) VALUES ('PO26887025_1009', '8126XL');
INSERT INTO public.infringements_vehicles (infringement_code, plate_number) VALUES ('PO26887025_1010', '4992GY');
INSERT INTO public.infringements_vehicles (infringement_code, plate_number) VALUES ('PO26887025_1011', '3486OE');
INSERT INTO public.infringements_vehicles (infringement_code, plate_number) VALUES ('PO26887025_1012', '7739LW');
INSERT INTO public.infringements_vehicles (infringement_code, plate_number) VALUES ('PO26887025_1013', '0260IO');
INSERT INTO public.infringements_vehicles (infringement_code, plate_number) VALUES ('PO26887025_1014', '3466YY');
INSERT INTO public.infringements_vehicles (infringement_code, plate_number) VALUES ('PO26887025_1015', '1335AL');
INSERT INTO public.infringements_vehicles (infringement_code, plate_number) VALUES ('PO26887025_1016', '8245LP');
INSERT INTO public.infringements_vehicles (infringement_code, plate_number) VALUES ('PO26887025_1017', '6657DL');
INSERT INTO public.infringements_vehicles (infringement_code, plate_number) VALUES ('PO26887025_1018', '6718FE');
INSERT INTO public.infringements_vehicles (infringement_code, plate_number) VALUES ('PO26887025_1019', '6464OO');
INSERT INTO public.infringements_vehicles (infringement_code, plate_number) VALUES ('PO26887025_1020', '2702ZX');
INSERT INTO public.infringements_vehicles (infringement_code, plate_number) VALUES ('PO26887025_1021', '6327RB');
INSERT INTO public.infringements_vehicles (infringement_code, plate_number) VALUES ('PO26887025_1022', '1335AL');
INSERT INTO public.infringements_vehicles (infringement_code, plate_number) VALUES ('PO26887025_1023', '7776LE');
INSERT INTO public.infringements_vehicles (infringement_code, plate_number) VALUES ('PO26887025_1024', '6680NB');
INSERT INTO public.infringements_vehicles (infringement_code, plate_number) VALUES ('PO26887025_1025', '5403KR');
INSERT INTO public.infringements_vehicles (infringement_code, plate_number) VALUES ('PO26887025_1026', '6657DL');
INSERT INTO public.infringements_vehicles (infringement_code, plate_number) VALUES ('PO26887025_1027', '5989GH');
INSERT INTO public.infringements_vehicles (infringement_code, plate_number) VALUES ('PO26887025_1028', '7916NT');
INSERT INTO public.infringements_vehicles (infringement_code, plate_number) VALUES ('PO26887025_1029', '8245LP');
INSERT INTO public.infringements_vehicles (infringement_code, plate_number) VALUES ('PO26887025_1030', '6454SA');
INSERT INTO public.infringements_vehicles (infringement_code, plate_number) VALUES ('PO26887025_1031', '4615GO');
INSERT INTO public.infringements_vehicles (infringement_code, plate_number) VALUES ('PO26887025_1032', '2812HJ');
INSERT INTO public.infringements_vehicles (infringement_code, plate_number) VALUES ('PO26887025_1033', '6718FE');
INSERT INTO public.infringements_vehicles (infringement_code, plate_number) VALUES ('PO26887025_1034', '8941GJ');
INSERT INTO public.infringements_vehicles (infringement_code, plate_number) VALUES ('PO26887025_1035', '4615GO');
INSERT INTO public.infringements_vehicles (infringement_code, plate_number) VALUES ('PO26887025_1036', '3197YK');
INSERT INTO public.infringements_vehicles (infringement_code, plate_number) VALUES ('PO26887025_1037', '5403KR');
INSERT INTO public.infringements_vehicles (infringement_code, plate_number) VALUES ('PO26887025_1038', '6657DL');
INSERT INTO public.infringements_vehicles (infringement_code, plate_number) VALUES ('PO26887025_1039', '2812HJ');
INSERT INTO public.infringements_vehicles (infringement_code, plate_number) VALUES ('PO26887025_1040', '7776LE');
INSERT INTO public.infringements_vehicles (infringement_code, plate_number) VALUES ('PO26887025_1041', '4615GO');
INSERT INTO public.infringements_vehicles (infringement_code, plate_number) VALUES ('PO26887025_1042', '8245LP');
INSERT INTO public.infringements_vehicles (infringement_code, plate_number) VALUES ('PO26887025_1043', '6718FE');
INSERT INTO public.infringements_vehicles (infringement_code, plate_number) VALUES ('PO26887025_1044', '1335AL');
INSERT INTO public.infringements_vehicles (infringement_code, plate_number) VALUES ('PO26887025_1045', '0505DR');
INSERT INTO public.infringements_vehicles (infringement_code, plate_number) VALUES ('PO26887025_1046', '8941GJ');
INSERT INTO public.infringements_vehicles (infringement_code, plate_number) VALUES ('PO26887025_1047', '4615GO');
INSERT INTO public.infringements_vehicles (infringement_code, plate_number) VALUES ('PO26887025_1048', '5403KR');
INSERT INTO public.infringements_vehicles (infringement_code, plate_number) VALUES ('PO26887025_1049', '1728BO');
INSERT INTO public.infringements_vehicles (infringement_code, plate_number) VALUES ('PO26887025_1050', '8245LP');
INSERT INTO public.infringements_vehicles (infringement_code, plate_number) VALUES ('PO26887025_1000', '8484QR');
INSERT INTO public.infringements_vehicles (infringement_code, plate_number) VALUES ('PO26887025_1001', '2702ZX');
INSERT INTO public.infringements_vehicles (infringement_code, plate_number) VALUES ('PO26887025_1002', '4615GO');
INSERT INTO public.infringements_vehicles (infringement_code, plate_number) VALUES ('PO26887025_1003', '6464OO');
INSERT INTO public.infringements_vehicles (infringement_code, plate_number) VALUES ('PO26887025_1004', '9700HP');
INSERT INTO public.infringements_vehicles (infringement_code, plate_number) VALUES ('PO26887025_1005', '6680NB');
INSERT INTO public.infringements_vehicles (infringement_code, plate_number) VALUES ('PO26887025_1006', '7916NT');
INSERT INTO public.infringements_vehicles (infringement_code, plate_number) VALUES ('PO26887025_1007', '0505DR');
INSERT INTO public.infringements_vehicles (infringement_code, plate_number) VALUES ('PO26887025_1008', '6680NB');
INSERT INTO public.infringements_vehicles (infringement_code, plate_number) VALUES ('PO26887025_1009', '5889HS');
INSERT INTO public.infringements_vehicles (infringement_code, plate_number) VALUES ('PO26887025_1010', '8484QR');
INSERT INTO public.infringements_vehicles (infringement_code, plate_number) VALUES ('PO26887025_1011', '5989GH');
INSERT INTO public.infringements_vehicles (infringement_code, plate_number) VALUES ('PO26887025_1012', '5403KR');
INSERT INTO public.infringements_vehicles (infringement_code, plate_number) VALUES ('PO26887025_1013', '1335AL');
INSERT INTO public.infringements_vehicles (infringement_code, plate_number) VALUES ('PO26887025_1014', '8941GJ');
INSERT INTO public.infringements_vehicles (infringement_code, plate_number) VALUES ('PO26887025_1015', '5989GH');
INSERT INTO public.infringements_vehicles (infringement_code, plate_number) VALUES ('PO26887025_1016', '2702ZX');
INSERT INTO public.infringements_vehicles (infringement_code, plate_number) VALUES ('PO26887025_1017', '5403KR');
INSERT INTO public.infringements_vehicles (infringement_code, plate_number) VALUES ('PO26887025_1018', '1728BO');
INSERT INTO public.infringements_vehicles (infringement_code, plate_number) VALUES ('PO26887025_1019', '6718FE');
INSERT INTO public.infringements_vehicles (infringement_code, plate_number) VALUES ('PO26887025_1020', '6327RB');
INSERT INTO public.infringements_vehicles (infringement_code, plate_number) VALUES ('PO26887025_1021', '8484QR');
INSERT INTO public.infringements_vehicles (infringement_code, plate_number) VALUES ('PO26887025_1022', '8785NI');
INSERT INTO public.infringements_vehicles (infringement_code, plate_number) VALUES ('PO26887025_1023', '8941GJ');
INSERT INTO public.infringements_vehicles (infringement_code, plate_number) VALUES ('PO26887025_1024', '7776LE');
INSERT INTO public.infringements_vehicles (infringement_code, plate_number) VALUES ('PO26887025_1025', '8941GJ');
INSERT INTO public.infringements_vehicles (infringement_code, plate_number) VALUES ('PO26887025_1026', '3197YK');
INSERT INTO public.infringements_vehicles (infringement_code, plate_number) VALUES ('PO26887025_1027', '8245LP');
INSERT INTO public.infringements_vehicles (infringement_code, plate_number) VALUES ('PO26887025_1028', '6464OO');
INSERT INTO public.infringements_vehicles (infringement_code, plate_number) VALUES ('PO26887025_1029', '6327RB');
INSERT INTO public.infringements_vehicles (infringement_code, plate_number) VALUES ('PO26887025_1030', '4742SO');
INSERT INTO public.infringements_vehicles (infringement_code, plate_number) VALUES ('PO26887025_1031', '8484QR');
INSERT INTO public.infringements_vehicles (infringement_code, plate_number) VALUES ('PO26887025_1032', '8785NI');
INSERT INTO public.infringements_vehicles (infringement_code, plate_number) VALUES ('PO26887025_1033', '6680NB');