-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfidelity_software.sql
More file actions
4054 lines (3893 loc) · 235 KB
/
fidelity_software.sql
File metadata and controls
4054 lines (3893 loc) · 235 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
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
-- phpMyAdmin SQL Dump
-- version 5.0.2
-- https://www.phpmyadmin.net/
--
-- Host: localhost
-- Generation Time: May 06, 2022 at 03:40 AM
-- Server version: 10.4.13-MariaDB
-- PHP Version: 7.4.8
SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO";
START TRANSACTION;
SET time_zone = "+00:00";
/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
/*!40101 SET NAMES utf8mb4 */;
--
-- Database: `fidelity_software`
--
-- --------------------------------------------------------
--
-- Table structure for table `admin`
--
CREATE TABLE `admin` (
`id` int(10) NOT NULL,
`username` varchar(255) NOT NULL,
`password` varchar(255) NOT NULL,
`level` int(11) NOT NULL DEFAULT 1
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
--
-- Dumping data for table `admin`
--
INSERT INTO `admin` (`id`, `username`, `password`, `level`) VALUES
(1, 'admin', 'mordear', 1);
-- --------------------------------------------------------
--
-- Table structure for table `arabic_class`
--
CREATE TABLE `arabic_class` (
`id` int(10) NOT NULL,
`class` varchar(255) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
--
-- Dumping data for table `arabic_class`
--
INSERT INTO `arabic_class` (`id`, `class`) VALUES
(1, 'المدرسة الإعدادية الأولى'),
(2, '(JSS 1) المدرسة الإعدادية الأولى');
-- --------------------------------------------------------
--
-- Table structure for table `arabic_result`
--
CREATE TABLE `arabic_result` (
`id` int(11) NOT NULL,
`student_id` int(11) NOT NULL,
`subject` int(11) NOT NULL,
`term` int(11) NOT NULL,
`class` int(11) NOT NULL,
`session` int(11) NOT NULL,
`first` int(11) NOT NULL,
`second` int(11) NOT NULL,
`exam` int(11) NOT NULL,
`teacher` int(11) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
--
-- Dumping data for table `arabic_result`
--
INSERT INTO `arabic_result` (`id`, `student_id`, `subject`, `term`, `class`, `session`, `first`, `second`, `exam`, `teacher`) VALUES
(5, 495, 2, 2, 1, 1, 12, 19, 44, 0),
(6, 495, 3, 2, 1, 1, 12, 15, 54, 0),
(7, 495, 4, 2, 1, 1, 0, 0, 0, 0),
(8, 495, 5, 2, 1, 1, 0, 0, 0, 0),
(9, 495, 6, 2, 1, 1, 0, 0, 0, 0),
(10, 495, 7, 2, 1, 1, 20, 20, 60, 0),
(11, 495, 8, 2, 1, 1, 12, 12, 33, 0),
(13, 14, 1, 2, 1, 1, 12, 20, 6, 1),
(14, 13, 3, 1, 1, 1, 10, 12, 23, 0),
(15, 14, 3, 1, 1, 1, 12, 3, 12, 0),
(16, 15, 3, 1, 1, 1, 0, 0, 0, 0);
-- --------------------------------------------------------
--
-- Table structure for table `arabic_subjects`
--
CREATE TABLE `arabic_subjects` (
`id` int(11) NOT NULL,
`subject` varchar(255) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
--
-- Dumping data for table `arabic_subjects`
--
INSERT INTO `arabic_subjects` (`id`, `subject`) VALUES
(1, 'الكرم القرآن (QUR’AN MEMORISATION)'),
(2, 'احلديث(HADITH)'),
(3, 'جويدّ ا (TAJWEED)'),
(4, 'العربي(ARABIC LANGUAGE)'),
(5, 'وحيدّ ا(ISLAMIC THEOLOGY)'),
(6, 'الفقه(ISLAMIC JURISPRUDENCE )'),
(7, 'اآلداب(ISLAMIC ETHICS )'),
(8, 'القراءة(READING SKILL )'),
(9, 'واإلمالء ط ّا(WRITING SKILL)');
-- --------------------------------------------------------
--
-- Table structure for table `class`
--
CREATE TABLE `class` (
`id` int(10) NOT NULL,
`class` varchar(255) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
--
-- Dumping data for table `class`
--
INSERT INTO `class` (`id`, `class`) VALUES
(1, 'Jss 1'),
(2, 'Jss 2'),
(3, 'Jss 3'),
(4, 'SS 1'),
(5, 'SS 2'),
(6, 'SS 3');
-- --------------------------------------------------------
--
-- Table structure for table `materials`
--
CREATE TABLE `materials` (
`id` int(10) NOT NULL,
`name` varchar(255) NOT NULL,
`file` varchar(255) NOT NULL,
`class` varchar(255) NOT NULL,
`status` int(10) NOT NULL,
`date` varchar(255) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
--
-- Dumping data for table `materials`
--
INSERT INTO `materials` (`id`, `name`, `file`, `class`, `status`, `date`) VALUES
(4, 'Course Outline', 'HTML Scheme of Work 2nd term.pdf', 'all', 0, '09:16:38pm 21/Feb/2021'),
(5, 'W3schools', 'w3schools.zip', 'all', 0, '09:20:25pm 21/Feb/2021'),
(12, 'avatar5', 'avatar5.png', 'all', 0, '01:56:57pm 03/Mar/2021'),
(22, 'HTML TEST INSTRUCTIONS', 'HTML TEST INSTRUCTIONS.pdf', 'all', 0, '02:48:24pm 03/Mar/2021'),
(23, 'Sublime text 3', 'Sublime_Text_Build_3176_Setup[1].exe', 'all', 0, '11:56:38am 11/Mar/2021'),
(24, 'SmartExaminer Setup', 'SmartExaminer Setup.exe', 'all', 0, '11:31:50am 19/Mar/2021'),
(31, 'Aquarium Image for exam', 'aquarium.gif', '1', 0, '01:40:04pm 29/Mar/2021'),
(32, 'Aquarium Image for exam002', 'aqua.gif', '2', 0, '12:56:33pm 30/Mar/2021'),
(33, 'Aquarium Image for exam002', 'aqua.gif', '3', 0, '12:57:02pm 30/Mar/2021'),
(34, 'Aquarium Image for exam002', 'aqua.gif', '4', 0, '12:38:54pm 31/Mar/2021'),
(35, 'Aquarium Image for exam002', 'aqua.gif', '5', 0, '12:39:30pm 31/Mar/2021'),
(36, 'Html Scheme for third term', 'HTML Scheme of Work 3rd term.pdf', 'all', 0, '07:29:05am 20/May/2021'),
(37, 'Form Video', 'html form video.mp4', '1', 0, '04:04:50pm 03/Jun/2021'),
(38, 'html form video 2', 'html form video 2.mp4', 'all', 0, '04:19:41pm 03/Jun/2021'),
(39, 'Gtbank Assignment', 'gtbank html assignment.zip', '1', 0, '12:31:52am 02/Jul/2021'),
(40, 'Gtbank Assignment', 'gtbank html assignment.zip', '2', 0, '12:32:16am 02/Jul/2021'),
(41, 'Polaris bank project', 'polaris bank html assignment.zip', '4', 0, '12:33:31am 02/Jul/2021'),
(42, 'Polaris bank project', 'polaris bank html assignment.zip', '5', 0, '12:34:11am 02/Jul/2021'),
(43, 'keira', 'keira.jpg', '4', 0, '09:23:53am 11/Aug/2021'),
(44, 'keira', 'keira.jpg', '5', 1, '09:24:26am 11/Aug/2021'),
(45, 'waec', 'waec.zip', '6', 0, '09:58:53pm 16/Aug/2021'),
(46, 'bootstrap', 'bootstrap-5.0.0-beta3-dist.zip', 'all', 1, '02:10:41pm 24/Aug/2021'),
(47, 'Fontawesome', 'font.zip', 'all', 1, '02:12:28pm 24/Aug/2021'),
(48, 'waec folder', 'waec folder.zip', 'all', 1, '05:01:28pm 24/Aug/2021'),
(49, 'legacy', 'Dashboard - Educational Legacy College.pdf', '6', 1, '02:47:55pm 15/Sep/2021'),
(50, 'Pdf File', 'midterm.pdf', 'all', 1, '04:33:18am 01/May/2022');
-- --------------------------------------------------------
--
-- Table structure for table `mid_term_results`
--
CREATE TABLE `mid_term_results` (
`id` int(11) NOT NULL,
`student_id` int(11) NOT NULL,
`subject` int(11) NOT NULL,
`term` int(11) NOT NULL,
`class` int(11) NOT NULL,
`session` int(11) NOT NULL,
`test` int(11) NOT NULL,
`teacher` int(11) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
--
-- Dumping data for table `mid_term_results`
--
INSERT INTO `mid_term_results` (`id`, `student_id`, `subject`, `term`, `class`, `session`, `test`, `teacher`) VALUES
(1, 495, 1, 1, 1, 1, 10, 0),
(2, 13, 2, 2, 2, 1, 0, 0),
(3, 14, 2, 2, 2, 1, 0, 0),
(4, 15, 2, 2, 2, 1, 0, 0),
(5, 55, 2, 2, 2, 1, 0, 0),
(7, 14, 2, 1, 2, 1, 2, 0),
(8, 15, 2, 1, 2, 1, 0, 0),
(9, 55, 2, 1, 2, 1, 0, 0),
(10, 13, 2, 1, 2, 1, 40, 1),
(11, 13, 1, 2, 2, 1, 10, 0),
(12, 14, 1, 2, 2, 1, 20, 0),
(13, 15, 1, 2, 2, 1, 30, 0),
(14, 55, 1, 2, 2, 1, 30, 0),
(15, 13, 4, 2, 2, 1, 30, 0),
(16, 14, 4, 2, 2, 1, 34, 0),
(17, 15, 4, 2, 2, 1, 23, 0),
(18, 55, 4, 2, 2, 1, 11, 0),
(19, 13, 12, 2, 2, 1, 20, 0),
(20, 14, 12, 2, 2, 1, 22, 0),
(21, 15, 12, 2, 2, 1, 33, 0),
(22, 55, 12, 2, 2, 1, 40, 0),
(23, 13, 14, 2, 2, 1, 30, 0),
(24, 14, 14, 2, 2, 1, 30, 0),
(25, 15, 14, 2, 2, 1, 30, 0),
(26, 55, 14, 2, 2, 1, 30, 0),
(27, 13, 6, 2, 2, 1, 20, 0),
(28, 14, 6, 2, 2, 1, 39, 0),
(29, 15, 6, 2, 2, 1, 23, 0),
(30, 55, 6, 2, 2, 1, 11, 0),
(31, 13, 7, 2, 2, 1, 40, 0),
(32, 14, 7, 2, 2, 1, 30, 0),
(33, 15, 7, 2, 2, 1, 20, 0),
(34, 55, 7, 2, 2, 1, 22, 0),
(35, 13, 9, 2, 2, 1, 33, 0),
(36, 14, 9, 2, 2, 1, 23, 0),
(37, 15, 9, 2, 2, 1, 14, 0),
(38, 55, 9, 2, 2, 1, 30, 0),
(39, 13, 3, 2, 2, 1, 30, 0),
(40, 14, 3, 2, 2, 1, 23, 0),
(41, 15, 3, 2, 2, 1, 34, 0),
(42, 55, 3, 2, 2, 1, 23, 0),
(43, 13, 10, 2, 2, 1, 0, 0),
(44, 14, 10, 2, 2, 1, 0, 0),
(45, 15, 10, 2, 2, 1, 0, 0),
(46, 55, 10, 2, 2, 1, 0, 0),
(47, 13, 13, 2, 2, 1, 0, 0),
(48, 14, 13, 2, 2, 1, 0, 0),
(49, 15, 13, 2, 2, 1, 0, 0),
(50, 55, 13, 2, 2, 1, 0, 0),
(51, 13, 8, 2, 2, 1, 0, 0),
(52, 14, 8, 2, 2, 1, 0, 0),
(53, 15, 8, 2, 2, 1, 0, 0),
(54, 55, 8, 2, 2, 1, 0, 0),
(55, 13, 15, 2, 2, 1, 0, 0),
(56, 14, 15, 2, 2, 1, 0, 0),
(57, 15, 15, 2, 2, 1, 0, 0),
(58, 55, 15, 2, 2, 1, 0, 0),
(59, 13, 11, 2, 2, 1, 0, 0),
(60, 14, 11, 2, 2, 1, 0, 0),
(61, 15, 11, 2, 2, 1, 0, 0),
(62, 55, 11, 2, 2, 1, 0, 0),
(63, 13, 5, 2, 2, 1, 20, 0),
(64, 14, 5, 2, 2, 1, 40, 0),
(65, 15, 5, 2, 2, 1, 20, 0),
(66, 55, 5, 2, 2, 1, 22, 0);
-- --------------------------------------------------------
--
-- Table structure for table `projects`
--
CREATE TABLE `projects` (
`id` int(10) NOT NULL,
`project` varchar(255) NOT NULL,
`code` varchar(255) NOT NULL,
`status` int(10) NOT NULL DEFAULT 0,
`date` varchar(255) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
--
-- Dumping data for table `projects`
--
INSERT INTO `projects` (`id`, `project`, `code`, `status`, `date`) VALUES
(5, 'Mid-term test', 'test002', 0, '08/Mar/2021'),
(6, 'exam', 'test003', 0, '09/Mar/2021'),
(8, 'Second Term Exam', 'exam002', 0, '29/Mar/2021'),
(9, 'Third Term First Assignment', 'Ass003', 0, '10/Jun/2021'),
(10, 'Polaris Bank', 'polaris bank', 0, '26/Jul/2021'),
(11, 'Gtbank Assignment', 'Gtbank', 0, '26/Jul/2021'),
(12, 'Third Term Examination', 'exam003', 0, '29/Jul/2021'),
(13, 'Data processing ', 'DP003', 0, '02/Aug/2021'),
(14, 'New Project', 'pro123', 1, '01/May/2022');
-- --------------------------------------------------------
--
-- Table structure for table `register`
--
CREATE TABLE `register` (
`id` int(10) NOT NULL,
`name` varchar(255) NOT NULL,
`gender` varchar(255) NOT NULL,
`code` varchar(255) NOT NULL,
`class` int(10) NOT NULL,
`arabic_class` int(10) NOT NULL,
`session` int(10) NOT NULL,
`dob` varchar(255) NOT NULL,
`date` varchar(255) NOT NULL,
`username` varchar(255) NOT NULL,
`password` varchar(255) NOT NULL DEFAULT 'password',
`level` int(11) NOT NULL DEFAULT 0,
`status` int(11) NOT NULL DEFAULT 0
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
--
-- Dumping data for table `register`
--
INSERT INTO `register` (`id`, `name`, `gender`, `code`, `class`, `arabic_class`, `session`, `dob`, `date`, `username`, `password`, `level`, `status`) VALUES
(1, 'Olayiwola Akeem', 'male', 'QSI/608219', 0, 0, 0, '', '15/Jan/2022', 'Archimedes ', '1234', 0, 1),
(2, 'Olayiwola Akeem', 'male', 'QSI/263461', 0, 0, 0, '', '15/Jan/2022', '', 'password', 0, 0),
(3, 'Olayiwola Akeem Ademola', 'male', 'QSI/626383', 0, 0, 0, '', '15/Jan/2022', '', 'password', 0, 0),
(4, 'Olayiwola Akeem Ademola', 'male', 'QSI/921877', 0, 0, 0, '', '15/Jan/2022', '', 'password', 0, 0),
(5, 'Olayiwola Akeem Ademola', 'male', 'QSI/942168', 0, 0, 0, '', '15/Jan/2022', '', 'password', 0, 0),
(6, 'Olayiwola Akeem Ademola', 'male', 'QSI/791834', 0, 0, 0, '', '15/Jan/2022', '', 'password', 0, 0),
(7, 'Olayiwola Akeem Ademola', 'male', 'QSI/825797', 0, 0, 0, '', '15/Jan/2022', '', 'password', 0, 0),
(8, 'Olayiwola Akeem', 'female', 'QSI/515464', 1, 2, 1, '', '15/Jan/2022', '', 'password', 0, 0),
(9, 'Olayiwola Akeem', 'female', 'QSI/669727', 1, 2, 1, '', '15/Jan/2022', '', 'password', 0, 0),
(10, 'Olayiwola Akeem', 'female', 'QSI/353256', 1, 2, 1, '', '15/Jan/2022', '', 'password', 0, 0),
(11, 'Olayiwola A', 'male', 'QSI/721367', 3, 1, 1, '', '15/Jan/2022', '', 'password', 0, 0),
(12, 'Olayiwola Akm', 'female', 'QSI/96667', 3, 2, 1, '', '15/Jan/2022', '', 'password', 0, 0),
(13, 'Adewolu o', '', 'QSI/599334', 2, 1, 1, '', '15/Jan/2022', 'Adewoluoba', '123456', 2, 1),
(14, 'Abdullah abdulkareem', 'male', 'QSI/923433', 2, 1, 1, '19/Mar/2001', '15/Jan/2022', '', 'password', 0, 0),
(15, 'Aguda Victoria Zaniba', 'female', 'QSI/702728', 2, 1, 1, '2000-06-12', '24/Jan/2022', '', 'password', 0, 0),
(16, 'Abdulrahmon Okikiola Mulikat', 'female', 'QSI/266660', 4, 4, 3, '2009-02-10', '25/Jan/2022', '', 'password', 0, 0),
(17, 'Abdulsataar Zainab Mosoba', 'female', 'QSI/11527', 4, 4, 3, '2007-10-10', '25/Jan/2022', '', 'password', 0, 0),
(18, 'Abiodun Damilola Fatimah', 'female', 'QSI/48542', 4, 4, 3, '2007-06-15', '25/Jan/2022', '', 'password', 0, 0),
(19, 'Adebanjo Success Seyi', 'female', 'QSI/153135', 4, 4, 3, '2007-09-12', '25/Jan/2022', '', 'password', 0, 0),
(20, 'Adedeji Clementina Omolade', 'female', 'QSI/356780', 4, 4, 3, '2008-11-29', '25/Jan/2022', '', 'password', 0, 0),
(21, 'Adekola Mariam Romoke', 'female', 'QSI/56559', 4, 4, 3, '2006-10-22', '25/Jan/2022', '', 'password', 0, 0),
(22, 'Aderibigbe Omolabake Adesola', 'female', 'QSI/385646', 4, 4, 3, '2008-03-02', '25/Jan/2022', '', 'password', 0, 0),
(23, 'Afolabi Oreoluwa Ruth', 'female', 'QSI/300743', 4, 4, 3, '2008-07-21', '25/Jan/2022', '', 'password', 0, 0),
(24, 'Agboola Roheemot Folashade', 'female', 'QSI/93780', 4, 4, 3, '2008-06-16', '25/Jan/2022', '', 'password', 0, 0),
(25, 'Ajala Oluwatosin Deborah', 'female', 'QSI/27637', 4, 4, 3, '2009-05-09', '25/Jan/2022', '', 'password', 0, 0),
(26, 'Akinbile Balikis Oluwafunmilayo', 'female', 'QSI/203385', 4, 4, 3, '2006-10-26', '25/Jan/2022', '', 'password', 0, 0),
(27, 'Amemata Endurance Omolola', 'female', 'QSI/678456', 4, 4, 3, '2008-10-14', '25/Jan/2022', '', 'password', 0, 0),
(28, 'Amolegbe Awau Tolani', 'female', 'QSI/453723', 4, 4, 3, '2008-01-21', '25/Jan/2022', '', 'password', 0, 0),
(29, 'Bamisile Rebecca Oluwatosin', 'female', 'QSI/774116', 4, 4, 3, '2008-08-07', '25/Jan/2022', '', 'password', 0, 0),
(30, 'Bello Monisola Suliyat', 'female', 'QSI/855973', 4, 4, 3, '2007-07-29', '25/Jan/2022', '', 'password', 0, 0),
(31, 'Faito Precious Oluwanifemi', 'female', 'QSI/830126', 4, 4, 3, '2007-11-16', '25/Jan/2022', '', 'password', 0, 0),
(32, 'Hammed Zainab Damola', 'female', 'QSI/194504', 4, 4, 3, '2007-05-09', '25/Jan/2022', '', 'password', 0, 0),
(33, 'Iheanacho Chinazaekpere Goodness', 'female', 'QSI/991870', 4, 4, 3, '2008-02-02', '25/Jan/2022', '', 'password', 0, 0),
(34, 'Ishola Blessing Grace ', 'female', 'QSI/552344', 4, 4, 3, '2007-12-26', '25/Jan/2022', '', 'password', 0, 0),
(35, 'Joel Charity Oluwafunmilola', 'female', 'QSI/566969', 4, 4, 3, '2006-09-20', '25/Jan/2022', '', 'password', 0, 0),
(36, 'John Rhoda Loveth', 'female', 'QSI/681842', 4, 4, 3, '2006-08-06', '25/Jan/2022', '', 'password', 0, 0),
(37, 'Johnson Esther Ayomide', 'female', 'QSI/339002', 4, 4, 3, '2008-03-14', '25/Jan/2022', '', 'password', 0, 0),
(38, 'Mathew Joy Azehlumen', 'female', 'QSI/144254', 4, 4, 3, '2006-08-15', '25/Jan/2022', '', 'password', 0, 0),
(39, 'Oduayo Rachael Foyinsodun', 'female', 'QSI/576545', 4, 4, 3, '2008-02-02', '25/Jan/2022', '', 'password', 0, 0),
(40, 'Oduniyi Elizabeth Jesunifemi', 'female', 'QSI/131355', 4, 4, 3, '2009-03-19', '25/Jan/2022', '', 'password', 0, 0),
(41, 'Olabamiji Esther Inioluwa', 'female', 'QSI/265528', 4, 4, 3, '2008-03-19', '25/Jan/2022', '', 'password', 0, 0),
(42, 'Olalekan Aishat Oyinkansola', 'female', 'QSI/260793', 3, 4, 3, '2008-12-26', '25/Jan/2022', '', 'password', 0, 0),
(43, 'Olalekan Aishat Oyinkansola', 'female', 'QSI/992656', 4, 4, 3, '2008-12-26', '25/Jan/2022', '', 'password', 0, 0),
(44, 'Olanrewaju Eniola Barakat', 'female', 'QSI/453879', 4, 4, 3, '2008-08-18', '25/Jan/2022', '', 'password', 0, 0),
(45, 'Olatoyinbo Temidayo Favour', 'female', 'QSI/596942', 4, 4, 3, '2008-08-05', '25/Jan/2022', '', 'password', 0, 0),
(46, 'Ologbenla Inioluwa Christiana', 'female', 'QSI/584825', 4, 4, 3, '2008-12-18', '25/Jan/2022', '', 'password', 0, 0),
(47, 'Oyeneye Khadijah Omolade', 'female', 'QSI/74086', 4, 4, 3, '2007-08-22', '25/Jan/2022', '', 'password', 0, 0),
(48, 'Saula Kauthar Olamiposi', 'female', 'QSI/161206', 4, 4, 3, '2006-12-08', '25/Jan/2022', '', 'password', 0, 0),
(49, 'Taiwo Ifeoluwa Esther', 'female', 'QSI/787658', 4, 4, 3, '2007-05-29', '25/Jan/2022', '', 'password', 0, 0),
(50, 'Taofeeq Aishat Omowumi', 'female', 'QSI/23652', 4, 4, 3, '2007-05-22', '25/Jan/2022', '', 'password', 0, 0),
(51, 'Alphonso Esther Temiloluwa', 'female', 'QSI/699908', 5, 1, 3, '2008-04-15', '10/Mar/2022', '', 'password', 0, 0),
(52, 'aaaaaaaaaaa', 'female', 'QSI/911791', 0, 0, 0, '', '12/Mar/2022', '', 'password', 0, 0),
(53, 'Akeem', 'female', 'QSI/4674', 4, 1, 0, '', '12/Mar/2022', '', 'password', 0, 0),
(54, 'AbdulAzeez AmotulAzeez Moriyike', 'female', 'QSI/584208', 4, 1, 3, '2008-03-21', '12/Mar/2022', '', 'password', 0, 0),
(55, 'Akeem', 'female', 'QSI/872497', 2, 2, 1, '', '12/Mar/2022', '', 'password', 0, 0),
(56, 'Adebisi Raheemat Adenike', 'female', 'QSI/671544', 4, 6, 3, '2007-05-16', '17/Mar/2022', '', 'password', 0, 0),
(57, 'Adebisi Salmat Oluwabunmi', 'female', 'QSI/281502', 4, 6, 3, '2007-05-17', '17/Mar/2022', '', 'password', 0, 0),
(58, 'Adebusayo Rachael Gbotemi', 'female', 'QSI/553330', 4, 6, 3, '2007-10-27', '17/Mar/2022', '', 'password', 0, 0),
(59, 'Ademola Success Abifoluwa', 'female', 'QSI/101970', 4, 6, 3, '2009-01-11', '17/Mar/2022', '', 'password', 0, 0),
(60, 'Adegbuyi Eniola Aishat', 'female', 'QSI/724247', 4, 6, 3, '2007-10-07', '17/Mar/2022', '', 'password', 0, 0),
(61, 'Adegoke Bolanle Omolola', 'female', 'QSI/983198', 4, 6, 3, '2006-02-17', '17/Mar/2022', '', 'password', 0, 0),
(62, 'Adigun Moyosore Muibat', 'female', 'QSI/788290', 4, 6, 3, '2008-09-21', '17/Mar/2022', '', 'password', 0, 0),
(63, 'Adekunle Amen Ayoade', 'female', 'QSI/689241', 4, 6, 3, '2008-08-25', '17/Mar/2022', '', 'password', 0, 0),
(64, 'Adekunle Yetunde Esther', 'female', 'QSI/100252', 4, 6, 3, '2003-03-14', '17/Mar/2022', '', 'password', 0, 0),
(65, 'Adekusibe Hussainat Adejumoke', 'female', 'QSI/662288', 4, 6, 3, '2009-01-24', '17/Mar/2022', '', 'password', 0, 0),
(66, 'Adewale Motunrayo Faith', 'female', 'QSI/491275', 4, 6, 3, '2006-04-24', '17/Mar/2022', '', 'password', 0, 0),
(67, 'Adewoye Darasimi Ruth', 'female', 'QSI/112699', 4, 6, 3, '2008-07-11', '17/Mar/2022', '', 'password', 0, 0),
(68, 'Afonja Aliyah Adeyinka', 'female', 'QSI/941204', 4, 6, 3, '2006-01-28', '17/Mar/2022', '', 'password', 0, 0),
(69, 'Aguda Victoria Zainab', 'female', 'QSI/533137', 4, 6, 3, '2009-10-05', '17/Mar/2022', '', 'password', 0, 0),
(70, 'Ajadi Erioreofe Victoria', 'female', 'QSI/874192', 4, 6, 3, '2008-11-04', '17/Mar/2022', '', 'password', 0, 0),
(71, 'Ajayi Esther Boluwatife ', 'female', 'QSI/11441', 4, 6, 3, '2007-12-03', '17/Mar/2022', '', 'password', 0, 0),
(72, 'Adekoya Kanyinsola Christianah', 'female', 'QSI/279709', 4, 6, 3, '2007-11-08', '17/Mar/2022', '', 'password', 0, 0),
(73, 'Akande Islamiat Desire', 'female', 'QSI/283806', 4, 6, 3, '2009-06-28', '17/Mar/2022', '', 'password', 0, 0),
(74, 'Alabi Azeezat Esther', 'female', 'QSI/147017', 4, 6, 3, '2006-02-07', '17/Mar/2022', '', 'password', 0, 0),
(75, 'Alamoran Damilola Olamide', 'female', 'QSI/365602', 4, 6, 3, '2006-04-10', '17/Mar/2022', '', 'password', 0, 0),
(76, 'Amosun Olaoluwapo Deborah', 'female', 'QSI/230448', 4, 6, 3, '2004-11-29', '17/Mar/2022', '', 'password', 0, 0),
(77, 'Anibire Oluwatunmise Ifeoluwa', 'female', 'QSI/151295', 4, 6, 3, '2008-09-17', '17/Mar/2022', '', 'password', 0, 0),
(78, 'Animashaun Faridat Adekanyinsola', 'female', 'QSI/111118', 4, 6, 3, '2008-10-25', '17/Mar/2022', '', 'password', 0, 0),
(79, 'Arowolo Moyosore Testimony', 'female', 'QSI/617855', 4, 6, 3, '2008-02-07', '17/Mar/2022', '', 'password', 0, 0),
(80, 'Arowosegbe Faridat Oyindamola', 'female', 'QSI/718222', 4, 6, 3, '2006-03-06', '17/Mar/2022', '', 'password', 0, 0),
(81, 'Ashamu Boluwatife Temilade', 'female', 'QSI/453226', 4, 6, 3, '2006-02-22', '17/Mar/2022', '', 'password', 0, 0),
(82, 'Asikolaye Selimot Ayomide', 'female', 'QSI/737044', 4, 6, 3, '2006-01-07', '17/Mar/2022', '', 'password', 0, 0),
(83, 'Ayeni Vivian Omorinsola', 'female', 'QSI/18425', 4, 6, 3, '2008-01-16', '17/Mar/2022', '', 'password', 0, 0),
(84, 'Azeez Rofiat Ibukun', 'female', 'QSI/130263', 4, 6, 3, '2009-05-10', '17/Mar/2022', '', 'password', 0, 0),
(85, 'Bassey Mary Abigail', 'female', 'QSI/167240', 4, 6, 3, '2007-05-04', '17/Mar/2022', '', 'password', 0, 0),
(86, 'Balogun Sururoh Mopelola', 'female', 'QSI/699218', 4, 6, 3, '2008-10-20', '17/Mar/2022', '', 'password', 0, 0),
(87, 'Fapohunda Esther Ifeoluwa', 'female', 'QSI/89298', 4, 6, 3, '2008-05-16', '17/Mar/2022', '', 'password', 0, 0),
(88, 'Fapohunda Precious Boluwatife', 'female', 'QSI/424834', 4, 6, 3, '2008-08-21', '17/Mar/2022', '', 'password', 0, 0),
(89, 'Fatai Bisola Suliyat', 'female', 'QSI/887567', 4, 6, 3, '2008-08-04', '17/Mar/2022', '', 'password', 0, 0),
(90, 'Folarin Esther Fiyinfoluwa', 'female', 'QSI/65025', 4, 6, 3, '2008-01-06', '17/Mar/2022', '', 'password', 0, 0),
(91, 'Ifasanya Aishat Owolabi', 'female', 'QSI/334388', 4, 6, 3, '2005-01-10', '17/Mar/2022', '', 'password', 0, 0),
(92, 'Joseph Mary Chidawa', 'female', 'QSI/811435', 4, 6, 3, '2005-02-10', '17/Mar/2022', '', 'password', 0, 0),
(93, 'Kazeem Islamiat Oluwapelumi', 'female', 'QSI/697954', 4, 6, 3, '2009-04-21', '17/Mar/2022', '', 'password', 0, 0),
(94, 'Abdulhakeem Aishat Funmilayo', 'female', 'QSI/260162', 4, 5, 3, '2007-05-23', '17/Mar/2022', '', 'password', 0, 0),
(95, 'Lasisi Rodiat Olalere', 'female', 'QSI/706008', 4, 6, 3, '2008-01-12', '17/Mar/2022', '', 'password', 0, 0),
(96, 'Mobolaji Justinah Bamidele', 'female', 'QSI/88827', 4, 6, 3, '2006-10-08', '17/Mar/2022', '', 'password', 0, 0),
(97, 'Moyofola Kabirat Abidemi', 'female', 'QSI/970566', 4, 6, 3, '2002-05-08', '17/Mar/2022', '', 'password', 0, 0),
(98, 'Abdulazeez Rodiat Lolade', 'female', 'QSI/296463', 4, 5, 3, '2007-03-12', '17/Mar/2022', '', 'password', 0, 0),
(99, 'Muhammed Aishat Adebayo', 'female', 'QSI/414439', 4, 6, 3, '2008-06-08', '17/Mar/2022', '', 'password', 0, 0),
(100, 'Abdulsalam Rokibat Adeola', 'female', 'QSI/589124', 4, 5, 3, '2007-10-23', '17/Mar/2022', '', 'password', 0, 0),
(101, 'Muftau Anuoluwapo Rokibat', 'female', 'QSI/895083', 4, 6, 3, '2008-04-16', '17/Mar/2022', '', 'password', 0, 0),
(102, 'Adebisi Suliyat Olawunmi', 'female', 'QSI/94428', 4, 5, 3, '2007-04-20', '17/Mar/2022', '', 'password', 0, 0),
(103, 'Mustapha Zeenat Opemipo', 'female', 'QSI/695552', 4, 6, 3, '2008-11-14', '17/Mar/2022', '', 'password', 0, 0),
(104, 'Adeleye Shalom Ayomide', 'female', 'QSI/51519', 4, 5, 3, '2007-06-30', '17/Mar/2022', '', 'password', 0, 0),
(105, 'Obilade Rokibat Omobolanle', 'female', 'QSI/344624', 4, 6, 3, '2007-06-02', '17/Mar/2022', '', 'password', 0, 0),
(106, 'Odunayo Mercy Oluwakemisola', 'female', 'QSI/913238', 4, 6, 3, '2008-09-12', '17/Mar/2022', '', 'password', 0, 0),
(107, 'Aderemi Afolajaiye Mofoworade', 'female', 'QSI/627857', 4, 5, 3, '2007-05-29', '17/Mar/2022', '', 'password', 0, 0),
(108, 'Ogooluwa Monsurat Toyosi', 'female', 'QSI/434690', 4, 6, 3, '2008-05-30', '17/Mar/2022', '', 'password', 0, 0),
(109, 'Adesemoye Faith Eniola', 'female', 'QSI/862914', 4, 5, 3, '2007-09-18', '17/Mar/2022', '', 'password', 0, 0),
(110, 'Ogunleye Eniola Grace', 'female', 'QSI/714029', 4, 6, 3, '2007-08-18', '17/Mar/2022', '', 'password', 0, 0),
(111, 'Okewoye Darasimi Oluwanifemi', 'female', 'QSI/451126', 4, 6, 3, '2007-12-25', '17/Mar/2022', '', 'password', 0, 0),
(112, 'Okunola Feyishara Kadijat', 'female', 'QSI/950286', 4, 6, 3, '2006-07-09', '17/Mar/2022', '', 'password', 0, 0),
(113, 'Agbita Iroghene Praise', 'female', 'QSI/490250', 4, 5, 3, '', '17/Mar/2022', '', 'password', 0, 0),
(114, 'Oladejo Rukoyat Eniola', 'female', 'QSI/812700', 4, 6, 3, '2005-11-24', '17/Mar/2022', '', 'password', 0, 0),
(115, 'Agboola Fathia Ibironke', 'female', 'QSI/119588', 4, 5, 3, '2005-03-03', '17/Mar/2022', '', 'password', 0, 0),
(116, 'Oladipo Mariam Olayemi', 'female', 'QSI/269237', 4, 6, 3, '2008-08-16', '17/Mar/2022', '', 'password', 0, 0),
(117, 'Olalekan Taiwo Grace', 'female', 'QSI/295760', 4, 6, 3, '2007-07-04', '17/Mar/2022', '', 'password', 0, 0),
(118, 'Olajide Nifemi Funmi', 'female', 'QSI/345403', 4, 6, 3, '2006-01-06', '17/Mar/2022', '', 'password', 0, 0),
(119, 'Olaniyan Itunu Victoria', 'female', 'QSI/962132', 4, 6, 3, '2008-12-26', '17/Mar/2022', '', 'password', 0, 0),
(120, 'Olanusi Pelumi Esther', 'female', 'QSI/431606', 4, 6, 3, '2008-08-04', '17/Mar/2022', '', 'password', 0, 0),
(121, 'Olapade Blessing Elizabeth', 'female', 'QSI/384796', 4, 6, 3, '2005-05-21', '17/Mar/2022', '', 'password', 0, 0),
(122, 'Olasupo Pelumi Favour', 'female', 'QSI/857162', 4, 6, 3, '2006-07-17', '17/Mar/2022', '', 'password', 0, 0),
(123, 'Olude Felicia Oluwarantimi', 'female', 'QSI/897173', 4, 6, 3, '2005-07-17', '17/Mar/2022', '', 'password', 0, 0),
(124, 'Oluwafemi Toluwanimi', 'female', 'QSI/999781', 4, 6, 3, '2007-06-19', '17/Mar/2022', '', 'password', 0, 0),
(125, 'Ahmad Rodiyah Ajoke', 'female', 'QSI/595677', 4, 5, 3, '2007-01-01', '17/Mar/2022', '', 'password', 0, 0),
(126, 'Omoniyi Boluwatife Victoria ', 'female', 'QSI/430945', 4, 6, 3, '2008-04-06', '17/Mar/2022', '', 'password', 0, 0),
(127, 'Omojola Eniola Mojisola ', 'female', 'QSI/294308', 4, 6, 3, '2008-02-03', '17/Mar/2022', '', 'password', 0, 0),
(128, 'Otunonye Genevieve Ngosi', 'female', 'QSI/776763', 4, 6, 3, '2007-04-28', '17/Mar/2022', '', 'password', 0, 0),
(129, 'Oyetayo Eniola Esther', 'female', 'QSI/138923', 4, 6, 3, '2006-02-26', '17/Mar/2022', '', 'password', 0, 0),
(130, 'Oyeniyi Mariam Moyosore', 'female', 'QSI/252584', 4, 6, 3, '2008-08-01', '17/Mar/2022', '', 'password', 0, 0),
(131, 'Oyewunmi Zainab Omolara', 'female', 'QSI/778374', 4, 6, 3, '2008-06-29', '17/Mar/2022', '', 'password', 0, 0),
(132, 'Raheem Khadijat Taiwo', 'female', 'QSI/170348', 4, 6, 3, '2007-01-13', '17/Mar/2022', '', 'password', 0, 0),
(133, 'Rahmon Rukoyat Ayomide', 'female', 'QSI/721130', 4, 6, 3, '2007-12-24', '17/Mar/2022', '', 'password', 0, 0),
(134, 'Salami Alimot Ayomide', 'female', 'QSI/522449', 4, 6, 3, '2004-02-26', '17/Mar/2022', '', 'password', 0, 0),
(135, 'Salami Iyanuoluwa Precious', 'female', 'QSI/242173', 4, 6, 3, '2006-11-14', '17/Mar/2022', '', 'password', 0, 0),
(136, 'Salami Pamilerin Ajoke', 'female', 'QSI/843573', 4, 6, 3, '2007-07-31', '17/Mar/2022', '', 'password', 0, 0),
(137, 'Salahudeen Fatimah Olaitan', 'female', 'QSI/119708', 4, 6, 3, '2007-06-03', '17/Mar/2022', '', 'password', 0, 0),
(138, 'Samuel Deborah Victory', 'female', 'QSI/114378', 4, 6, 3, '2006-05-20', '17/Mar/2022', '', 'password', 0, 0),
(139, 'Solomon Boluwatife Oluwafeyikemi', 'female', 'QSI/431795', 4, 6, 3, '2008-05-09', '17/Mar/2022', '', 'password', 0, 0),
(140, 'Soretire Helen Ajoke', 'female', 'QSI/798127', 4, 6, 3, '2008-04-27', '17/Mar/2022', '', 'password', 0, 0),
(141, 'Sosanya Sharon Oluwatobi', 'female', 'QSI/878867', 4, 6, 3, '2008-12-09', '17/Mar/2022', '', 'password', 0, 0),
(142, 'Taofik Ruth Odunayo', 'female', 'QSI/669298', 4, 6, 3, '2005-12-18', '17/Mar/2022', '', 'password', 0, 0),
(143, 'Ubandawaki Aishat Odunayo ', 'female', 'QSI/631042', 4, 6, 3, '2006-12-24', '17/Mar/2022', '', 'password', 0, 0),
(144, 'Ubah Loveth Munachi', 'female', 'QSI/62790', 4, 6, 3, '2007-05-17', '17/Mar/2022', '', 'password', 0, 0),
(145, 'Uthman Azeezat Taiwo ', 'female', 'QSI/325297', 4, 6, 3, '2005-09-12', '17/Mar/2022', '', 'password', 0, 0),
(146, 'Yakub Mariam Asabi', 'female', 'QSI/433572', 4, 6, 3, '2005-06-10', '17/Mar/2022', '', 'password', 0, 0),
(147, 'Akande Oreofe Flourence', 'female', 'QSI/575220', 4, 5, 3, '2008-12-03', '20/Mar/2022', '', 'password', 0, 0),
(148, 'Akinrefon Blessing Damiola', 'female', 'QSI/823169', 4, 5, 3, '2008-12-04', '20/Mar/2022', '', 'password', 0, 0),
(149, 'Akintayo Hassanat Taiwo', 'female', 'QSI/639175', 4, 5, 3, '2008-04-17', '20/Mar/2022', '', 'password', 0, 0),
(150, 'Amusan Oluwatimileyin Joy', 'female', 'QSI/99897', 4, 5, 3, '2008-05-16', '20/Mar/2022', '', 'password', 0, 0),
(151, 'Ayinde Mutmainat Adepeju', 'female', 'QSI/535463', 4, 5, 3, '2008-07-23', '20/Mar/2022', '', 'password', 0, 0),
(152, 'Ayinla Felicia Motunrayo', 'female', 'QSI/331736', 4, 5, 3, '2008-10-02', '20/Mar/2022', '', 'password', 0, 0),
(153, 'Bankole Opeyemi Halleluyah', 'female', 'QSI/514404', 4, 5, 3, '2008-11-16', '20/Mar/2022', '', 'password', 0, 0),
(154, 'Banjo Ibukun Elizabeth', 'female', 'QSI/620082', 4, 5, 3, '2008-06-29', '20/Mar/2022', '', 'password', 0, 0),
(155, 'Emah Angel Oiza', 'female', 'QSI/187656', 4, 5, 3, '2009-07-16', '20/Mar/2022', '', 'password', 0, 0),
(156, 'Eromosele Joy Mercy', 'female', 'QSI/266031', 4, 5, 3, '2008-07-10', '20/Mar/2022', '', 'password', 0, 0),
(157, 'Ezeh Sethianah Oluwamo', 'female', 'QSI/711342', 4, 5, 3, '2008-07-24', '20/Mar/2022', '', 'password', 0, 0),
(158, 'Fabowale Christianah Inioluwa', 'female', 'QSI/108986', 4, 5, 3, '2007-12-10', '20/Mar/2022', '', 'password', 0, 0),
(159, 'Fabiyi Mary Oluwaseyifunmi', 'female', 'QSI/396712', 4, 5, 3, '2007-04-13', '20/Mar/2022', '', 'password', 0, 0),
(160, 'Folorunsho Great Grace Motayo', 'female', 'QSI/916923', 4, 5, 3, '2009-11-01', '20/Mar/2022', '', 'password', 0, 0),
(161, 'Gbadamosi Rukoyah Feranmi', 'female', 'QSI/903090', 4, 5, 3, '2006-06-06', '20/Mar/2022', '', 'password', 0, 0),
(162, 'Hassan Basirat Taiwo', 'female', 'QSI/647354', 4, 5, 3, '2005-01-18', '20/Mar/2022', '', 'password', 0, 0),
(163, 'Igwe Callista Chimuchemu', 'female', 'QSI/773423', 4, 5, 3, '2008-02-04', '20/Mar/2022', '', 'password', 0, 0),
(164, 'Iheagwu Chinayenwa Rita', 'female', 'QSI/754190', 4, 5, 3, '', '20/Mar/2022', '', 'password', 0, 0),
(165, 'Ilori Deborah Imole', 'female', 'QSI/337559', 4, 5, 3, '2007-05-17', '20/Mar/2022', '', 'password', 0, 0),
(166, 'Isawe Christiana Odunayo', 'female', 'QSI/176304', 4, 5, 3, '2007-01-27', '20/Mar/2022', '', 'password', 0, 0),
(167, 'Ismail Monsurah Opeyemi', 'female', 'QSI/920259', 4, 5, 3, '2007-08-04', '20/Mar/2022', '', 'password', 0, 0),
(168, 'Jegede Joy Eniola', 'female', 'QSI/726874', 4, 5, 3, '2008-04-17', '20/Mar/2022', '', 'password', 0, 0),
(169, 'Joseph Deborah Victoria', 'female', 'QSI/791010', 4, 5, 3, '2008-04-08', '20/Mar/2022', '', 'password', 0, 0),
(170, 'Lukman Haliyat Adeola', 'female', 'QSI/881907', 4, 5, 3, '2008-08-31', '20/Mar/2022', '', 'password', 0, 0),
(171, 'Makanjuola Esther Happiness', 'female', 'QSI/768274', 4, 5, 3, '2008-03-30', '20/Mar/2022', '', 'password', 0, 0),
(172, 'Moshood Aliyat Oyindamola', 'female', 'QSI/915949', 4, 5, 3, '2009-07-29', '20/Mar/2022', '', 'password', 0, 0),
(173, 'Muritala Oreoluwa Adeola', 'female', 'QSI/709528', 4, 5, 3, '2006-10-06', '20/Mar/2022', '', 'password', 0, 0),
(174, 'Mustapha Nofisat Omowumi', 'female', 'QSI/815986', 4, 5, 3, '2007-07-02', '20/Mar/2022', '', 'password', 0, 0),
(175, 'Nasiru Ramatu', 'female', 'QSI/396907', 4, 5, 3, '2006-11-22', '20/Mar/2022', '', 'password', 0, 0),
(176, 'Obasa Precious Oluwalo', 'female', 'QSI/940544', 4, 5, 3, '2006-11-22', '20/Mar/2022', '', 'password', 0, 0),
(177, 'Obaje Suzan Peace', 'female', 'QSI/640113', 4, 5, 3, '2006-05-06', '20/Mar/2022', '', 'password', 0, 0),
(178, 'Odeyemi Favour Olawumi', 'female', 'QSI/38998', 4, 5, 3, '2007-06-26', '20/Mar/2022', '', 'password', 0, 0),
(179, 'Odo Marvellous Temiloluwa', 'female', 'QSI/654407', 4, 5, 3, '2008-03-24', '20/Mar/2022', '', 'password', 0, 0),
(180, 'Odunlami Dorcas Pelumi', 'female', 'QSI/962068', 4, 5, 3, '2007-07-31', '20/Mar/2022', '', 'password', 0, 0),
(181, 'Ogunleye Victoria Adeola', 'female', 'QSI/516431', 4, 5, 3, '2009-04-22', '20/Mar/2022', '', 'password', 0, 0),
(182, 'Ogunsola Precious Nifemi', 'female', 'QSI/423349', 4, 5, 3, '2008-05-07', '20/Mar/2022', '', 'password', 0, 0),
(183, 'Ojuolape Rofiat Moyosore', 'female', 'QSI/954307', 4, 5, 3, '2009-02-22', '20/Mar/2022', '', 'password', 0, 0),
(184, 'Olagoke Aliyah Ayomide', 'female', 'QSI/889456', 4, 5, 3, '2008-04-13', '20/Mar/2022', '', 'password', 0, 0),
(185, 'Olakunle Aishat Oyindamola', 'female', 'QSI/63181', 4, 5, 3, '2008-10-01', '20/Mar/2022', '', 'password', 0, 0),
(186, 'Olalekan Kehinde Glory', 'female', 'QSI/754875', 4, 5, 3, '2007-07-04', '20/Mar/2022', '', 'password', 0, 0),
(187, 'Olalekan Islamiat Aanuoluwapo', 'female', 'QSI/319910', 4, 5, 3, '2008-01-10', '20/Mar/2022', '', 'password', 0, 0),
(188, 'Olaniran Hikmat Olajumoke', 'female', 'QSI/486447', 4, 5, 3, '2007-12-05', '20/Mar/2022', '', 'password', 0, 0),
(189, 'Olaniyi Eniola Rebecca', 'female', 'QSI/152513', 4, 5, 3, '', '20/Mar/2022', '', 'password', 0, 0),
(190, 'Olaniyi Rejoice Pamilerin', 'female', 'QSI/624590', 4, 5, 3, '2008-10-07', '20/Mar/2022', '', 'password', 0, 0),
(191, 'Olarinde Ibukun Victoria', 'female', 'QSI/701651', 4, 5, 3, '2008-02-03', '20/Mar/2022', '', 'password', 0, 0),
(192, 'Olasupo Rodiat Olamide', 'female', 'QSI/749898', 4, 5, 3, '2007-06-13', '20/Mar/2022', '', 'password', 0, 0),
(193, 'Olayiwola Rashidat Feranmi', 'female', 'QSI/930752', 4, 5, 3, '2007-05-21', '20/Mar/2022', '', 'password', 0, 0),
(194, 'Oleka Precious Mmesoma', 'female', 'QSI/888061', 4, 5, 3, '2008-10-12', '20/Mar/2022', '', 'password', 0, 0),
(195, 'Oloyede Blessing Elizabeth', 'female', 'QSI/302672', 4, 5, 3, '2007-05-05', '20/Mar/2022', '', 'password', 0, 0),
(196, 'Oluwaseun Esther Odunayo', 'female', 'QSI/64677', 4, 5, 3, '2008-12-02', '20/Mar/2022', '', 'password', 0, 0),
(197, 'Oni Elizabeth Iyanuoluwa', 'female', 'QSI/186651', 4, 5, 3, '2009-06-03', '20/Mar/2022', '', 'password', 0, 0),
(198, 'Onifade Adesola Fatimah', 'female', 'QSI/212271', 4, 5, 3, '2009-03-31', '20/Mar/2022', '', 'password', 0, 0),
(199, 'Oniyire Ifeoluwa Esther', 'female', 'QSI/260008', 4, 5, 3, '2005-10-17', '20/Mar/2022', '', 'password', 0, 0),
(200, 'Oseni Barakat Oyindamola', 'female', 'QSI/834141', 4, 5, 3, '2007-03-11', '20/Mar/2022', '', 'password', 0, 0),
(201, 'Oseni Shalom Dolapo', 'female', 'QSI/458683', 4, 5, 3, '2008-06-07', '20/Mar/2022', '', 'password', 0, 0),
(202, 'Oyedemi Moyinoluwa Maria', 'female', 'QSI/307798', 4, 5, 3, '2008-03-21', '20/Mar/2022', '', 'password', 0, 0),
(203, 'Rasaq Rukayat Olamide', 'female', 'QSI/869286', 4, 5, 3, '2008-04-08', '20/Mar/2022', '', 'password', 0, 0),
(204, 'Salahudeen Munimah Aderinsola', 'female', 'QSI/42947', 4, 5, 3, '2008-05-24', '20/Mar/2022', '', 'password', 0, 0),
(205, 'Seteolu Aishat Ajoke', 'female', 'QSI/57375', 4, 5, 3, '2008-04-13', '20/Mar/2022', '', 'password', 0, 0),
(206, 'Shakirullahi Rodiat Adeola', 'female', 'QSI/376716', 4, 5, 3, '2007-11-11', '20/Mar/2022', '', 'password', 0, 0),
(207, 'Shuaib Ikimot Oyinkansola', 'female', 'QSI/572034', 4, 5, 3, '2007-07-07', '20/Mar/2022', '', 'password', 0, 0),
(208, 'Sunday Ayomide Oreoluwa', 'female', 'QSI/35814', 4, 5, 3, '2008-12-16', '20/Mar/2022', '', 'password', 0, 0),
(209, 'Yohanna Rejoice Lauraba ', 'female', 'QSI/760739', 4, 5, 3, '2007-08-07', '20/Mar/2022', '', 'password', 0, 0),
(210, 'Wahab Oluwatunmise Taofikat', 'female', 'QSI/513147', 4, 5, 3, '2007-09-05', '20/Mar/2022', '', 'password', 0, 0),
(211, 'Yakeen Aishat Abolore', 'female', 'QSI/356757', 4, 5, 3, '2009-11-19', '20/Mar/2022', '', 'password', 0, 0),
(212, 'Bankole Opeyemi Shalom', 'female', 'QSI/994756', 4, 5, 3, '2008-03-07', '20/Mar/2022', '', 'password', 0, 0),
(213, 'Adesokan Temitope Barakat', 'female', 'QSI/414657', 4, 5, 3, '2008-05-07', '20/Mar/2022', '', 'password', 0, 0),
(214, 'Popoola Marvellous ', 'female', 'QSI/219906', 4, 5, 3, '', '20/Mar/2022', '', 'password', 0, 0),
(215, 'Jacob Marvellous Princess', 'female', 'QSI/953110', 4, 5, 3, '2006-12-20', '20/Mar/2022', '', 'password', 0, 0),
(216, 'Abass Motunrayo Anuoluwapo', 'female', 'QSI/314216', 5, 2, 3, '2005-09-30', '21/Mar/2022', '', 'password', 0, 0),
(217, 'Abdulhamid Fathia', 'female', 'QSI/443247', 5, 2, 3, '2008-02-28', '21/Mar/2022', '', 'password', 0, 0),
(218, 'Abdullateef Asmau Folashade', 'female', 'QSI/660621', 5, 2, 3, '2005-11-14', '21/Mar/2022', '', 'password', 0, 0),
(219, 'AbdulWahab Aisha', 'female', 'QSI/944795', 5, 2, 3, '2008-08-05', '21/Mar/2022', '', 'password', 0, 0),
(220, 'Abimbola Omotolani', 'female', 'QSI/887782', 5, 2, 3, '2007-09-10', '21/Mar/2022', '', 'password', 0, 0),
(221, 'Abonyi Precious Benedicta', 'female', 'QSI/148844', 5, 2, 3, '2006-06-29', '21/Mar/2022', '', 'password', 0, 0),
(222, 'Adebayo Mary', 'female', 'QSI/388197', 5, 2, 3, '2004-12-15', '21/Mar/2022', '', 'password', 0, 0),
(223, 'Adebiyi Darasimi Ewaoluwa', 'female', 'QSI/755', 5, 2, 3, '2008-08-30', '21/Mar/2022', '', 'password', 0, 0),
(224, 'Adedeji Opemipo Moyinoluwa', 'female', 'QSI/367632', 5, 2, 3, '2006-08-24', '21/Mar/2022', '', 'password', 0, 0),
(225, 'Adekoya Temiloluwa Rosemary', 'female', 'QSI/545378', 5, 2, 3, '2007-12-05', '21/Mar/2022', '', 'password', 0, 0),
(226, 'Adelabu Mary', 'female', 'QSI/376053', 5, 2, 3, '0207-12-24', '21/Mar/2022', '', 'password', 0, 0),
(227, 'Adeleke Adetayo Victoria', 'female', 'QSI/68085', 5, 2, 3, '2006-11-06', '21/Mar/2022', '', 'password', 0, 0),
(228, 'Adeniyi Winner', 'female', 'QSI/901123', 5, 2, 3, '2007-10-24', '21/Mar/2022', '', 'password', 0, 0),
(229, 'Adepoju Favour', 'female', 'QSI/832468', 5, 2, 3, '2006-09-04', '21/Mar/2022', '', 'password', 0, 0),
(230, 'Afolabi Abigeal Oluwatobilola', 'female', 'QSI/921207', 5, 2, 3, '2007-09-13', '21/Mar/2022', '', 'password', 0, 0),
(231, 'Alayande Omowunmi', 'female', 'QSI/533230', 5, 2, 3, '2007-01-08', '21/Mar/2022', '', 'password', 0, 0),
(232, 'Aminu Aliyah Omotolani', 'female', 'QSI/714779', 5, 2, 3, '2006-09-22', '21/Mar/2022', '', 'password', 0, 0),
(233, 'Amuda Kafilat Oluwafunmilayo', 'female', 'QSI/526945', 5, 2, 3, '2006-09-11', '21/Mar/2022', '', 'password', 0, 0),
(234, 'Animasaun Sofiat', 'female', 'QSI/281416', 5, 2, 3, '2006-10-05', '21/Mar/2022', '', 'password', 0, 0),
(235, 'Arowobusoye Funmilayo', 'female', 'QSI/177711', 5, 2, 3, '2007-03-22', '21/Mar/2022', '', 'password', 0, 0),
(236, 'Babaunde Jenifer Idunuoluwa', 'female', 'QSI/145276', 5, 2, 3, '2006-04-12', '21/Mar/2022', '', 'password', 0, 0),
(237, 'Daniel Ada Deborah', 'female', 'QSI/781732', 5, 2, 3, '2006-05-06', '21/Mar/2022', '', 'password', 0, 0),
(238, 'Dopamu Rokibat', 'female', 'QSI/84200', 5, 2, 3, '2007-01-10', '21/Mar/2022', '', 'password', 0, 0),
(239, 'Fagbamila Mojurereoluwa', 'female', 'QSI/183773', 5, 2, 3, '2006-12-15', '21/Mar/2022', '', 'password', 0, 0),
(240, 'George Agnes', 'female', 'QSI/754626', 5, 2, 3, '2006-05-24', '21/Mar/2022', '', 'password', 0, 0),
(241, 'Hamzat Fathia Omoyetunde', 'female', 'QSI/320719', 5, 2, 3, '2007-03-23', '21/Mar/2022', '', 'password', 0, 0),
(242, 'Ibrahim Olaide', 'female', 'QSI/942962', 5, 2, 3, '2007-02-18', '21/Mar/2022', '', 'password', 0, 0),
(243, 'Idris Mozeedat Oluwanifemi', 'female', 'QSI/147069', 5, 2, 3, '2006-03-21', '21/Mar/2022', '', 'password', 0, 0),
(244, 'Jayeola Damilola', 'female', 'QSI/186714', 5, 2, 3, '2005-10-18', '21/Mar/2022', '', 'password', 0, 0),
(245, 'Johnson Semilore', 'female', 'QSI/726080', 5, 2, 3, '2007-09-23', '21/Mar/2022', '', 'password', 0, 0),
(246, 'Jolaoso Aliyat Omowunmi', 'female', 'QSI/435019', 5, 2, 3, '2007-06-11', '21/Mar/2022', '', 'password', 0, 0),
(247, 'Joseph Success', 'female', 'QSI/975969', 5, 2, 3, '2008-06-27', '21/Mar/2022', '', 'password', 0, 0),
(248, 'Lawal Wuraola Zainab', 'female', 'QSI/681008', 5, 2, 3, '2007-01-28', '21/Mar/2022', '', 'password', 0, 0),
(249, 'Mozie Mercy', 'female', 'QSI/438958', 5, 2, 3, '2007-07-10', '21/Mar/2022', '', 'password', 0, 0),
(250, 'Muhammed Shifau', 'female', 'QSI/336398', 5, 2, 3, '2006-06-06', '21/Mar/2022', '', 'password', 0, 0),
(251, 'Nathaniel Wuraola', 'female', 'QSI/894658', 5, 2, 3, '2009-03-01', '21/Mar/2022', '', 'password', 0, 0),
(252, 'Nuokeji Praise ', 'female', 'QSI/229561', 5, 2, 3, '2006-07-15', '21/Mar/2022', '', 'password', 0, 0),
(253, 'Obabiyi Neimah', 'female', 'QSI/175127', 5, 2, 3, '2006-12-19', '21/Mar/2022', '', 'password', 0, 0),
(254, 'Obi Cynthia Chioma', 'female', 'QSI/991547', 5, 2, 3, '2006-06-06', '21/Mar/2022', '', 'password', 0, 0),
(255, 'Odebiyi Naheemat Olamide', 'female', 'QSI/147274', 5, 2, 3, '2007-10-15', '21/Mar/2022', '', 'password', 0, 0),
(256, 'Odubiyi Modinat', 'female', 'QSI/318621', 5, 2, 3, '2007-11-23', '21/Mar/2022', '', 'password', 0, 0),
(257, 'Ogundare Bolatito Grace', 'female', 'QSI/824199', 5, 2, 3, '2007-04-28', '21/Mar/2022', '', 'password', 0, 0),
(258, 'Ogunwemimo Anjola Precious', 'female', 'QSI/264216', 5, 2, 3, '2007-05-21', '21/Mar/2022', '', 'password', 0, 0),
(259, 'Ojo Abisola Oluwabunmi', 'female', 'QSI/330154', 5, 2, 3, '2007-09-11', '21/Mar/2022', '', 'password', 0, 0),
(260, 'Okoromadu Adama Oluchi', 'female', 'QSI/385867', 5, 2, 3, '2006-06-16', '21/Mar/2022', '', 'password', 0, 0),
(261, 'Okunola Mary Oluwatosin', 'female', 'QSI/96037', 5, 2, 3, '2006-12-20', '21/Mar/2022', '', 'password', 0, 0),
(262, 'Olajide Joy', 'female', 'QSI/167796', 5, 2, 3, '', '21/Mar/2022', '', 'password', 0, 0),
(263, 'Olasupo Olamide Omowonuola', 'female', 'QSI/293127', 5, 2, 3, '2008-05-06', '21/Mar/2022', '', 'password', 0, 0),
(264, 'Omitomo Feranmi Mary', 'female', 'QSI/576040', 5, 2, 3, '2007-10-11', '21/Mar/2022', '', 'password', 0, 0),
(265, 'Omobola Winner', 'female', 'QSI/569171', 5, 2, 3, '2007-07-28', '21/Mar/2022', '', 'password', 0, 0),
(266, 'Onaolapo Ayoola Racheal', 'female', 'QSI/173526', 5, 2, 3, '2008-01-08', '21/Mar/2022', '', 'password', 0, 0),
(267, 'Onafuye Deborah', 'female', 'QSI/931481', 5, 2, 3, '2005-01-04', '21/Mar/2022', '', 'password', 0, 0),
(268, 'Raji YusrahOlabisi', 'female', 'QSI/258201', 5, 2, 3, '2007-05-09', '21/Mar/2022', '', 'password', 0, 0),
(269, 'Salami Darasimi Ayokunmi', 'female', 'QSI/626552', 5, 2, 3, '2008-04-28', '21/Mar/2022', '', 'password', 0, 0),
(270, 'Salisu Asmau Husna', 'female', 'QSI/593661', 5, 2, 3, '2008-04-14', '21/Mar/2022', '', 'password', 0, 0),
(271, 'Taiwo Mary Jomiloju', 'female', 'QSI/293634', 5, 2, 3, '2007-07-02', '21/Mar/2022', '', 'password', 0, 0),
(272, 'Vincent Elizabeth Precious ', 'female', 'QSI/901211', 5, 2, 3, '2007-07-03', '21/Mar/2022', '', 'password', 0, 0),
(273, 'Yunus Rodiat Odunayo', 'female', 'QSI/812615', 5, 2, 3, '2006-12-03', '21/Mar/2022', '', 'password', 0, 0),
(274, 'Yusuff Haliya Oluwanifemi', 'female', 'QSI/814670', 5, 2, 3, '2008-10-02', '21/Mar/2022', '', 'password', 0, 0),
(275, 'Yekini Funmilayo', 'female', 'QSI/606774', 5, 2, 3, '2005-12-28', '21/Mar/2022', '', 'password', 0, 0),
(276, 'Abideen Toyibah Adewonuola', 'female', 'QSI/583888', 4, 1, 3, '2007-07-02', '21/Mar/2022', '', 'password', 0, 0),
(277, 'Abiodun Mistura Ajoke', 'female', 'QSI/53544', 4, 1, 3, '2007-09-17', '21/Mar/2022', '', 'password', 0, 0),
(278, 'Abolaji Zainab Olabisi', 'female', 'QSI/217372', 4, 1, 3, '2007-10-10', '21/Mar/2022', '', 'password', 0, 0),
(279, 'Adedapo Semilore Esther ', 'female', 'QSI/685725', 4, 1, 3, '2006-04-08', '21/Mar/2022', '', 'password', 0, 0),
(280, 'Adebayo Aliyah Abiodun', 'female', 'QSI/566948', 4, 1, 3, '2007-10-01', '21/Mar/2022', '', 'password', 0, 0),
(281, 'Adedeji Ameerah Kofoworola', 'female', 'QSI/987079', 4, 1, 3, '2009-04-26', '21/Mar/2022', '', 'password', 0, 0),
(282, 'Adediran Aishat Olaronke', 'female', 'QSI/668962', 4, 1, 3, '2009-01-07', '21/Mar/2022', '', 'password', 0, 0),
(283, 'Adegbola Khadijah Amirah', 'female', 'QSI/229957', 4, 1, 3, '2008-07-17', '21/Mar/2022', '', 'password', 0, 0),
(284, 'Adekunle Kabirat Omotoyosi ', 'female', 'QSI/886315', 4, 1, 3, '2006-12-08', '21/Mar/2022', '', 'password', 0, 0),
(285, 'Adeneye Hassanat Adeshola', 'female', 'QSI/987950', 4, 1, 3, '2008-05-22', '21/Mar/2022', '', 'password', 0, 0),
(286, 'Adeoye Aduragbemi Rebbeca', 'female', 'QSI/308252', 4, 1, 3, '2007-09-10', '21/Mar/2022', '', 'password', 0, 0),
(287, 'Afolabi Marvellous Olayinka', 'female', 'QSI/529709', 4, 1, 3, '', '21/Mar/2022', '', 'password', 0, 0),
(288, 'Ajayi Esther Mercy', 'female', 'QSI/665656', 4, 1, 3, '', '21/Mar/2022', '', 'password', 0, 0),
(289, 'Akinbolude Veronica Funmilayo', 'female', 'QSI/215415', 4, 1, 3, '2007-09-19', '21/Mar/2022', '', 'password', 0, 0),
(290, 'Alao Ayatulahi Olajumoke', 'female', 'QSI/442027', 4, 1, 3, '2009-04-29', '21/Mar/2022', '', 'password', 0, 0),
(291, 'Ali Zulaikha Feyisayo', 'female', 'QSI/206268', 4, 1, 3, '2008-11-27', '21/Mar/2022', '', 'password', 0, 0),
(292, 'Atoyebi Blessing Adelokiki', 'female', 'QSI/722613', 4, 1, 3, '2007-12-27', '21/Mar/2022', '', 'password', 0, 0),
(293, 'Audu Boluwatife Grace', 'female', 'QSI/752935', 4, 1, 3, '2007-03-22', '21/Mar/2022', '', 'password', 0, 0),
(294, 'Ayinla Pamilerin Damilola', 'female', 'QSI/959828', 4, 1, 3, '2008-09-02', '21/Mar/2022', '', 'password', 0, 0),
(295, 'Ayodeji Pelumi Peace', 'female', 'QSI/213977', 4, 1, 3, '2007-08-19', '21/Mar/2022', '', 'password', 0, 0),
(296, 'Awotuyi Beatrice Abimbola', 'female', 'QSI/882133', 4, 1, 3, '2010-08-27', '21/Mar/2022', '', 'password', 0, 0),
(297, 'Babatunde Hikimat Funmilayo', 'female', 'QSI/754255', 4, 1, 3, '2008-10-11', '21/Mar/2022', '', 'password', 0, 0),
(298, 'Badamosi Barakat Bolatito', 'female', 'QSI/634871', 4, 1, 3, '2008-11-08', '21/Mar/2022', '', 'password', 0, 0),
(299, 'Badmus Oyindamola Aishat', 'female', 'QSI/602366', 4, 1, 3, '2008-09-27', '21/Mar/2022', '', 'password', 0, 0),
(300, 'Bakare Faizat Omowunmi', 'female', 'QSI/182073', 4, 1, 3, '2007-05-18', '21/Mar/2022', '', 'password', 0, 0),
(301, 'Busari Dunsin Tomiwa', 'female', 'QSI/430089', 4, 1, 3, '2005-11-28', '21/Mar/2022', '', 'password', 0, 0),
(302, 'Dacosta Deborah Iyanuoluwa', 'female', 'QSI/8629', 4, 1, 3, '2008-04-06', '21/Mar/2022', '', 'password', 0, 0),
(303, 'Durowoju Christianah Eniola', 'female', 'QSI/79518', 4, 1, 3, '2008-07-06', '21/Mar/2022', '', 'password', 0, 0),
(304, 'Duyilemi Oluwanifemi Oluwasemilore', 'female', 'QSI/212824', 4, 1, 3, '2009-10-16', '21/Mar/2022', '', 'password', 0, 0),
(305, 'Fadugba Olaomoju Hamidah', 'female', 'QSI/252449', 4, 1, 3, '2008-03-28', '21/Mar/2022', '', 'password', 0, 0),
(306, 'Folaranmi Saidat Opeyemi', 'female', 'QSI/196645', 4, 1, 3, '2007-07-07', '21/Mar/2022', '', 'password', 0, 0),
(307, 'Ilesanmi Eniola Ibukunoluwa', 'female', 'QSI/318948', 4, 1, 3, '2007-08-23', '21/Mar/2022', '', 'password', 0, 0),
(308, 'Jimoh Zainab Omotolani', 'female', 'QSI/295334', 4, 1, 3, '2007-12-30', '21/Mar/2022', '', 'password', 0, 0),
(309, 'Kilani Aishat Damilola', 'female', 'QSI/231550', 4, 1, 3, '2006-12-15', '21/Mar/2022', '', 'password', 0, 0),
(310, 'Lukman Kareemat Ayomide', 'female', 'QSI/59407', 4, 1, 3, '2007-03-11', '21/Mar/2022', '', 'password', 0, 0),
(311, 'Maruf Maryam Atoke', 'female', 'QSI/357705', 4, 1, 3, '2008-05-30', '21/Mar/2022', '', 'password', 0, 0),
(312, 'Mikhail Ajarah Romoke ', 'female', 'QSI/159338', 4, 1, 3, '2008-08-01', '21/Mar/2022', '', 'password', 0, 0),
(313, 'Odebiyi Zeenat Ibidun', 'female', 'QSI/594537', 4, 1, 3, '2008-05-11', '21/Mar/2022', '', 'password', 0, 0),
(314, 'Oduola Alimat Olanike', 'female', 'QSI/735717', 4, 1, 3, '2008-05-06', '21/Mar/2022', '', 'password', 0, 0),
(315, 'Odularu Hannah Motunrayo', 'female', 'QSI/367693', 4, 1, 3, '2007-04-28', '21/Mar/2022', '', 'password', 0, 0),
(316, 'Ogundepo Elizabeth Funmilayo ', 'female', 'QSI/383663', 4, 1, 3, '2007-12-09', '21/Mar/2022', '', 'password', 0, 0),
(317, 'Ogunlade Mary Ibukunoluwa', 'female', 'QSI/592584', 4, 1, 3, '2008-11-20', '21/Mar/2022', '', 'password', 0, 0),
(318, 'Ojeniran Ifeoluwa Dorcas', 'female', 'QSI/58254', 4, 1, 3, '2009-05-08', '21/Mar/2022', '', 'password', 0, 0),
(319, 'Ojo Ruth Anjola', 'female', 'QSI/162993', 4, 1, 3, '2007-01-22', '21/Mar/2022', '', 'password', 0, 0),
(320, 'Oke-Lawal Morountojufoluwa', 'female', 'QSI/760506', 4, 1, 3, '2008-09-18', '21/Mar/2022', '', 'password', 0, 0),
(321, 'Okereke Amarachi Comfort', 'female', 'QSI/920821', 4, 1, 3, '2008-05-16', '21/Mar/2022', '', 'password', 0, 0),
(322, 'Okunade Oluwakemi Ifeoluwa', 'female', 'QSI/257843', 4, 1, 3, '2008-08-09', '21/Mar/2022', '', 'password', 0, 0),
(323, 'Oladimeji Temitayo Esther', 'female', 'QSI/477928', 4, 1, 3, '', '21/Mar/2022', '', 'password', 0, 0),
(324, 'Oladipo Esther Favour', 'female', 'QSI/35661', 4, 1, 3, '2008-09-14', '21/Mar/2022', '', 'password', 0, 0),
(325, 'Oladiti Sumayah Bolanle', 'female', 'QSI/308177', 4, 1, 3, '2006-03-23', '21/Mar/2022', '', 'password', 0, 0),
(326, 'Oladoyin Morufat Opeyemi', 'female', 'QSI/809956', 4, 1, 3, '2005-05-04', '21/Mar/2022', '', 'password', 0, 0),
(327, 'Oladunmoye Abosede Dorcas', 'female', 'QSI/246188', 4, 1, 3, '2008-06-01', '21/Mar/2022', '', 'password', 0, 0),
(328, 'Olaniyi Basirat Titilayo ', 'female', 'QSI/845451', 4, 1, 3, '2007-11-12', '21/Mar/2022', '', 'password', 0, 0),
(329, 'Olojede Aminat Adedoyin', 'female', 'QSI/453826', 4, 1, 3, '2008-11-24', '21/Mar/2022', '', 'password', 0, 0),
(330, 'Oloyede Ifeoluwa Morufat', 'female', 'QSI/325574', 4, 1, 3, '2008-06-03', '21/Mar/2022', '', 'password', 0, 0),
(331, 'Oluwatosin Ebunlomo Racheal', 'female', 'QSI/972650', 4, 1, 3, '2008-02-13', '21/Mar/2022', '', 'password', 0, 0),
(332, 'Oluwole Precious Funke', 'female', 'QSI/660752', 4, 1, 3, '2008-03-31', '21/Mar/2022', '', 'password', 0, 0),
(333, 'Oyebanji Ifeoluwa', 'female', 'QSI/286138', 4, 1, 3, '2005-04-24', '21/Mar/2022', '', 'password', 0, 0),
(334, 'Oluyomi Praise Abisola', 'female', 'QSI/486665', 4, 1, 3, '2006-02-19', '21/Mar/2022', '', 'password', 0, 0),
(335, 'omoniyi Oluwaferanmi Elizabeth', 'female', 'QSI/562638', 4, 1, 3, '2008-02-22', '21/Mar/2022', '', 'password', 0, 0),
(336, 'Onaji Divine Ene', 'female', 'QSI/537148', 4, 1, 3, '2007-04-19', '21/Mar/2022', '', 'password', 0, 0),
(337, 'Otele Happiness', 'female', 'QSI/442562', 4, 1, 3, '2008-07-27', '21/Mar/2022', '', 'password', 0, 0),
(338, 'Otukoya Precious Adeola', 'female', 'QSI/650323', 4, 1, 3, '2008-05-26', '21/Mar/2022', '', 'password', 0, 0),
(339, 'Oyebola Azeezat Jumoke', 'female', 'QSI/307336', 4, 1, 3, '2007-04-29', '21/Mar/2022', '', 'password', 0, 0),
(340, 'Quadri Anat Ayomoposi', 'female', 'QSI/499802', 4, 1, 3, '2008-02-03', '21/Mar/2022', '', 'password', 0, 0),
(341, 'Raji Hikmah Oyinkansola', 'female', 'QSI/552330', 4, 1, 3, '2008-02-03', '21/Mar/2022', '', 'password', 0, 0),
(342, 'Sanni Rahmatallah Omotoyosi', 'female', 'QSI/712920', 4, 1, 3, '2007-10-25', '21/Mar/2022', '', 'password', 0, 0),
(343, 'Sanusi Oluwadamillola Faidat', 'female', 'QSI/198902', 4, 1, 3, '', '21/Mar/2022', '', 'password', 0, 0),
(344, 'Shittu Khadijah Oluwasemilore', 'female', 'QSI/94956', 4, 1, 3, '2009-10-28', '21/Mar/2022', '', 'password', 0, 0),
(345, 'Thomas Ayomide Aduragbemi', 'female', 'QSI/234254', 4, 1, 3, '2008-03-06', '21/Mar/2022', '', 'password', 0, 0),
(346, 'Thomas Favour Aduragbemi', 'female', 'QSI/361373', 4, 1, 3, '2008-10-22', '21/Mar/2022', '', 'password', 0, 0),
(347, 'Uthman Hikmat Damilola', 'female', 'QSI/47124', 4, 1, 3, '2009-05-17', '21/Mar/2022', '', 'password', 0, 0),
(348, 'Yisa Ameerah Anjola', 'female', 'QSI/536792', 4, 1, 3, '2009-07-03', '21/Mar/2022', '', 'password', 0, 0),
(349, 'Yusuf Fathia Morenikeji', 'female', 'QSI/907294', 4, 1, 3, '2008-07-28', '21/Mar/2022', '', 'password', 0, 0),
(350, 'Abatan Racheal Temiloluwa', 'female', 'QSI/692403', 4, 2, 3, '2007-04-15', '21/Mar/2022', '', 'password', 0, 0),
(351, 'Abdulrahman Sumaya Ajoke', 'female', 'QSI/545523', 4, 2, 3, '2004-08-16', '21/Mar/2022', '', 'password', 0, 0),
(352, 'Abodunrin Esther Oluwasemilore', 'female', 'QSI/442726', 4, 2, 3, '2010-03-19', '21/Mar/2022', '', 'password', 0, 0),
(353, 'Adegbite Moyinoluwa Esther', 'female', 'QSI/755380', 4, 2, 3, '2008-08-18', '21/Mar/2022', '', 'password', 0, 0),
(354, 'Adegoke Ikimat Bolatumi', 'female', 'QSI/282806', 4, 2, 3, '2007-09-29', '21/Mar/2022', '', 'password', 0, 0),
(355, 'Adedeji Goodness Oluwadarasimi', 'female', 'QSI/639970', 4, 2, 3, '2007-08-18', '21/Mar/2022', '', 'password', 0, 0),
(356, 'Adeyemi Esther Anjolaoluwa ', 'female', 'QSI/212079', 4, 2, 3, '2008-05-06', '21/Mar/2022', '', 'password', 0, 0),
(357, 'Adeyemi Omokunmi Oyindamola', 'female', 'QSI/619772', 4, 2, 3, '2009-02-05', '21/Mar/2022', '', 'password', 0, 0),
(358, 'Adeyemi Oluwatoyin Deborah', 'female', 'QSI/817019', 4, 2, 3, '2007-10-13', '21/Mar/2022', '', 'password', 0, 0),
(359, 'Adeyemi Ademide Taiwo', 'female', 'QSI/34534', 4, 2, 3, '2007-05-26', '21/Mar/2022', '', 'password', 0, 0),
(360, 'Aderoju Esther Oluwatimileyin', 'female', 'QSI/926375', 4, 2, 3, '2008-09-24', '21/Mar/2022', '', 'password', 0, 0),
(361, 'Adeniyi Demilade Joy', 'female', 'QSI/255486', 4, 2, 3, '2008-08-14', '21/Mar/2022', '', 'password', 0, 0),
(362, 'Adeyemo Testimony Oluwabukunmi', 'female', 'QSI/461115', 4, 2, 3, '2007-10-30', '21/Mar/2022', '', 'password', 0, 0),
(363, 'Adepoju Aduragbemi Taiwo', 'female', 'QSI/643352', 4, 2, 3, '2008-04-24', '21/Mar/2022', '', 'password', 0, 0),
(364, 'Adigun Ruqqoyat Adeoti', 'female', 'QSI/122457', 4, 2, 3, '2008-01-06', '21/Mar/2022', '', 'password', 0, 0),
(365, 'Afenifere Roheemat Anuoluwapo', 'female', 'QSI/224074', 4, 2, 3, '2007-07-05', '21/Mar/2022', '', 'password', 0, 0),
(366, 'Ajadi Iretomiwa Shalom', 'female', 'QSI/31189', 4, 2, 3, '2008-05-16', '21/Mar/2022', '', 'password', 0, 0),
(367, 'Ajinomoh Daniella Ayomide', 'female', 'QSI/264042', 4, 2, 3, '2008-09-02', '21/Mar/2022', '', 'password', 0, 0),
(368, 'Akande Oluwaseun Yetunde ', 'female', 'QSI/412617', 4, 2, 3, '2008-11-10', '21/Mar/2022', '', 'password', 0, 0),
(369, 'Akiibinu Favour Oluwanifemi', 'female', 'QSI/23220', 4, 2, 3, '2007-03-14', '21/Mar/2022', '', 'password', 0, 0),
(370, 'Akintayo Kehinde Husseinah', 'female', 'QSI/122153', 4, 2, 3, '2008-04-17', '21/Mar/2022', '', 'password', 0, 0),
(371, 'Akintoye Damilola Elizabeth', 'female', 'QSI/386715', 4, 2, 3, '2006-04-25', '21/Mar/2022', '', 'password', 0, 0),
(372, 'Alabi Damilola Deborah ', 'female', 'QSI/787557', 4, 2, 3, '2008-10-20', '21/Mar/2022', '', 'password', 0, 0),
(373, 'Alabi Opeyemi Sukurah', 'female', 'QSI/136894', 4, 2, 3, '2007-02-02', '21/Mar/2022', '', 'password', 0, 0),
(374, 'Alake Oluwabukunmi Precious', 'female', 'QSI/94183', 4, 2, 3, '2008-09-29', '21/Mar/2022', '', 'password', 0, 0),
(375, 'Ayegbeso Mosebolatan Hephzibah', 'female', 'QSI/383237', 4, 2, 3, '2008-08-03', '21/Mar/2022', '', 'password', 0, 0),
(376, 'Balogun Alimot Oluwafunmilayo', 'female', 'QSI/557744', 4, 2, 3, '2008-04-24', '21/Mar/2022', '', 'password', 0, 0),
(377, 'Ganiyu Favour Anuoluwapo', 'female', 'QSI/320057', 4, 2, 3, '2007-09-29', '21/Mar/2022', '', 'password', 0, 0),
(378, 'Jacob Esther Mofiyinfunoluwa', 'female', 'QSI/259054', 4, 2, 3, '2008-10-06', '21/Mar/2022', '', 'password', 0, 0),
(379, 'Kareem Oyindamola Bukola', 'female', 'QSI/616346', 4, 2, 3, '2004-08-16', '21/Mar/2022', '', 'password', 0, 0),
(380, 'Kolade Oyindamola Mary', 'female', 'QSI/567471', 4, 2, 3, '2007-06-24', '21/Mar/2022', '', 'password', 0, 0),
(381, 'Kolawole Taiwo Esther', 'female', 'QSI/729237', 4, 2, 3, '2008-04-04', '21/Mar/2022', '', 'password', 0, 0),
(382, 'Mimiko Jesutofunmi Wuraola', 'female', 'QSI/986546', 4, 2, 3, '2008-06-07', '21/Mar/2022', '', 'password', 0, 0),
(383, 'Obadimeji Esther Oluwatosin', 'female', 'QSI/549410', 4, 2, 3, '2008-02-08', '21/Mar/2022', '', 'password', 0, 0),
(384, 'Obagunwa Deborah Ayomide ', 'female', 'QSI/588600', 4, 2, 3, '2008-07-18', '21/Mar/2022', '', 'password', 0, 0),
(385, 'Oladele Racheal Favour', 'female', 'QSI/585438', 4, 2, 3, '2008-04-07', '21/Mar/2022', '', 'password', 0, 0),
(386, 'Oladehinde Zeenat Ajoke', 'female', 'QSI/884294', 4, 2, 3, '2007-10-23', '21/Mar/2022', '', 'password', 0, 0),
(387, 'Oladimeji Aliyah Opeyemi', 'female', 'QSI/900269', 4, 2, 3, '2007-04-24', '21/Mar/2022', '', 'password', 0, 0),
(388, 'Oladipupo Faridat Eniola', 'female', 'QSI/444030', 4, 2, 3, '2009-07-01', '21/Mar/2022', '', 'password', 0, 0),
(389, 'Oladipupo Rodiat Opeyemi', 'female', 'QSI/174869', 4, 2, 3, '2008-01-19', '21/Mar/2022', '', 'password', 0, 0),
(390, 'Oladiti Ikmot Ayomide ', 'female', 'QSI/326613', 4, 2, 3, '2006-12-30', '21/Mar/2022', '', 'password', 0, 0),
(391, 'Olalere Rhoda Oluwapamilerin', 'female', 'QSI/103204', 4, 2, 3, '2008-09-10', '21/Mar/2022', '', 'password', 0, 0),
(392, 'Olaleye Eunice Faithfulness', 'female', 'QSI/589112', 4, 2, 3, '20088-05-08', '21/Mar/2022', '', 'password', 0, 0),
(393, 'Olaniyi Aderonke Rebecca', 'female', 'QSI/693981', 4, 2, 3, '2008-07-11', '21/Mar/2022', '', 'password', 0, 0),
(394, 'Olayinka Jehovah-dunsin Oreoluwa', 'female', 'QSI/56743', 4, 2, 3, '2008-04-27', '21/Mar/2022', '', 'password', 0, 0),
(395, 'Oluwafemi Aanuoluwapo Funmi', 'female', 'QSI/866394', 4, 2, 3, '2007-05-18', '21/Mar/2022', '', 'password', 0, 0),
(396, 'Oluwanisola Dorcas Oluwafunmilayo', 'female', 'QSI/543935', 4, 2, 3, '2007-01-06', '21/Mar/2022', '', 'password', 0, 0),
(397, 'Oludele Anuoluwapo Rhoda', 'female', 'QSI/421825', 4, 2, 3, '2007-12-23', '21/Mar/2022', '', 'password', 0, 0),
(398, 'Oluwole Hannah Oluwapelumi', 'female', 'QSI/442860', 4, 2, 3, '2008-01-18', '21/Mar/2022', '', 'password', 0, 0),
(399, 'Okupevi Ruth Mercy', 'female', 'QSI/127257', 4, 2, 3, '2008-06-06', '21/Mar/2022', '', 'password', 0, 0),
(400, 'Ogunlade Nifemi Olaitan ', 'female', 'QSI/916180', 4, 2, 3, '2007-11-11', '21/Mar/2022', '', 'password', 0, 0),
(401, 'Omolayo Kehinde Opemipo', 'female', 'QSI/239569', 4, 2, 3, '2007-10-23', '21/Mar/2022', '', 'password', 0, 0),
(402, 'Omolola Joy Aduragbemi', 'female', 'QSI/560790', 4, 2, 3, '2008-02-20', '21/Mar/2022', '', 'password', 0, 0),
(403, 'Owoade Ifeoluwa Faith', 'female', 'QSI/645342', 4, 2, 3, '2007-10-20', '21/Mar/2022', '', 'password', 0, 0),
(404, 'Owopade Oreoluwa Elizabeth', 'female', 'QSI/706400', 4, 2, 3, '2005-10-21', '21/Mar/2022', '', 'password', 0, 0),
(405, 'Osinaike Similoluwa Oluwatosin', 'female', 'QSI/568845', 4, 2, 3, '2007-02-22', '21/Mar/2022', '', 'password', 0, 0),
(406, 'Otemade Omolola Morenikeji', 'female', 'QSI/933240', 4, 2, 3, '2008-04-06', '21/Mar/2022', '', 'password', 0, 0),
(407, 'Oyebanji Folashade Nifemi ', 'female', 'QSI/520727', 4, 2, 3, '2008-01-25', '21/Mar/2022', '', 'password', 0, 0),
(408, 'Oyenuga Praise Moyosore ', 'female', 'QSI/620296', 4, 2, 3, '2008-07-19', '21/Mar/2022', '', 'password', 0, 0),
(409, 'Oyewole Aishat Olayemi', 'female', 'QSI/916500', 4, 2, 3, '2007-10-08', '21/Mar/2022', '', 'password', 0, 0),
(410, 'Shittu Warizat Eniola', 'female', 'QSI/375935', 4, 2, 3, '2007-09-02', '21/Mar/2022', '', 'password', 0, 0),
(411, 'Suleiman Afsat Omaye', 'female', 'QSI/534350', 4, 2, 3, '2007-06-23', '21/Mar/2022', '', 'password', 0, 0),
(412, 'Tajudeen Kabirat Motunrayo', 'female', 'QSI/769491', 4, 2, 3, '2008-08-25', '21/Mar/2022', '', 'password', 0, 0),
(413, 'Tejuoso Grace Opeyemi', 'female', 'QSI/374893', 4, 2, 3, '2008-04-03', '21/Mar/2022', '', 'password', 0, 0),
(414, 'Tijani Yetunde Mujidat', 'female', 'QSI/128031', 4, 2, 3, '2006-12-03', '21/Mar/2022', '', 'password', 0, 0),
(415, 'Tijani Boluwatife Rebecca', 'female', 'QSI/254639', 4, 2, 3, '2007-08-04', '21/Mar/2022', '', 'password', 0, 0),
(416, 'Abdulrofee Roheemah Olaitan', 'female', 'QSI/127008', 4, 3, 3, '2008-11-30', '21/Mar/2022', '', 'password', 0, 0),
(417, 'Abiodun Eniola Ibukun', 'female', 'QSI/314474', 4, 3, 3, '2007-01-06', '21/Mar/2022', '', 'password', 0, 0),
(418, 'Adebajo Abisola Mary', 'female', 'QSI/295433', 4, 3, 3, '2008-03-10', '21/Mar/2022', '', 'password', 0, 0),
(419, 'Adebusoye Precious Oluwaseun', 'female', 'QSI/552517', 4, 3, 3, '2008-11-03', '21/Mar/2022', '', 'password', 0, 0),
(420, 'Adediran Aishat omobolanle', 'female', 'QSI/517395', 4, 3, 3, '2006-09-24', '21/Mar/2022', '', 'password', 0, 0),
(421, 'Adeleke Yusoroh Adebisi', 'female', 'QSI/191036', 4, 3, 3, '2009-03-05', '21/Mar/2022', '', 'password', 0, 0),
(422, 'Adegoke Aliyah ', 'female', 'QSI/107232', 4, 3, 3, '2008-05-22', '21/Mar/2022', '', 'password', 0, 0),
(423, 'Adegboye Esther', 'female', 'QSI/614205', 4, 3, 3, '2007-06-08', '21/Mar/2022', '', 'password', 0, 0),
(424, 'Adeniyi Victory Bose', 'female', 'QSI/472743', 4, 3, 3, '2008-12-14', '21/Mar/2022', '', 'password', 0, 0),
(425, 'Adelusi Sikemi Oluwajomiloju', 'female', 'QSI/250687', 4, 3, 3, '2008-12-26', '21/Mar/2022', '', 'password', 0, 0),
(426, 'Adeseun Beatrice Motunrayo', 'female', 'QSI/550670', 4, 3, 3, '2007-10-16', '21/Mar/2022', '', 'password', 0, 0),
(427, 'Adekoya Convenant Rachael ', 'female', 'QSI/791762', 4, 3, 3, '2007-08-10', '21/Mar/2022', '', 'password', 0, 0),
(428, 'Adeniran Favour Ayomiposi', 'female', 'QSI/495326', 4, 3, 3, '2008-07-08', '21/Mar/2022', '', 'password', 0, 0),
(429, 'Adeshina Aishat Abiodun', 'female', 'QSI/235723', 4, 3, 3, '2008-03-24', '21/Mar/2022', '', 'password', 0, 0),
(430, 'Adeyi Olamide Jesuferanmi', 'female', 'QSI/478153', 4, 3, 3, '2008-03-12', '21/Mar/2022', '', 'password', 0, 0),
(431, 'Adewumi Adesola Oyinkansola ', 'female', 'QSI/907385', 4, 3, 3, '2008-03-30', '21/Mar/2022', '', 'password', 0, 0),
(432, 'Agboola Oluwadarasimi Mary', 'female', 'QSI/660089', 4, 3, 3, '2007-03-04', '21/Mar/2022', '', 'password', 0, 0),
(433, 'Agboola Grace Titilope', 'female', 'QSI/90610', 4, 3, 3, '2008-12-31', '21/Mar/2022', '', 'password', 0, 0);
INSERT INTO `register` (`id`, `name`, `gender`, `code`, `class`, `arabic_class`, `session`, `dob`, `date`, `username`, `password`, `level`, `status`) VALUES
(434, 'Agbaje Dolapo Anthonia', 'female', 'QSI/39745', 4, 3, 3, '2009-08-17', '21/Mar/2022', '', 'password', 0, 0),
(435, 'Afolabi Abigael Moyinoluwa', 'female', 'QSI/513951', 4, 3, 3, '2006-10-01', '21/Mar/2022', '', 'password', 0, 0),
(436, 'Ajala Ajoke Omolara', 'female', 'QSI/727098', 4, 3, 3, '2008-02-14', '21/Mar/2022', '', 'password', 0, 0),
(437, 'Ajeigbe Aanuoluwapo P', 'female', 'QSI/879846', 4, 3, 3, '2009-05-10', '21/Mar/2022', '', 'password', 0, 0),
(438, 'Alamu Faidat Aduragbemi ', 'female', 'QSI/102142', 4, 3, 3, '2007-09-16', '21/Mar/2022', '', 'password', 0, 0),
(439, 'Alao Bolaji Grace ', 'female', 'QSI/29402', 4, 3, 3, '2007-09-16', '21/Mar/2022', '', 'password', 0, 0),
(440, 'Akindele Helen Mosunmola', 'female', 'QSI/44715', 4, 3, 3, '2009-08-08', '21/Mar/2022', '', 'password', 0, 0),
(441, 'Akinrele Esther Oluwatoyin', 'female', 'QSI/457360', 4, 3, 3, '2007-06-15', '21/Mar/2022', '', 'password', 0, 0),
(442, 'Arawomo Victoria Ayobolanle', 'female', 'QSI/159960', 4, 3, 3, '2006-07-04', '21/Mar/2022', '', 'password', 0, 0),
(443, 'Aremu Faridah Teniola', 'female', 'QSI/739241', 4, 3, 3, '2008-07-19', '21/Mar/2022', '', 'password', 0, 0),
(444, 'Aregbesola Esther Folashade', 'female', 'QSI/399845', 4, 3, 3, '2008-10-14', '21/Mar/2022', '', 'password', 0, 0),
(445, 'Asonibare Ayotomi Damilola', 'female', 'QSI/716599', 4, 3, 3, '2008-05-21', '21/Mar/2022', '', 'password', 0, 0),
(446, 'Attie Esther Bright', 'female', 'QSI/444322', 4, 3, 3, '2009-04-14', '21/Mar/2022', '', 'password', 0, 0),
(447, 'Awelewa Boluwatife D', 'female', 'QSI/703899', 4, 3, 3, '2007-06-13', '21/Mar/2022', '', 'password', 0, 0),
(448, 'Badmus Bisola Favour', 'female', 'QSI/82250', 4, 3, 3, '2007-07-03', '21/Mar/2022', '', 'password', 0, 0),
(449, 'Bankole Oluwakemi Mary', 'female', 'QSI/488868', 4, 3, 3, '2007-08-06', '21/Mar/2022', '', 'password', 0, 0),
(450, 'Bashiru Rokeebah', 'female', 'QSI/876111', 4, 3, 3, '2007-12-06', '21/Mar/2022', '', 'password', 0, 0),
(451, 'Bamigboye Risqot Damilola', 'female', 'QSI/565336', 4, 3, 3, '2008-06-26', '21/Mar/2022', '', 'password', 0, 0),
(452, 'Cole Deborah Ifeoluwa', 'female', 'QSI/667217', 4, 3, 3, '2006-06-17', '21/Mar/2022', '', 'password', 0, 0),
(453, 'Enufo Taiwo Victoria', 'female', 'QSI/220889', 4, 3, 3, '2007-01-25', '21/Mar/2022', '', 'password', 0, 0),
(454, 'Eniayewu Jolajesu Grace', 'female', 'QSI/888204', 4, 3, 3, '2007-07-07', '21/Mar/2022', '', 'password', 0, 0),
(455, 'Fajuyigbe Fikemi Naomi', 'female', 'QSI/960562', 4, 3, 3, '2009-11-23', '21/Mar/2022', '', 'password', 0, 0),
(456, 'Friday Ifeoluwa Gift', 'female', 'QSI/213748', 4, 3, 3, '2008-12-31', '21/Mar/2022', '', 'password', 0, 0),
(457, 'Ganiyu Olaide Faith', 'female', 'QSI/194622', 4, 3, 3, '2007-07-15', '21/Mar/2022', '', 'password', 0, 0),
(458, 'Idowu Pelumi T', 'female', 'QSI/319291', 4, 3, 3, '2007-08-26', '21/Mar/2022', '', 'password', 0, 0),
(459, 'Isa Opeyemi Zainab', 'female', 'QSI/38661', 4, 3, 3, '2008-09-23', '21/Mar/2022', '', 'password', 0, 0),
(460, 'Iyiola Fathia Ajoke', 'female', 'QSI/177073', 4, 3, 3, '2009-06-20', '21/Mar/2022', '', 'password', 0, 0),
(461, 'James Faith Victoria', 'female', 'QSI/225504', 4, 3, 3, '2007-09-10', '21/Mar/2022', '', 'password', 0, 0),
(462, 'Joshua Ayomiposi Grace', 'female', 'QSI/887008', 4, 3, 3, '2009-05-24', '21/Mar/2022', '', 'password', 0, 0),
(463, 'Lateef Rashidat Morenikeji', 'female', 'QSI/940912', 4, 3, 3, '2006-09-14', '21/Mar/2022', '', 'password', 0, 0),
(464, 'Moshood Rokibat Omolola', 'female', 'QSI/757678', 4, 3, 3, '2009-09-02', '22/Mar/2022', '', 'password', 0, 0),
(465, 'Ndukwe Favour Onyinye', 'female', 'QSI/410696', 4, 3, 3, '2008-09-24', '22/Mar/2022', '', 'password', 0, 0),
(466, 'Ogunmola Favour Aimanoshi', 'female', 'QSI/581044', 4, 3, 3, '2008-08-28', '22/Mar/2022', '', 'password', 0, 0),
(467, 'Ogundare Pamilerin Itunu', 'female', 'QSI/876959', 4, 3, 3, '2008-09-03', '22/Mar/2022', '', 'password', 0, 0),
(468, 'Ojedele Abigael Rebecca', 'female', 'QSI/432081', 4, 3, 3, '2009-04-19', '22/Mar/2022', '', 'password', 0, 0),
(469, 'Ojo Sarah Temiloluwa', 'female', 'QSI/507456', 4, 3, 3, '2008-02-29', '22/Mar/2022', '', 'password', 0, 0),
(470, 'Oladimeji Aishat Olaitan', 'female', 'QSI/932857', 4, 3, 3, '2008-05-14', '22/Mar/2022', '', 'password', 0, 0),
(471, 'Olarenwaju Fatimoh ', 'female', 'QSI/129036', 4, 3, 3, '2007-12-28', '22/Mar/2022', '', 'password', 0, 0),
(472, 'Olayiwola Ameerah Opeyemi', 'female', 'QSI/461125', 4, 3, 3, '2008-05-21', '22/Mar/2022', '', 'password', 0, 0),
(473, 'Oluwole Temilayo Ooreoluwa', 'female', 'QSI/208224', 4, 3, 3, '2009-02-26', '22/Mar/2022', '', 'password', 0, 0),
(474, 'Omowumi Omolola Blessing', 'female', 'QSI/900064', 4, 3, 3, '2009-05-26', '22/Mar/2022', '', 'password', 0, 0),
(475, 'Oyekunle Qowiyyah Adeola', 'female', 'QSI/988191', 4, 3, 3, '2008-11-17', '22/Mar/2022', '', 'password', 0, 0),
(476, 'Oyewumi Imoleayo Olamide', 'female', 'QSI/607189', 4, 3, 3, '2009-01-28', '22/Mar/2022', '', 'password', 0, 0),
(477, 'Raymond Grace Oyiza', 'female', 'QSI/644170', 4, 3, 3, '2007-10-29', '22/Mar/2022', '', 'password', 0, 0),
(478, 'Shofoluwe Olajumoke Mary', 'female', 'QSI/294299', 4, 3, 3, '2006-06-09', '22/Mar/2022', '', 'password', 0, 0),
(479, 'Salau Rodiat Olamide', 'female', 'QSI/482395', 4, 3, 3, '2007-07-06', '22/Mar/2022', '', 'password', 0, 0),
(480, 'Sulaimon Zainab Oluwatosin', 'female', 'QSI/862264', 4, 3, 3, '2007-03-17', '22/Mar/2022', '', 'password', 0, 0),
(481, 'Taoheed Hameedah Abike', 'female', 'QSI/37137', 4, 3, 3, '2007-08-15', '22/Mar/2022', '', 'password', 0, 0),
(482, 'Tijani Aishat E', 'female', 'QSI/152514', 4, 3, 3, '2007-03-12', '22/Mar/2022', '', 'password', 0, 0),
(483, 'Wasiu Quyumat Ayomide', 'female', 'QSI/435060', 4, 3, 3, '2007-02-16', '22/Mar/2022', '', 'password', 0, 0),
(484, 'Idowu Racheal Omotayo', 'female', 'QSI/820586', 4, 3, 3, '2008-05-19', '22/Mar/2022', '', 'password', 0, 0),
(485, 'Makinde Aanuoluwapo Mary', 'female', 'QSI/331236', 4, 2, 3, '2009-07-14', '28/Mar/2022', '', 'password', 0, 0),
(486, 'Afolabi Temitope ', 'female', 'QSI/294436', 4, 6, 3, '2005-04-04', '28/Mar/2022', '', 'password', 0, 0),
(487, 'Ogunjobi Blessing Okikiola', 'female', 'QSI/53290', 4, 5, 3, '2008-11-01', '28/Mar/2022', '', 'password', 0, 0),
(488, 'Alabi Sofiyyah', 'female', 'QSI/155997', 4, 5, 3, '', '01/Apr/2022', '', 'password', 0, 0),
(489, 'Adegbuyi Mariam', 'female', 'QSI/674674', 4, 6, 3, '', '01/Apr/2022', '', 'password', 0, 0),
(490, 'aaaa', 'male', 'FMSC/572891', 5, 0, 3, '', '26/Apr/2022', '', 'password', 0, 0),
(491, 'aaaa', 'male', 'FMSC/582741', 5, 1, 3, '', '26/Apr/2022', '', 'password', 0, 0),
(492, 'aaaa', 'male', 'FMSC/623202', 5, 1, 1, '', '26/Apr/2022', '', 'password', 0, 0),
(493, 'aaaa', 'male', 'FMSC/964522', 5, 2, 1, '', '26/Apr/2022', '', 'password', 0, 0),
(494, 'aaaa', 'male', 'FMSC/571449', 1, 1, 1, '', '26/Apr/2022', '', 'password', 0, 0),
(495, 'aaaab', 'male', 'FMSC/757670', 1, 1, 1, '', '26/Apr/2022', '', 'password', 0, 0);
-- --------------------------------------------------------
--
-- Table structure for table `report`
--
CREATE TABLE `report` (
`id` int(10) NOT NULL,
`name` varchar(255) NOT NULL,
`class` varchar(255) NOT NULL,
`term` int(10) NOT NULL DEFAULT 1,
`test` int(10) NOT NULL DEFAULT 0,
`first` int(10) NOT NULL DEFAULT 0,
`second` int(10) NOT NULL DEFAULT 0,
`exam` int(10) NOT NULL DEFAULT 0
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
--
-- Dumping data for table `report`
--
INSERT INTO `report` (`id`, `name`, `class`, `term`, `test`, `first`, `second`, `exam`) VALUES
(2, '2', '5', 1, 12, 10, 5, 44),
(5, '5', '5', 1, 14, 10, 10, 59),
(6, '6', '5', 1, 7, 6, 10, 25),
(7, '7', '5', 1, 11, 10, 10, 45),
(8, '8', '5', 1, 6, 5, 5, 27),
(9, '9', '3', 1, 18, 10, 10, 60),
(10, '10', '4', 1, 16, 0, 10, 42),
(11, '11', '4', 1, 13, 0, 10, 59),
(12, '12', '4', 1, 11, 0, 10, 21),
(14, '14', '4', 1, 18, 0, 10, 57),
(16, '16', '3', 1, 12, 0, 10, 20),
(17, '17', '3', 1, 15, 10, 10, 33),
(18, '18', '3', 1, 13, 10, 10, 39),
(19, '19', '4', 1, 12, 8, 10, 16),
(20, '20', '4', 1, 15, 0, 10, 58),
(22, '22', '3', 1, 10, 0, 10, 26),
(23, '23', '3', 1, 15, 10, 10, 48),
(24, '24', '5', 1, 12, 10, 10, 53),
(25, '25', '4', 1, 15, 0, 10, 57),
(27, '27', '5', 1, 13, 10, 10, 57),
(29, '29', '3', 1, 19, 10, 10, 60),
(30, '30', '4', 1, 6, 0, 10, 19),
(31, '31', '4', 1, 6, 0, 10, 19),
(32, '32', '3', 1, 7, 0, 10, 28),
(33, '33', '4', 1, 13, 0, 10, 57),
(34, '34', '4', 1, 6, 0, 10, 20),
(37, '37', '1', 1, 14, 5, 10, 44),
(38, '38', '1', 1, 10, 0, 10, 10),
(39, '39', '1', 1, 20, 10, 10, 60),
(41, '41', '2', 1, 15, 10, 10, 52),
(42, '42', '1', 1, 13, 10, 10, 35),
(43, '43', '1', 1, 16, 10, 10, 48),
(44, '44', '2', 1, 11, 0, 10, 26),
(45, '45', '2', 1, 14, 10, 10, 41),
(46, '46', '1', 1, 10, 0, 10, 13),
(47, '47', '1', 1, 10, 0, 10, 27),
(48, '48', '1', 1, 15, 10, 10, 45),
(50, '50', '2', 1, 17, 10, 10, 36),
(51, '51', '3', 1, 8, 0, 10, 0),
(52, '52', '3', 1, 9, 0, 10, 33),
(54, '54', '1', 1, 5, 10, 10, 36),
(55, '55', '1', 1, 5, 0, 10, 10),
(56, '56', '1', 1, 5, 10, 10, 26),
(57, '57', '1', 1, 5, 0, 10, 19),
(58, '58', '1', 1, 5, 0, 10, 16),
(59, '59', '1', 1, 5, 0, 10, 34),
(60, '60', '1', 1, 5, 0, 10, 10),
(61, '61', '1', 1, 5, 0, 10, 45),
(62, '62', '1', 1, 5, 0, 10, 16),
(63, '63', '1', 1, 5, 0, 10, 10),
(64, '64', '1', 1, 5, 0, 10, 15),
(65, '65', '2', 1, 5, 0, 10, 27),
(66, '66', '2', 1, 5, 0, 10, 37),
(67, '67', '2', 1, 0, 10, 10, 20),
(68, '68', '4', 1, 10, 0, 10, 30),
(70, '70', '5', 1, 12, 10, 10, 39),
(71, '71', '4', 1, 10, 0, 10, 34),
(76, '76', '6', 1, 16, 10, 0, 60),
(77, '77', '5', 1, 15, 10, 10, 57),
(78, '78', '6', 1, 15, 10, 0, 58),
(79, '79', '5', 1, 10, 8, 0, 43),
(80, '80', '6', 1, 13, 10, 0, 53),
(81, '81', '1', 1, 17, 0, 10, 52),
(82, '82', '5', 1, 15, 10, 10, 59),
(83, '83', '5', 1, 14, 1, 0, 13),
(84, '84', '6', 1, 14, 10, 0, 55),
(85, '37', '1', 2, 8, 10, 0, 24),
(86, '38', '1', 2, 0, 0, 5, 0),
(87, '39', '1', 2, 19, 10, 10, 59),
(88, '42', '1', 2, 8, 0, 10, 13),
(89, '43', '1', 2, 8, 10, 10, 34),
(90, '46', '1', 2, 0, 0, 5, 10),
(91, '47', '1', 2, 0, 0, 10, 0),
(92, '48', '1', 2, 16, 10, 5, 31),
(93, '54', '1', 2, 13, 5, 0, 35),
(94, '55', '1', 2, 8, 5, 5, 18),
(95, '56', '1', 2, 0, 0, 5, 11),
(96, '57', '1', 2, 0, 0, 5, 19),
(97, '58', '1', 2, 0, 5, 5, 10),
(98, '59', '1', 2, 0, 0, 0, 0),
(99, '60', '1', 2, 0, 5, 0, 0),
(100, '61', '1', 2, 0, 10, 0, 22),
(101, '62', '1', 2, 0, 0, 0, 0),
(102, '63', '1', 2, 0, 0, 0, 10),
(103, '64', '1', 2, 0, 5, 0, 25),
(105, '81', '1', 2, 14, 10, 0, 0),
(107, '41', '2', 2, 18, 0, 0, 29),
(108, '44', '2', 2, 0, 0, 0, 43),
(109, '45', '2', 2, 16, 10, 10, 53),
(110, '50', '2', 2, 17, 10, 5, 52),
(111, '65', '2', 2, 0, 0, 0, 20),
(112, '66', '2', 2, 10, 0, 5, 45),
(113, '67', '2', 2, 20, 10, 9, 55),
(114, '76', '6', 2, 0, 0, 0, 0),
(115, '78', '6', 2, 0, 0, 0, 0),
(116, '80', '6', 2, 0, 0, 0, 0),
(117, '84', '6', 2, 0, 0, 0, 0),
(118, '86', '2', 2, 0, 0, 0, 0),
(128, '9', '3', 2, 12, 10, 10, 58),
(129, '16', '3', 2, 0, 0, 0, 12),
(130, '17', '3', 2, 0, 5, 5, 21),
(131, '18', '3', 2, 16, 10, 9, 49),
(132, '22', '3', 2, 0, 0, 0, 14),
(133, '23', '3', 2, 16, 10, 4, 29),
(134, '29', '3', 2, 12, 10, 9, 53),
(135, '32', '3', 2, 0, 5, 0, 33),
(136, '51', '3', 2, 0, 0, 0, 19),
(137, '52', '3', 2, 12, 5, 5, 50),
(167, '10', '4', 2, 3, 5, 10, 35),
(168, '11', '4', 2, 0, 0, 0, 35),
(169, '12', '4', 2, 11, 0, 0, 15),
(170, '14', '4', 2, 17, 5, 5, 40),
(171, '19', '4', 2, 3, 10, 9, 26),
(172, '20', '4', 2, 20, 10, 10, 52),
(173, '25', '4', 2, 14, 0, 5, 34),
(174, '30', '4', 2, 0, 0, 0, 0),
(175, '31', '4', 2, 0, 0, 0, 10),
(176, '33', '4', 2, 15, 10, 10, 37),
(177, '34', '4', 2, 5, 0, 0, 28),
(178, '68', '4', 2, 0, 0, 4, 12),
(179, '71', '4', 2, 0, 0, 0, 17),
(215, '83', '5', 2, 4, 5, 8, 34),
(216, '6', '5', 2, 0, 5, 4, 20),
(217, '79', '5', 2, 0, 0, 5, 20),
(218, '24', '5', 2, 20, 10, 10, 50),
(219, '82', '5', 2, 0, 0, 0, 0),
(220, '7', '5', 2, 14, 10, 10, 52),
(221, '27', '5', 2, 17, 10, 5, 51),
(222, '5', '5', 2, 18, 0, 10, 49),
(223, '8', '5', 2, 12, 5, 4, 29),
(224, '2', '5', 2, 19, 0, 5, 32),
(225, '70', '5', 2, 0, 5, 5, 37),
(226, '77', '5', 2, 17, 5, 10, 50),
(227, '83', '5', 3, 13, 10, 8, 0),
(228, '6', '5', 3, 17, 10, 8, 23),
(229, '79', '5', 3, 0, 0, 5, 18),
(230, '24', '5', 3, 20, 8, 8, 46),
(231, '82', '5', 3, 13, 10, 9, 40),
(232, '7', '5', 3, 12, 10, 8, 48),
(233, '27', '5', 3, 13, 9, 8, 44),
(234, '5', '5', 3, 16, 6, 8, 49),
(235, '8', '5', 3, 9, 9, 5, 25),
(236, '2', '5', 3, 13, 0, 8, 0),