-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpadhlwsr_padhloji.sql
More file actions
1013 lines (882 loc) · 359 KB
/
Copy pathpadhlwsr_padhloji.sql
File metadata and controls
1013 lines (882 loc) · 359 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
-- MySQL dump 10.13 Distrib 5.7.23-23, for Linux (x86_64)
--
-- Host: localhost Database: padhlwsr_padhloji
-- ------------------------------------------------------
-- Server version 5.7.23-23
/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
/*!40101 SET NAMES utf8mb4 */;
/*!40103 SET @OLD_TIME_ZONE=@@TIME_ZONE */;
/*!40103 SET TIME_ZONE='+00:00' */;
/*!40014 SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0 */;
/*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */;
/*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */;
/*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */;
/*!50717 SELECT COUNT(*) INTO @rocksdb_has_p_s_session_variables FROM INFORMATION_SCHEMA.TABLES WHERE TABLE_SCHEMA = 'performance_schema' AND TABLE_NAME = 'session_variables' */;
/*!50717 SET @rocksdb_get_is_supported = IF (@rocksdb_has_p_s_session_variables, 'SELECT COUNT(*) INTO @rocksdb_is_supported FROM performance_schema.session_variables WHERE VARIABLE_NAME=\'rocksdb_bulk_load\'', 'SELECT 0') */;
/*!50717 PREPARE s FROM @rocksdb_get_is_supported */;
/*!50717 EXECUTE s */;
/*!50717 DEALLOCATE PREPARE s */;
/*!50717 SET @rocksdb_enable_bulk_load = IF (@rocksdb_is_supported, 'SET SESSION rocksdb_bulk_load = 1', 'SET @rocksdb_dummy_bulk_load = 0') */;
/*!50717 PREPARE s FROM @rocksdb_enable_bulk_load */;
/*!50717 EXECUTE s */;
/*!50717 DEALLOCATE PREPARE s */;
--
-- Current Database: `padhlwsr_padhloji`
--
--
-- Table structure for table `attempted_test`
--
DROP TABLE IF EXISTS `attempted_test`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `attempted_test` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`user_id` int(10) unsigned DEFAULT '0',
`test_id` int(10) unsigned DEFAULT '0',
`test_answer` varchar(2000) DEFAULT NULL,
`review_status` varchar(2000) DEFAULT NULL,
`time_status` varchar(2000) DEFAULT NULL,
`time_remaining` int(10) unsigned DEFAULT '0',
`status` tinyint(4) DEFAULT '0',
`serial_no` tinyint(4) DEFAULT '1',
`created_by` int(10) unsigned NOT NULL,
`updated_by` int(10) unsigned DEFAULT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL,
`deleted_at` timestamp NULL DEFAULT NULL,
PRIMARY KEY (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=2 DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `attempted_test`
--
LOCK TABLES `attempted_test` WRITE;
/*!40000 ALTER TABLE `attempted_test` DISABLE KEYS */;
INSERT INTO `attempted_test` (`id`, `user_id`, `test_id`, `test_answer`, `review_status`, `time_status`, `time_remaining`, `status`, `serial_no`, `created_by`, `updated_by`, `created_at`, `updated_at`, `deleted_at`) VALUES (1,1,1,'a###d#d#d#d#d#d#d','0#0#0#0#1#1#1#0#0#0','NaN#27#7#6#15#17#9#5#2#13',3400,0,2,0,NULL,'2021-08-17 09:38:24','2021-08-17 09:57:50',NULL);
/*!40000 ALTER TABLE `attempted_test` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `blog_categories`
--
DROP TABLE IF EXISTS `blog_categories`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `blog_categories` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`name` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`status` tinyint(1) NOT NULL DEFAULT '1',
`type` int(11) DEFAULT '0',
`created_by` int(10) unsigned NOT NULL,
`updated_by` int(10) unsigned DEFAULT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL,
`deleted_at` timestamp NULL DEFAULT NULL,
PRIMARY KEY (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=90 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `blog_categories`
--
LOCK TABLES `blog_categories` WRITE;
/*!40000 ALTER TABLE `blog_categories` DISABLE KEYS */;
INSERT INTO `blog_categories` (`id`, `name`, `status`, `type`, `created_by`, `updated_by`, `created_at`, `updated_at`, `deleted_at`) VALUES (1,'Class XI',1,1,1,1,'2021-06-16 09:10:17','2021-09-02 15:43:01','2021-09-02 15:43:01'),(2,'Class X',1,1,1,NULL,'2021-06-16 09:10:35','2021-09-02 15:43:05','2021-09-02 15:43:05'),(3,'Class XII',1,1,1,1,'2021-06-16 09:11:58','2021-09-02 15:43:11','2021-09-02 15:43:11'),(4,'Subject XI A',1,2,1,1,'2021-08-28 02:00:26','2021-09-02 15:43:15','2021-09-02 15:43:15'),(5,'Subject X A',1,2,1,NULL,'2021-08-28 02:01:00','2021-09-02 15:43:20','2021-09-02 15:43:20'),(6,'Subject XII A',1,2,1,1,'2021-08-28 02:01:24','2021-09-02 15:43:27','2021-09-02 15:43:27'),(7,'Subject XI B',1,2,1,1,'2021-08-28 02:01:53','2021-09-02 15:42:58','2021-09-02 15:42:58'),(8,'Subject X B',1,2,1,NULL,'2021-08-28 02:02:28','2021-09-02 15:43:04','2021-09-02 15:43:04'),(9,'Subject XII B',1,2,1,NULL,'2021-08-28 02:02:44','2021-09-02 15:43:07','2021-09-02 15:43:07'),(10,'Topic XI A',1,3,1,NULL,'2021-08-28 02:03:09','2021-09-02 15:43:12','2021-09-02 15:43:12'),(11,'Topic X A',1,3,1,NULL,'2021-08-28 02:03:20','2021-09-02 15:43:17','2021-09-02 15:43:17'),(12,'Topic XII A',1,3,1,1,'2021-08-28 02:03:35','2021-09-02 15:43:35','2021-09-02 15:43:35'),(13,'Topic XI B',1,3,1,NULL,'2021-08-28 02:04:09','2021-09-02 15:42:07','2021-09-02 15:42:07'),(14,'Topic X B',1,3,1,NULL,'2021-08-28 02:04:26','2021-09-02 15:42:13','2021-09-02 15:42:13'),(15,'Topic XII B',1,3,1,NULL,'2021-08-28 02:07:38','2021-09-02 15:42:19','2021-09-02 15:42:19'),(16,'Years Paper 2020',1,1,1,NULL,'2021-08-30 08:48:13','2021-09-02 15:42:28','2021-09-02 15:42:28'),(17,'NCERT Solutions',1,3,1,1,'2021-09-02 15:44:31','2021-09-27 08:13:57','2021-09-27 08:13:57'),(18,'Question Bank',1,3,1,1,'2021-09-02 15:45:18','2021-09-27 08:20:44','2021-09-27 08:20:44'),(19,'Course Content',1,3,1,1,'2021-09-02 15:46:08','2021-09-27 08:14:07','2021-09-27 08:14:07'),(20,'Previous Year Solved Papers',1,3,1,1,'2021-09-02 15:47:58','2021-09-27 08:14:34','2021-09-27 08:14:34'),(21,'Mock Test',1,3,1,1,'2021-09-02 15:48:21','2021-09-27 08:20:31','2021-09-27 08:20:31'),(22,'Class XIth',1,1,1,1,'2021-09-02 15:52:51','2022-02-02 14:34:04',NULL),(23,'Class XIIth',1,1,1,1,'2021-09-02 15:53:21','2022-02-02 14:33:04',NULL),(24,'Class 9th',1,1,1,NULL,'2021-09-02 15:53:43','2021-10-06 20:41:07','2021-10-06 20:41:07'),(25,'Class 10th',1,1,1,NULL,'2021-09-02 15:53:56','2021-10-06 20:41:14','2021-10-06 20:41:14'),(26,'Physics',1,2,1,NULL,'2021-09-02 15:54:23','2021-09-02 15:54:23',NULL),(27,'Chemistry',1,2,1,NULL,'2021-09-02 15:54:34','2021-09-02 15:54:34',NULL),(28,'Mathematics',1,2,1,NULL,'2021-09-02 15:54:48','2021-09-02 15:54:48',NULL),(29,'Biology',1,2,1,NULL,'2021-09-02 15:55:02','2021-09-02 15:55:02',NULL),(30,'Chapter 1 - Physical World',1,3,1,NULL,'2021-09-02 15:56:03','2021-09-27 08:12:14','2021-09-27 08:12:14'),(31,'Chapter 2 - Units and Measurement',1,3,1,NULL,'2021-09-02 15:56:31','2021-09-27 08:12:23','2021-09-27 08:12:23'),(32,'Chapter 3 - Motion in a Straight Line',1,3,1,NULL,'2021-09-02 15:57:03','2021-09-27 08:12:32','2021-09-27 08:12:32'),(33,'Chapter 4 - Motion in a Plane',1,3,1,NULL,'2021-09-02 15:57:45','2021-09-27 08:12:45','2021-09-27 08:12:45'),(34,'Chapter 5 - Laws of Motion',1,3,1,NULL,'2021-09-02 15:58:05','2021-09-27 08:13:18','2021-09-27 08:13:18'),(35,'Chapter 6 - Work, Energy and Power',1,3,1,NULL,'2021-09-02 15:58:42','2021-09-27 08:13:27','2021-09-27 08:13:27'),(36,'Chapter 7 - System of Particles and Rotational Movement',1,3,1,NULL,'2021-09-02 15:59:13','2021-09-27 08:12:05','2021-09-27 08:12:05'),(37,'Chapter 8 - Gravitation',1,3,1,NULL,'2021-09-02 15:59:55','2021-09-27 08:13:34','2021-09-27 08:13:34'),(38,'English',1,2,1,NULL,'2021-09-03 16:32:40','2021-10-06 20:40:38','2021-10-06 20:40:38'),(39,'class 12th Test',1,1,1,NULL,'2021-09-12 16:49:29','2021-10-06 20:40:47','2021-10-06 20:40:47'),(40,'Mathematics Test',1,2,1,NULL,'2021-09-12 16:50:22','2021-10-06 20:40:56','2021-10-06 20:40:56'),(41,'Mathematics Periodic Test 1',1,3,1,NULL,'2021-09-12 16:52:07','2021-09-27 08:13:02','2021-09-27 08:13:02'),(42,'JEE Main',1,1,1,1,'2021-09-12 20:15:58','2021-10-09 18:07:45',NULL),(50,'JEE Advanced',1,1,1,NULL,'2021-10-09 18:08:10','2021-10-09 18:08:10',NULL),(43,'Physics - Topic A',1,3,1,NULL,'2021-09-27 16:34:15','2021-10-06 20:40:06','2021-10-06 20:40:06'),(44,'JEE Mathematics',1,1,1,NULL,'2021-09-27 17:46:31','2021-09-27 17:46:31',NULL),(45,'JEE Physics',1,1,1,NULL,'2021-09-27 17:50:22','2021-09-27 17:50:22',NULL),(46,'JEE Chemistry',1,1,1,NULL,'2021-09-27 17:50:48','2021-09-27 17:50:48',NULL),(47,'JEE Main (July Attempt)',1,3,1,1,'2021-10-06 20:20:10','2021-10-09 18:15:21',NULL),(48,'Notes',1,3,1,NULL,'2021-10-06 20:29:56','2021-10-06 20:29:56',NULL),(49,'2021',1,2,1,1,'2021-10-07 06:46:46','2021-10-12 13:57:43',NULL),(51,'JEE Main (August Attempt)',1,3,1,1,'2021-10-09 18:10:33','2021-10-20 18:20:49',NULL),(52,'JEE Main (March Attempt)',1,3,1,NULL,'2021-10-20 18:21:41','2021-10-20 18:21:41',NULL),(53,'JEE Main (February Attempt)',1,3,1,NULL,'2021-10-22 13:46:09','2021-10-22 13:46:09',NULL),(54,'Board Notes',1,3,1,1,'2021-11-03 12:16:12','2021-11-03 12:28:20',NULL),(55,'JEE Main (September Attempt)',1,3,1,NULL,'2021-11-13 10:12:56','2021-11-13 10:12:56',NULL),(56,'2020',1,2,1,NULL,'2021-11-13 10:13:19','2021-11-13 10:13:19',NULL),(57,'2013',1,2,1,NULL,'2021-11-21 09:06:41','2021-11-21 09:06:41',NULL),(58,'2019',1,2,1,NULL,'2021-11-27 19:25:11','2021-11-27 19:25:11',NULL),(59,'2018',1,2,1,NULL,'2021-11-27 19:25:24','2021-11-27 19:25:24',NULL),(60,'2017',1,2,1,NULL,'2021-11-27 19:25:38','2021-11-27 19:25:38',NULL),(61,'2016',1,2,1,NULL,'2021-11-27 19:25:50','2021-11-27 19:25:50',NULL),(62,'2015',1,2,1,NULL,'2021-11-27 19:26:05','2021-11-27 19:26:05',NULL),(63,'2014',1,2,1,NULL,'2021-11-27 19:26:25','2021-11-27 19:26:25',NULL),(64,'JEE Main (January Attempt)',1,3,1,NULL,'2021-11-27 19:31:23','2021-11-27 19:31:23',NULL),(65,'JEE Main (April Attempt)',1,3,1,NULL,'2021-11-27 20:00:09','2021-11-27 20:00:09',NULL),(66,'Sample Papers',1,3,1,NULL,'2021-12-11 20:55:20','2021-12-11 20:55:20',NULL),(67,'Class Xth',1,1,1,1,'2021-12-16 11:56:06','2021-12-16 18:10:42',NULL),(68,'10th',1,1,1,NULL,'2021-12-16 18:07:50','2021-12-16 18:09:34','2021-12-16 18:09:34'),(69,'STAGE-1',1,1,1,NULL,'2021-12-23 16:49:46','2021-12-23 16:49:46',NULL),(70,'STAGE-2',1,1,1,NULL,'2021-12-23 16:50:00','2021-12-23 16:50:00',NULL),(71,'J&K Zone',1,2,1,NULL,'2021-12-23 16:50:56','2021-12-23 16:50:56',NULL),(72,'NCERT BOOK',1,1,1,NULL,'2022-01-22 10:21:40','2022-01-22 10:21:40',NULL),(73,'Uttar Pradesh Zone',1,2,1,1,'2022-01-31 17:43:22','2022-01-31 17:49:08',NULL),(74,'Class IXth',1,1,1,1,'2022-02-02 14:16:46','2022-02-02 14:33:25',NULL),(75,'Science',1,2,1,1,'2022-02-02 14:21:15','2022-02-02 14:23:38',NULL),(76,'Multiple Choice Questions',1,3,1,NULL,'2022-02-22 07:46:21','2022-02-22 07:46:21',NULL),(77,'Case Study Type Questions',1,3,1,NULL,'2022-02-22 07:47:13','2022-02-22 07:47:13',NULL),(78,'Subjective Type Questions',1,3,1,NULL,'2022-02-22 07:47:48','2022-02-22 07:47:48',NULL),(79,'Assertion Reason Type Questions',1,3,1,NULL,'2022-02-22 07:49:11','2022-02-22 07:49:11',NULL),(80,'CBSE',1,3,1,NULL,'2022-05-08 15:11:07','2022-05-08 15:11:07',NULL),(81,'J&K BOARD',1,3,1,NULL,'2022-05-08 15:11:52','2022-05-08 15:11:52',NULL),(82,'2022',1,2,1,NULL,'2022-05-08 17:27:52','2022-05-08 17:27:52',NULL),(83,'2023',1,2,1,NULL,'2022-06-24 16:19:07','2022-06-24 16:19:07',NULL),(84,'JEE Main (June Attempt)',1,3,1,NULL,'2022-06-24 16:20:29','2022-06-24 16:20:29',NULL),(85,'DPP',1,3,1,NULL,'2022-10-08 11:18:11','2022-10-08 11:18:11',NULL),(86,'Hand Book - Formula Book',1,3,1,1,'2022-10-08 18:25:46','2022-10-08 18:31:19',NULL),(87,'APW',1,3,1,1,'2022-10-22 16:55:11','2022-10-22 17:11:26',NULL),(88,'APS',1,1,1,1,'2022-11-07 14:01:14','2022-11-07 14:05:33',NULL),(89,'WRAP UP',1,1,1,NULL,'2022-12-04 07:10:16','2022-12-04 07:10:16',NULL);
/*!40000 ALTER TABLE `blog_categories` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `blog_map_categories`
--
DROP TABLE IF EXISTS `blog_map_categories`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `blog_map_categories` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`blog_id` int(10) unsigned NOT NULL,
`category_id` int(10) unsigned NOT NULL,
PRIMARY KEY (`id`),
KEY `blog_map_categories_blog_id_index` (`blog_id`),
KEY `blog_map_categories_category_id_index` (`category_id`)
) ENGINE=MyISAM AUTO_INCREMENT=553 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `blog_map_categories`
--
LOCK TABLES `blog_map_categories` WRITE;
/*!40000 ALTER TABLE `blog_map_categories` DISABLE KEYS */;
INSERT INTO `blog_map_categories` (`id`, `blog_id`, `category_id`) VALUES (176,157,69),(78,66,42),(76,64,42),(77,65,42),(75,63,42),(84,72,42),(72,61,42),(71,60,0),(80,68,50),(83,71,42),(87,75,42),(90,78,42),(94,82,42),(88,76,42),(95,83,42),(89,77,42),(82,70,42),(101,89,23),(81,69,50),(102,90,23),(85,73,42),(96,84,42),(79,67,42),(86,74,42),(73,62,42),(174,155,69),(100,88,42),(175,156,0),(92,80,42),(97,85,42),(93,81,42),(98,86,42),(91,79,42),(99,87,42),(103,91,23),(104,92,23),(105,93,23),(106,94,23),(107,95,23),(108,96,23),(109,97,42),(110,98,50),(111,99,50),(112,100,23),(113,101,23),(114,102,23),(115,103,23),(116,104,23),(117,105,23),(118,106,23),(119,107,42),(120,108,42),(121,109,42),(122,110,42),(123,111,42),(124,112,42),(125,113,42),(126,114,42),(127,115,42),(128,116,42),(129,117,42),(130,118,42),(131,119,42),(132,120,42),(133,121,42),(316,296,42),(135,123,50),(136,124,50),(137,125,0),(138,126,23),(139,127,23),(140,128,50),(141,129,50),(142,130,50),(143,131,50),(144,132,50),(145,133,50),(158,134,23),(147,135,23),(159,136,23),(162,137,67),(156,138,67),(160,139,23),(161,140,23),(163,144,23),(165,146,67),(164,145,23),(166,147,23),(167,148,67),(168,149,23),(169,150,0),(170,151,0),(171,152,0),(172,153,0),(173,154,0),(177,158,50),(178,159,50),(179,160,69),(180,161,69),(181,162,69),(182,163,69),(183,164,23),(184,165,23),(185,166,23),(186,167,23),(187,168,23),(188,169,23),(189,170,23),(190,171,23),(191,172,23),(192,173,23),(193,174,23),(194,175,23),(195,176,50),(196,177,50),(197,178,50),(198,179,50),(199,180,23),(200,181,23),(201,182,23),(202,183,23),(203,184,23),(204,185,23),(205,186,69),(206,187,74),(207,188,67),(208,189,23),(209,190,69),(210,191,23),(211,192,67),(212,193,67),(213,194,42),(214,195,42),(215,196,42),(216,197,74),(217,198,67),(218,199,67),(219,200,42),(220,201,42),(221,202,23),(222,203,67),(223,204,42),(224,205,42),(225,206,42),(226,207,42),(227,208,42),(228,209,42),(229,210,42),(230,211,42),(231,212,42),(232,213,42),(233,214,74),(234,215,74),(235,216,67),(236,217,67),(237,218,67),(238,219,67),(239,220,67),(240,221,67),(241,222,67),(242,223,67),(243,224,67),(244,225,67),(245,226,67),(246,227,67),(247,228,67),(248,229,67),(249,230,67),(250,231,67),(251,232,67),(252,233,67),(253,234,67),(254,235,67),(255,236,67),(256,237,67),(257,238,67),(258,239,67),(259,240,67),(260,241,67),(261,242,67),(262,243,67),(263,244,23),(264,245,23),(265,246,67),(266,247,23),(267,248,23),(268,249,23),(269,250,23),(270,251,23),(271,252,23),(272,253,23),(273,254,23),(274,255,23),(275,256,23),(276,257,22),(277,258,22),(278,259,22),(279,260,22),(280,261,22),(281,262,22),(282,263,74),(283,264,74),(284,265,22),(285,266,22),(286,267,67),(287,268,67),(288,269,67),(289,270,67),(290,271,67),(291,272,67),(292,273,67),(293,274,67),(294,275,67),(295,276,23),(296,277,67),(297,278,67),(298,279,67),(299,280,67),(306,281,74),(301,282,67),(302,283,67),(303,284,67),(304,285,67),(305,286,67),(307,287,42),(308,288,42),(309,289,67),(310,290,67),(311,291,42),(312,292,42),(313,293,42),(314,294,42),(315,295,67),(317,297,42),(318,298,67),(319,299,42),(320,300,42),(321,301,67),(322,302,23),(323,303,67),(325,304,23),(326,305,23),(327,306,67),(328,307,67),(329,308,67),(330,309,23),(331,310,67),(332,311,67),(333,312,23),(334,313,23),(335,314,23),(336,315,23),(337,316,23),(338,317,23),(339,318,23),(340,319,23),(341,320,23),(342,321,22),(343,322,22),(344,323,23),(345,324,42),(346,325,42),(347,326,42),(348,327,42),(349,328,42),(350,329,42),(351,330,42),(352,331,42),(353,332,42),(354,333,42),(355,334,42),(356,335,42),(357,336,23),(358,337,23),(359,338,23),(360,339,23),(361,340,23),(362,341,23),(363,342,67),(364,343,67),(365,344,23),(366,345,22),(367,346,23),(368,347,22),(369,348,22),(370,349,23),(371,350,23),(372,351,23),(373,352,22),(374,353,22),(375,354,22),(376,355,23),(377,356,23),(378,357,22),(379,358,22),(380,359,23),(381,360,23),(382,361,22),(383,362,22),(384,363,23),(385,364,23),(386,365,23),(387,366,22),(388,367,22),(389,368,22),(390,369,23),(391,370,23),(392,371,23),(393,372,23),(394,373,22),(395,374,23),(396,375,23),(397,376,22),(398,377,22),(399,378,22),(400,379,23),(401,380,22),(402,381,22),(403,382,23),(404,383,23),(405,384,23),(406,385,22),(407,386,22),(408,387,22),(409,388,22),(411,390,22),(412,391,22),(413,392,22),(414,393,22),(415,394,22),(416,395,22),(417,396,22),(418,397,22),(419,398,22),(420,399,22),(421,400,22),(422,401,22),(423,402,22),(424,403,22),(425,404,23),(426,405,23),(427,406,23),(428,407,23),(429,408,23),(430,409,22),(431,410,22),(432,411,23),(433,412,23),(434,413,23),(435,414,23),(436,415,23),(437,416,23),(438,417,22),(439,418,23),(440,419,23),(441,420,23),(442,421,23),(443,422,23),(444,423,22),(445,424,22),(446,425,23),(447,426,23),(448,427,23),(449,428,23),(450,429,23),(451,430,23),(453,431,88),(454,432,88),(455,433,88),(456,434,88),(457,435,23),(458,436,22),(459,437,22),(460,438,22),(461,439,22),(462,440,22),(463,441,22),(464,442,88),(465,443,22),(466,444,22),(467,445,22),(468,446,22),(469,447,22),(470,448,22),(471,449,88),(472,450,22),(473,451,22),(474,452,22),(475,453,22),(476,454,22),(477,455,22),(478,456,22),(479,457,22),(480,458,22),(481,459,89),(482,460,22),(483,461,22),(484,462,22),(485,463,22),(486,464,89),(494,465,89),(488,466,89),(489,467,89),(490,468,22),(491,469,22),(492,470,22),(493,471,22),(495,472,89),(496,473,89),(497,474,89),(498,475,22),(499,476,89),(500,477,89),(501,478,89),(502,479,89),(503,480,22),(504,481,22),(505,482,22),(506,483,22),(515,484,89),(508,485,89),(509,486,89),(510,487,89),(511,488,89),(516,489,89),(513,490,89),(514,491,89),(517,492,22),(518,493,22),(519,494,22),(520,495,22),(522,497,22),(523,498,22),(524,499,22),(525,500,89),(526,501,89),(527,502,22),(528,503,89),(529,504,89),(530,505,89),(531,506,89),(532,507,89),(533,508,89),(534,509,22),(535,510,89),(536,511,89),(537,512,89),(538,513,89),(539,514,89),(540,515,89),(541,516,22),(542,517,89),(543,518,89),(544,519,22),(545,520,22),(546,521,22),(547,522,22),(548,523,22),(549,524,22),(550,525,22),(551,526,22),(552,527,22);
/*!40000 ALTER TABLE `blog_map_categories` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `blog_map_tags`
--
DROP TABLE IF EXISTS `blog_map_tags`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `blog_map_tags` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`blog_id` int(10) unsigned NOT NULL,
`tag_id` int(10) unsigned NOT NULL,
PRIMARY KEY (`id`),
KEY `blog_map_tags_blog_id_index` (`blog_id`),
KEY `blog_map_tags_tag_id_index` (`tag_id`)
) ENGINE=MyISAM AUTO_INCREMENT=550 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `blog_map_tags`
--
LOCK TABLES `blog_map_tags` WRITE;
/*!40000 ALTER TABLE `blog_map_tags` DISABLE KEYS */;
INSERT INTO `blog_map_tags` (`id`, `blog_id`, `tag_id`) VALUES (178,157,19),(85,66,3),(83,64,3),(84,65,3),(82,63,3),(91,72,3),(80,61,3),(79,60,4),(87,68,3),(90,71,3),(94,75,3),(97,78,3),(101,82,3),(95,76,3),(102,83,3),(96,77,3),(89,70,3),(108,89,5),(88,69,3),(109,90,5),(92,73,3),(103,84,3),(86,67,3),(93,74,3),(81,62,3),(176,155,19),(107,88,3),(177,156,4),(99,80,3),(104,85,3),(100,81,3),(105,86,3),(98,79,3),(106,87,3),(110,91,5),(111,92,5),(112,93,5),(113,94,5),(114,95,5),(115,96,5),(116,97,3),(117,98,3),(118,99,3),(120,100,5),(121,101,5),(122,102,5),(123,103,5),(124,104,5),(125,105,5),(126,106,5),(127,107,3),(128,108,3),(129,109,3),(130,110,3),(131,111,3),(132,112,3),(133,113,3),(134,114,3),(135,115,3),(136,116,3),(137,117,3),(138,118,3),(139,119,3),(140,120,3),(141,121,3),(318,296,3),(143,123,3),(144,124,3),(145,125,4),(146,126,5),(147,127,5),(148,128,3),(149,129,3),(150,130,3),(151,131,3),(152,132,3),(153,133,3),(154,134,5),(155,135,5),(156,136,5),(157,137,5),(158,138,5),(159,139,5),(160,140,5),(165,144,5),(167,146,5),(166,145,5),(168,147,5),(169,148,5),(170,149,5),(171,150,4),(172,151,4),(173,152,4),(174,153,4),(175,154,4),(179,158,3),(180,159,3),(181,160,19),(182,161,19),(183,162,19),(184,163,19),(185,164,5),(186,165,5),(187,166,5),(188,167,5),(189,168,5),(190,169,5),(191,170,5),(192,171,5),(193,172,5),(194,173,5),(195,174,5),(196,175,5),(197,176,3),(198,177,3),(199,178,3),(200,179,3),(201,180,5),(202,181,5),(203,182,5),(204,183,5),(205,184,5),(206,185,5),(208,186,19),(209,187,5),(210,188,5),(211,189,5),(212,190,19),(213,191,5),(214,192,5),(215,193,5),(216,194,3),(217,195,3),(218,196,3),(219,197,5),(220,198,5),(221,199,5),(222,200,3),(223,201,3),(224,202,5),(225,203,5),(226,204,3),(227,205,3),(228,206,3),(229,207,3),(230,208,3),(231,209,3),(232,210,3),(233,211,3),(234,212,3),(235,213,3),(236,214,5),(237,215,5),(238,216,5),(239,217,5),(240,218,5),(241,219,5),(242,220,5),(243,221,5),(244,222,5),(245,223,5),(246,224,5),(247,225,5),(248,226,5),(249,227,5),(250,228,5),(251,229,5),(252,230,5),(253,231,5),(254,232,5),(255,233,5),(256,234,5),(257,235,5),(258,236,5),(259,237,5),(260,238,5),(261,239,5),(262,240,5),(263,241,5),(264,242,5),(265,243,5),(266,244,5),(267,245,5),(268,246,5),(269,247,5),(270,248,5),(271,249,5),(272,250,5),(273,251,5),(274,252,5),(275,253,5),(276,254,5),(277,255,5),(278,256,5),(279,257,5),(280,258,5),(281,259,5),(282,260,5),(283,261,5),(284,262,5),(285,263,5),(286,264,5),(287,265,5),(288,266,5),(289,267,5),(290,268,5),(291,269,5),(292,270,5),(293,271,5),(294,272,5),(295,273,5),(296,274,5),(297,275,5),(298,276,5),(299,277,5),(300,278,5),(301,279,5),(302,280,5),(303,281,5),(304,282,5),(305,283,5),(306,284,5),(307,285,5),(308,286,5),(309,287,3),(310,288,3),(311,289,5),(312,290,5),(313,291,3),(314,292,3),(315,293,3),(316,294,3),(317,295,5),(319,297,3),(320,298,5),(321,299,3),(322,300,3),(323,301,5),(324,302,5),(325,303,5),(326,304,5),(327,305,5),(328,306,5),(329,307,5),(330,308,5),(331,309,5),(332,310,5),(333,311,5),(334,312,5),(335,313,5),(336,314,5),(337,315,5),(338,316,5),(339,317,5),(340,318,5),(341,319,5),(342,320,5),(343,321,5),(344,322,5),(345,323,5),(346,324,3),(347,325,3),(348,326,3),(349,327,3),(350,328,3),(351,329,3),(352,330,3),(353,331,3),(354,332,3),(355,333,3),(356,334,3),(357,335,3),(358,336,5),(359,337,5),(360,338,5),(361,339,3),(362,340,3),(363,341,3),(364,342,5),(365,343,5),(366,344,5),(367,345,5),(368,346,5),(369,347,5),(370,348,5),(371,349,5),(372,350,3),(373,351,3),(374,352,3),(375,353,3),(376,354,3),(377,355,3),(378,356,3),(379,357,3),(380,358,3),(381,359,3),(382,360,3),(383,361,3),(384,362,3),(385,363,3),(386,364,3),(387,365,3),(388,366,3),(389,367,3),(390,368,3),(391,369,3),(392,370,3),(393,371,3),(394,372,3),(395,373,3),(396,374,3),(397,375,3),(398,376,3),(399,377,3),(400,378,5),(401,379,3),(402,380,3),(403,381,3),(404,382,3),(405,383,3),(406,384,5),(407,385,3),(408,386,3),(409,387,3),(410,388,3),(412,390,3),(413,391,3),(414,392,3),(415,393,3),(416,394,3),(417,395,3),(418,396,3),(419,397,3),(420,398,3),(421,399,3),(422,400,3),(423,401,3),(424,402,3),(425,403,3),(426,404,3),(427,405,3),(428,406,3),(429,407,3),(430,408,3),(431,409,3),(432,410,3),(433,411,3),(434,412,3),(435,413,3),(436,414,3),(437,415,3),(438,416,3),(439,417,3),(440,418,3),(441,419,3),(442,420,3),(443,421,3),(444,422,3),(445,423,3),(446,424,3),(447,425,5),(448,426,3),(449,427,3),(450,428,3),(451,429,3),(452,430,3),(453,431,3),(454,432,3),(455,433,3),(456,434,3),(457,435,3),(458,436,3),(459,437,3),(460,438,3),(461,439,3),(462,440,3),(463,441,3),(464,442,3),(465,443,3),(466,444,3),(467,445,3),(468,446,3),(469,447,3),(470,448,3),(471,449,3),(472,450,3),(473,451,3),(474,452,3),(475,453,3),(476,454,3),(477,455,3),(478,456,3),(479,457,3),(480,458,3),(481,459,3),(482,460,3),(483,461,3),(484,462,3),(485,463,3),(486,464,3),(487,465,3),(488,466,3),(489,467,3),(490,468,3),(491,469,3),(492,470,3),(493,471,3),(494,472,3),(495,473,3),(496,474,3),(497,475,3),(498,476,3),(499,477,3),(500,478,3),(501,479,3),(502,480,3),(503,481,3),(504,482,3),(505,483,3),(506,484,3),(507,485,3),(508,486,3),(509,487,3),(510,488,3),(511,489,3),(512,490,3),(513,491,3),(514,492,3),(515,493,3),(516,494,3),(517,495,3),(519,497,3),(520,498,3),(521,499,3),(522,500,3),(523,501,3),(524,502,3),(525,503,3),(526,504,3),(527,505,3),(528,506,3),(529,507,3),(530,508,3),(531,509,3),(532,510,3),(533,511,3),(534,512,3),(535,513,3),(536,514,3),(537,515,3),(538,516,3),(539,517,3),(540,518,3),(541,519,3),(542,520,3),(543,521,3),(544,522,3),(545,523,3),(546,524,3),(547,525,3),(548,526,3),(549,527,3);
/*!40000 ALTER TABLE `blog_map_tags` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `blog_tags`
--
DROP TABLE IF EXISTS `blog_tags`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `blog_tags` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`name` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`status` tinyint(1) NOT NULL DEFAULT '1',
`created_by` int(10) unsigned NOT NULL,
`updated_by` int(10) unsigned DEFAULT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL,
`deleted_at` timestamp NULL DEFAULT NULL,
PRIMARY KEY (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=20 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `blog_tags`
--
LOCK TABLES `blog_tags` WRITE;
/*!40000 ALTER TABLE `blog_tags` DISABLE KEYS */;
INSERT INTO `blog_tags` (`id`, `name`, `status`, `created_by`, `updated_by`, `created_at`, `updated_at`, `deleted_at`) VALUES (1,'SSC',1,1,NULL,'2021-06-16 09:53:21','2021-09-02 15:41:47','2021-09-02 15:41:47'),(2,'CGL',1,1,NULL,'2021-06-16 09:53:37','2021-09-02 15:41:54','2021-09-02 15:41:54'),(3,'JEE',1,1,1,'2021-09-02 15:40:36','2021-09-03 08:48:50',NULL),(4,'NEET',1,1,1,'2021-09-02 15:40:49','2021-09-03 08:48:58',NULL),(5,'Academics',1,1,1,'2021-09-02 15:41:00','2021-09-20 15:53:39',NULL),(17,'Olymiads',1,1,NULL,'2021-09-20 15:56:59','2021-09-20 15:57:26','2021-09-20 15:57:26'),(6,'Free NCERT Solutions',1,1,NULL,'2021-09-03 08:54:21','2021-09-03 08:58:39','2021-09-03 08:58:39'),(7,'NTSE',1,1,1,'2021-09-12 16:53:34','2021-10-05 05:08:30','2021-10-05 05:08:30'),(8,'Important Questions',1,1,NULL,'2021-09-12 19:56:02','2021-09-20 15:54:14','2021-09-20 15:54:14'),(9,'Previous Year JEE (Main) Papers',1,1,1,'2021-09-12 19:56:30','2021-09-20 15:54:22','2021-09-20 15:54:22'),(10,'Previous Year JEE (Advanced) Papers',1,1,1,'2021-09-12 19:57:03','2021-09-20 15:54:32','2021-09-20 15:54:32'),(11,'Previous Year NEET Papers',1,1,1,'2021-09-12 19:57:23','2021-09-20 15:54:41','2021-09-20 15:54:41'),(12,'Previous Year NTSE (STAGE-I & STAGE-II) Papers',1,1,1,'2021-09-12 19:57:44','2021-09-20 15:54:50','2021-09-20 15:54:50'),(13,'Previous Year KVPY Papers',1,1,1,'2021-09-12 19:58:01','2021-09-12 20:08:22','2021-09-12 20:08:22'),(14,'Previous Year NSE/OLYMPIADS Papers',1,1,1,'2021-09-12 19:58:19','2021-09-12 20:08:31','2021-09-12 20:08:31'),(15,'Previous Year BOARD Papers',1,1,1,'2021-09-12 19:58:30','2021-09-20 15:55:27','2021-09-20 15:55:27'),(16,'KVPY',1,1,1,'2021-09-12 20:05:34','2021-10-05 05:08:38','2021-10-05 05:08:38'),(18,'Olympiads',1,1,1,'2021-09-20 15:57:58','2021-10-05 05:08:44','2021-10-05 05:08:44'),(19,'NTSE',1,1,1,'2021-12-23 16:37:05','2022-01-11 16:42:57',NULL);
/*!40000 ALTER TABLE `blog_tags` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `blogs`
--
DROP TABLE IF EXISTS `blogs`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `blogs` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`name` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`publish_datetime` datetime NOT NULL,
`featured_image` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`content` text COLLATE utf8mb4_unicode_ci NOT NULL,
`meta_title` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`cannonical_link` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`slug` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`meta_description` text COLLATE utf8mb4_unicode_ci,
`meta_keywords` text COLLATE utf8mb4_unicode_ci,
`topic_id` int(11) DEFAULT '0',
`subject_id` int(11) DEFAULT '0',
`topic_content` text COLLATE utf8mb4_unicode_ci,
`subject_content` text COLLATE utf8mb4_unicode_ci,
`class_content` text COLLATE utf8mb4_unicode_ci,
`status_content` text COLLATE utf8mb4_unicode_ci,
`course_content` text COLLATE utf8mb4_unicode_ci,
`status` tinyint(4) NOT NULL DEFAULT '0' COMMENT '0 => InActive, 1 => Published, 2 => Draft, 3 => Scheduled',
`created_by` int(10) unsigned NOT NULL,
`updated_by` int(10) unsigned DEFAULT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL,
`deleted_at` timestamp NULL DEFAULT NULL,
PRIMARY KEY (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=528 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `blogs`
--
LOCK TABLES `blogs` WRITE;
/*!40000 ALTER TABLE `blogs` DISABLE KEYS */;
INSERT INTO `blogs` (`id`, `name`, `publish_datetime`, `featured_image`, `content`, `meta_title`, `cannonical_link`, `slug`, `meta_description`, `meta_keywords`, `topic_id`, `subject_id`, `topic_content`, `subject_content`, `class_content`, `status_content`, `course_content`, `status`, `created_by`, `updated_by`, `created_at`, `updated_at`, `deleted_at`) VALUES (1,'JEE Main 2021 Question Papers','2021-06-17 20:56:00','XLS Uploaded','<p> This is for testing 3</p>','111',NULL,'jee-main-2021-question-papers',NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,2,1,1,'2021-06-16 11:17:26','2021-08-28 02:08:23','2021-08-28 02:08:23'),(2,'JEE Main Question Papers','2021-06-18 22:43:00',NULL,'<p>This is for testing</p>',NULL,NULL,'jee-main-question-papers',NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,1,1,1,'2021-06-17 11:43:11','2021-08-28 02:08:28','2021-08-28 02:08:28'),(3,'JEE Main Sample Papers','2021-06-19 10:31:00',NULL,'<p>Thsi si for testing</p>',NULL,NULL,'jee-main-sample-papers',NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,1,1,1,'2021-06-18 23:31:57','2021-08-28 02:08:34','2021-08-28 02:08:34'),(4,'JEE Main NCERT Solutions','2021-06-19 10:55:00',NULL,'<p>This is for tesitng</p>',NULL,NULL,'jee-main-ncert-solutions',NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,1,1,1,'2021-06-18 23:55:18','2021-08-28 02:08:38','2021-08-28 02:08:38'),(5,'Testing Questions','2021-06-19 12:48:00','C:\\wamp64\\tmp\\php4689.tmp','<p>This is for testing</p>','112',NULL,'testing-questions',NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,1,1,NULL,'2021-06-19 01:49:09','2021-08-28 02:08:42','2021-08-28 02:08:42'),(6,'Testing Test 2','2021-06-20 12:50:00','C:\\wamp64\\tmp\\phpFEE9.tmp','<p>Thsi is for tesrting</p>','113',NULL,'testing-test-2',NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,1,1,NULL,'2021-06-19 01:51:02','2021-08-28 02:08:46','2021-08-28 02:08:46'),(7,'Testing 3','2021-06-19 12:55:00','C:\\wamp64\\tmp\\php14CB.tmp','<p>Thsi is for testing 114</p>','114',NULL,'testing-3',NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,1,1,NULL,'2021-06-19 01:56:35','2021-08-28 02:08:50','2021-08-28 02:08:50'),(8,'CGL CLASS XI 5','2021-08-08 12:39:00','question_paper/8Fg9WEmDKowa7a5wvsES6DipKhlI57F3SkSY5PsI.pdf','<p>Tesing</p>','999',NULL,'cgl-class-xi-5',NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,1,1,1,'2021-08-07 01:40:07','2021-08-28 02:08:54','2021-08-28 02:08:54'),(9,'CGL CLASS XI 6','2021-08-07 12:40:00','question_paper/Sx1bffDEmP9pUvG3u59svwruuNuxT4bzCUF5yj2m.pdf','<p>test</p>','888',NULL,'cgl-class-xi-6',NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,1,1,1,'2021-08-07 01:41:08','2021-08-28 02:08:59','2021-08-28 02:08:59'),(10,'Testing Detail','2021-08-28 12:55:00','question_paper/35yCzrjBBZsuM0b5YcliLbUn7eTTfeIMVkigpdMt.pdf','<p>Thsi is for testing</p>','9999',NULL,'testing-detail',NULL,NULL,3,2,'<p>Thsi is for testing Topic Content</p>','<p>This is for testing Subject Content</p>','<p>This is for testing Class Content</p>',NULL,'<p>This is for testing Course Content</p>',1,1,1,'2021-08-28 01:56:07','2021-08-28 02:09:03','2021-08-28 02:09:03'),(11,'TESTING A','2021-08-21 13:10:00','question_paper/ehDkdN4JxtZZwBI7Pc93Jcv21PwvJDEU358LYh9E.pdf','<p>This is for testing</p>','111',NULL,'testing-a',NULL,NULL,10,4,'<p>This is for testing: Topic Content</p>','<p>This is for testing: Subject Content</p>','<p>This is for testing: Class Content</p>','<p>Type Content: Descriptions</p>','<p>This is for testing: Course Content</p>',1,1,1,'2021-08-28 02:11:04','2021-09-02 15:48:41','2021-09-02 15:48:41'),(12,'TESTING B','2021-08-28 13:15:00','question_paper/vE5ZKFNCqFF0gEb9JhuAzHRmAzfpR2xhLRz8g2Pe.pdf','<p>This is for testing</p>','11111',NULL,'testing-b',NULL,NULL,11,5,'<p>This is for testing Topic Content</p>','<p>This is for testing Subject Content</p>','<p>This is for testing Class Content</p>','<p>Type Content: Descriptions</p>','<p>This is for testing</p>',3,1,1,'2021-08-28 02:15:39','2021-09-02 15:48:44','2021-09-02 15:48:44'),(13,'TESTING C','2021-08-28 13:16:00','question_paper/kGM8MGIaIH5CorrqMmnzXEnMWtAeoGogD66TaA16.pdf','<p>This is for testing</p>','33333',NULL,'testing-c',NULL,NULL,13,6,'<p>This is for testing TESTING C Topic Content</p>','<p>This is for testing TESTING C Subject Content</p>','<p>This is for testing TESTING C Class Content</p>','<p>Type Content: Descriptions</p>','<p>This is for testing TESTING C Course Content</p>',1,1,1,'2021-08-28 02:18:22','2021-09-02 15:48:45','2021-09-02 15:48:45'),(14,'TESTING D','2021-08-29 18:02:00','question_paper/XA08cvnuCjkgFhCHTAiNGOi4lcZb9bfObX58M2Nv.pdf','<p>This is for testing: Content</p>','110011',NULL,'testing-d',NULL,NULL,10,4,'<p>This is for testing: Topic Content</p>','<p>This is for testing: Subject Content</p>','<p>This is for testing: Class Content</p>','<p>Type Content: Descriptions</p>','<p>This is for testing: Course Content</p>',1,1,1,'2021-08-29 07:03:15','2021-09-02 15:48:48','2021-09-02 15:48:48'),(15,'TESTING 10','2021-08-31 19:32:00','question_paper/ahOEo04Hxb2lgTQU8IP7VAOH4lBF4Aq59JPde9i4.pdf','<p>This is for testing</p>','9988',NULL,'testing-10',NULL,NULL,0,0,NULL,NULL,'<p>This is for testing</p>','<p>Type Content: Descriptions</p>','<p>This is for tesitng</p>',1,1,1,'2021-08-30 08:32:31','2021-09-02 15:48:49','2021-09-02 15:48:49'),(16,'TESTING 11','2021-08-31 21:01:00',NULL,'<p>This is for testing: Content</p>','9988',NULL,'testing-11',NULL,NULL,0,0,NULL,NULL,'<p>This is for testing: Category Content</p>','<p>Type Content: Descriptions</p>','<p>This is for testing: Course Content</p>',1,1,1,'2021-08-30 10:01:39','2021-09-02 15:48:52','2021-09-02 15:48:52'),(17,'TESTING 12','2021-08-31 22:18:00',NULL,'<p>Content</p>','9998877',NULL,'testing-12',NULL,NULL,0,0,NULL,NULL,'<p>Category Content</p>','<p>Type Content: Descriptions</p>','<p>TESTING 11 : Course Content</p>',1,1,1,'2021-08-30 11:18:24','2021-09-02 15:48:54','2021-09-02 15:48:54'),(18,'Chapter 1 - Physical World','2021-09-02 21:34:00','question_paper/GaFISb0Ix9JBRaqWOUjzQtDAH12QooSfo4ZVEU5v.pdf','<p>NCERT Solution</p>','001',NULL,'chapter-1-physical-world',NULL,NULL,0,26,'<p>Physics can be a tough subject for many students hence, getting help from experts becomes essential while preparing for board exams. NCERT Solutions for Class 11 Physics Chapters prepared by subject matter experts at Padhloji makes all the concepts appear very simple.</p>','<p><strong>The Class 11 Physics NCERT solutions</strong> help you understand the basics and master the subject. This is why Padhloji brings you NCERT solutions for class 11 Physics to help you better understand and learn the subject.</p>','<p>We all understand that studying can be quite a struggle when we have to do it all the time. This is the reason why Pahloji has brought up NCERT Solution of Class 11 to help you subdue that struggle.</p>','<p>NCERT Solutions is a one-stop all study material constructed for helping students to improve their scores and understanding of the subjects. NCERT book solution focuses on the NCERT pattern of Questions and answers and provides the students with all the solutions to the problems asked in the textbooks.</p>','<p>While observing the latest developments in IIT JEE including the Examination Mode, pattern, and other changes, we at Padhloji have come with a comprehensive JEE preparation course for aspirants who are planning to appear at the national level entrance exam. We are offering an exhaustive set of solutions, study materials, close mentoring, and more to help each student make the most of their study time and prepare effectively for the exam especially from the comforts of their homes.<br /><br /></p>',1,1,1,'2021-09-02 16:10:35','2021-12-23 15:59:02','2021-12-23 15:59:02'),(19,'Chapter 2 - Units and Measurement','2021-09-02 21:58:00','question_paper/tfDbC09SYsCedeVqkzAjP34fIlFxxkEPGjQ6jspd.pdf','<p>NCERT Solution</p>','002',NULL,'chapter-2-units-and-measurement',NULL,NULL,0,26,NULL,NULL,NULL,NULL,'<p>While observing the latest developments in IIT JEE including the Examination Mode, pattern, and other changes, we at Padhloji have come with a comprehensive JEE preparation course for aspirants who are planning to appear at the national level entrance exam. We are offering an exhaustive set of solutions, study materials, close mentoring, and more to help each student make the most of their study time and prepare effectively for the exam especially from the comforts of their homes.<br /><br /></p>',1,1,1,'2021-09-02 16:28:40','2021-10-06 19:46:07','2021-10-06 19:46:07'),(21,'Chapter 4 - Motion in a Plane','2021-09-02 22:12:00','question_paper/AeU4cgDcnoiJIKui0QTPJ9U2YBCdYYWKbpclOEyR.pdf','<p>NCERT Solution</p>','004',NULL,'chapter-4-motion-in-a-plane',NULL,NULL,0,26,NULL,NULL,NULL,NULL,'<p>While observing the latest developments in IIT JEE including the Examination Mode, pattern, and other changes, we at Padhloji have come with a comprehensive JEE preparation course for aspirants who are planning to appear at the national level entrance exam. We are offering an exhaustive set of solutions, study materials, close mentoring, and more to help each student make the most of their study time and prepare effectively for the exam especially from the comforts of their homes.</p>',1,1,1,'2021-09-02 16:42:44','2021-10-06 19:46:11','2021-10-06 19:46:11'),(20,'Chapter 3 - Motion in a Straight Line','2021-09-02 22:00:00','question_paper/LJrVYBLdv8L59cm5DKpCiEIMKKb9xNgSuftZVqYV.pdf','<section class=\"banner\">\r\n<p>NCERT Solution </p>\r\n</section>\r\n<section class=\"materialData\"></section>','003',NULL,'chapter-3-motion-in-a-straight-line',NULL,NULL,0,26,NULL,NULL,NULL,NULL,'<p>While observing the latest developments in IIT JEE including the Examination Mode, pattern, and other changes, we at Padhloji have come with a comprehensive JEE preparation course for aspirants who are planning to appear at the national level entrance exam. We are offering an exhaustive set of solutions, study materials, close mentoring, and more to help each student make the most of their study time and prepare effectively for the exam especially from the comforts of their homes.<br /><br /></p>',1,1,1,'2021-09-02 16:32:27','2021-10-06 19:46:14','2021-10-06 19:46:14'),(22,'Chapter 5 - Laws of Motion','2021-09-02 22:15:00','question_paper/Yqg007iVynTlQ5DUSVCkV8CrztmX3DhhB6vtLbEj.pdf','<p>NCERT Solutions</p>','005',NULL,'chapter-5-laws-of-motion',NULL,NULL,0,26,NULL,NULL,NULL,NULL,'<p>While observing the latest developments in IIT JEE including the Examination Mode, pattern, and other changes, we at Padhloji have come with a comprehensive JEE preparation course for aspirants who are planning to appear at the national level entrance exam. We are offering an exhaustive set of solutions, study materials, close mentoring, and more to help each student make the most of their study time and prepare effectively for the exam especially from the comforts of their homes.</p>',1,1,1,'2021-09-02 16:46:06','2021-10-06 19:46:18','2021-10-06 19:46:18'),(23,'Chapter 6 - Work, Energy and Power','2021-09-02 22:20:00','question_paper/ZqvTflD6tGx2SH9DdaMb1fbIxwIdCtqQUkmZEYG8.pdf','<p>NCERT Solution</p>',NULL,NULL,'chapter-6-work-energy-and-power',NULL,NULL,0,26,NULL,NULL,NULL,NULL,'<p>While observing the latest developments in IIT JEE including the Examination Mode, pattern, and other changes, we at Padhloji have come with a comprehensive JEE preparation course for aspirants who are planning to appear at the national level entrance exam. We are offering an exhaustive set of solutions, study materials, close mentoring, and more to help each student make the most of their study time and prepare effectively for the exam especially from the comforts of their homes.</p>',1,1,1,'2021-09-02 16:50:23','2021-10-06 19:45:14','2021-10-06 19:45:14'),(24,'2021 - JEE Paper 1','2021-09-02 22:23:00','question_paper/RPqqfRiWNqCffEpBnw20SxvpAAe7PiwJpejgwLMK.pdf','<p>Solved Paper</p>','1',NULL,'2021-jee-paper-1',NULL,NULL,0,0,NULL,NULL,NULL,NULL,'<p>While observing the latest developments in IIT JEE including the Examination Mode, pattern, and other changes, we at Padhloji have come with a comprehensive JEE preparation course for aspirants who are planning to appear at the national level entrance exam. We are offering an exhaustive set of solutions, study materials, close mentoring, and more to help each student make the most of their study time and prepare effectively for the exam especially from the comforts of their homes.</p>',3,1,1,'2021-09-02 16:56:54','2021-09-02 16:59:20','2021-09-02 16:59:20'),(25,'Chapter 1 - Sets','2021-09-03 19:49:00','question_paper/JEUM0HCe1cgdSZxsVnoieIi6cqyhXob8jNN91u4t.pdf','<p>NCERT Solution</p>','991',NULL,'chapter-1-sets',NULL,NULL,0,28,'<p>Mathematics can be a tough subject for many students hence, getting help from experts becomes essential while preparing for board exams. NCERT Solutions for Class 11 Mathematics Chapters prepared by subject matter experts at Padhloji makes all the concepts appear very simple.</p>','<p><strong>The Class 11 Mathematics NCERT solutions</strong> help you understand the basics and master the subject. This is why Padhloji brings you NCERT solutions for class 11 Mathematics to help you better understand and learn the subject.</p>',NULL,NULL,'<p>While observing the latest developments in IIT JEE including the Examination Mode, pattern, and other changes, we at Padhloji have come with a comprehensive JEE preparation course for aspirants who are planning to appear at the national level entrance exam. We are offering an exhaustive set of solutions, study materials, close mentoring, and more to help each student make the most of their study time and prepare effectively for the exam especially from the comforts of their homes.</p>',1,1,NULL,'2021-09-03 14:20:27','2021-10-06 19:46:21','2021-10-06 19:46:21'),(26,'Chapter 2 - Relation and Function','2021-09-03 19:52:00','question_paper/4RlsIA7Kte7NjGdiDDeq7kxlqU8LPtz6tUYZfgXj.pdf','<p>NCERT Solution</p>','992',NULL,'chapter-2-relation-and-function',NULL,NULL,0,28,NULL,NULL,NULL,NULL,'<p>While observing the latest developments in IIT JEE including the Examination Mode, pattern, and other changes, we at Padhloji have come with a comprehensive JEE preparation course for aspirants who are planning to appear at the national level entrance exam. We are offering an exhaustive set of solutions, study materials, close mentoring, and more to help each student make the most of their study time and prepare effectively for the exam especially from the comforts of their homes.</p>',1,1,NULL,'2021-09-03 14:22:31','2021-10-06 19:46:24','2021-10-06 19:46:24'),(27,'Chapter 3 - Trigonometric Functions','2021-09-03 19:53:00','question_paper/t6GMtQs9PNqJMdQfqowIhXRt46fjcnPynuJdi6oh.pdf','<p>NCERT Solutions</p>','993',NULL,'chapter-3-trigonometric-functions',NULL,NULL,0,28,NULL,NULL,NULL,NULL,'<p>While observing the latest developments in IIT JEE including the Examination Mode, pattern, and other changes, we at Padhloji have come with a comprehensive JEE preparation course for aspirants who are planning to appear at the national level entrance exam. We are offering an exhaustive set of solutions, study materials, close mentoring, and more to help each student make the most of their study time and prepare effectively for the exam especially from the comforts of their homes.</p>',1,1,1,'2021-09-03 14:23:49','2021-10-06 19:45:45','2021-10-06 19:45:45'),(28,'Chapter 4 - Principle of mathematical Induction','2021-09-03 19:55:00','question_paper/cnPOnRMf82x12azJh4Cp0x5chdfC6NmgdpqMWRrE.pdf','<p>NCERT Solution</p>','994',NULL,'chapter-4-principle-of-mathematical-induction',NULL,NULL,0,28,NULL,NULL,NULL,NULL,'<p>While observing the latest developments in IIT JEE including the Examination Mode, pattern, and other changes, we at Padhloji have come with a comprehensive JEE preparation course for aspirants who are planning to appear at the national level entrance exam. We are offering an exhaustive set of solutions, study materials, close mentoring, and more to help each student make the most of their study time and prepare effectively for the exam especially from the comforts of their homes.</p>',1,1,1,'2021-09-03 14:25:42','2021-10-06 19:45:22','2021-10-06 19:45:22'),(29,'Chapter 5 - Complex Numbers and Quadratic Equations','2021-09-03 19:57:00','question_paper/Gs56omhBuvnSHfdRIEEPfEId7fYOnMD9eLKe78Jv.pdf','<p>NCERT Solution</p>','995',NULL,'chapter-5-complex-numbers-and-quadratic-equations',NULL,NULL,0,28,NULL,NULL,NULL,NULL,'<p>While observing the latest developments in IIT JEE including the Examination Mode, pattern, and other changes, we at Padhloji have come with a comprehensive JEE preparation course for aspirants who are planning to appear at the national level entrance exam. We are offering an exhaustive set of solutions, study materials, close mentoring, and more to help each student make the most of their study time and prepare effectively for the exam especially from the comforts of their homes.</p>',1,1,NULL,'2021-09-03 14:27:28','2021-10-06 19:44:55','2021-10-06 19:44:55'),(30,'Chapter 6 - Linear Inequalities','2021-09-03 19:58:00','question_paper/79azGJWxE41vAk9sD3t5bQcLiomQTIlbnF6h0WNV.pdf','<p>NCERT Solution</p>','996',NULL,'chapter-6-linear-inequalities',NULL,NULL,0,28,NULL,NULL,NULL,NULL,'<p>While observing the latest developments in IIT JEE including the Examination Mode, pattern, and other changes, we at Padhloji have come with a comprehensive JEE preparation course for aspirants who are planning to appear at the national level entrance exam. We are offering an exhaustive set of solutions, study materials, close mentoring, and more to help each student make the most of their study time and prepare effectively for the exam especially from the comforts of their homes.</p>',1,1,1,'2021-09-03 14:28:32','2021-10-06 19:44:34','2021-10-06 19:44:34'),(31,'Testing Test','2021-09-03 21:04:00',NULL,'<p>This is for testing</p>','112233',NULL,'testing-test',NULL,NULL,0,0,NULL,NULL,NULL,'<p>This is for testing</p>','<p>This is for testing</p>',4,1,NULL,'2021-09-03 15:34:27','2021-09-03 16:18:40','2021-09-03 16:18:40'),(32,'Chapter 1 - Some basic concepts of Chemistry','2021-09-03 21:45:00','question_paper/C9th5SRBg40XcSr9OYUQCI4qfWNky2y6pO1XCoRJ.pdf','<p>NCERT Solution</p>','881',NULL,'chapter-1-some-basic-concepts-of-chemistry',NULL,NULL,0,27,NULL,'<p><strong>The Class 11 Chemistry NCERT solutions</strong> help you understand the basics and master the subject. This is why Padhloji brings you NCERT solutions for class 11 Physics to help you better understand and learn the subject.</p>',NULL,NULL,'<p>While observing the latest developments in IIT JEE including the Examination Mode, pattern, and other changes, we at Padhloji have come with a comprehensive JEE preparation course for aspirants who are planning to appear at the national level entrance exam. We are offering an exhaustive set of solutions, study materials, close mentoring, and more to help each student make the most of their study time and prepare effectively for the exam especially from the comforts of their homes.</p>',1,1,1,'2021-09-03 16:16:14','2021-10-06 19:44:48','2021-10-06 19:44:48'),(33,'Chapter 2 - Structure of Atom','2021-09-03 21:46:00','question_paper/OcJ8kFlnOKCisvsOP7CjLBKI9flfKwJshmK1VsnL.pdf','<p>NCERT Solution</p>','882',NULL,'chapter-2-structure-of-atom',NULL,NULL,0,27,NULL,NULL,NULL,NULL,'<p>While observing the latest developments in IIT JEE including the Examination Mode, pattern, and other changes, we at Padhloji have come with a comprehensive JEE preparation course for aspirants who are planning to appear at the national level entrance exam. We are offering an exhaustive set of solutions, study materials, close mentoring, and more to help each student make the most of their study time and prepare effectively for the exam especially from the comforts of their homes.</p>',1,1,NULL,'2021-09-03 16:17:23','2021-10-06 19:44:06','2021-10-06 19:44:06'),(34,'Chapter 3 - Classifications of Elements and Periodicity','2021-09-03 21:49:00','question_paper/yYO8Q6bevpEHoW6YbdEuEdRKmNQEq8c2u9dIEZtz.pdf','<p>NCERT Solution</p>','883',NULL,'chapter-3-classifications-of-elements-and-periodicity',NULL,NULL,0,27,NULL,NULL,NULL,NULL,'<p>While observing the latest developments in IIT JEE including the Examination Mode, pattern, and other changes, we at Padhloji have come with a comprehensive JEE preparation course for aspirants who are planning to appear at the national level entrance exam. We are offering an exhaustive set of solutions, study materials, close mentoring, and more to help each student make the most of their study time and prepare effectively for the exam especially from the comforts of their homes.</p>',1,1,NULL,'2021-09-03 16:19:46','2021-10-06 19:44:11','2021-10-06 19:44:11'),(35,'Chapter 4 - Chemical Bonding and Molecular Structure Chemistry','2021-09-03 21:50:00','question_paper/dKkK21PNbzj2KBwYj3jd2FYQfE2GoX6Lom3KwVM1.pdf','<p>NCERT Solution</p>','884',NULL,'chapter-4-chemical-bonding-and-molecular-structure-chemistry',NULL,NULL,0,27,NULL,NULL,NULL,NULL,'<p>While observing the latest developments in IIT JEE including the Examination Mode, pattern, and other changes, we at Padhloji have come with a comprehensive JEE preparation course for aspirants who are planning to appear at the national level entrance exam. We are offering an exhaustive set of solutions, study materials, close mentoring, and more to help each student make the most of their study time and prepare effectively for the exam especially from the comforts of their homes.</p>',1,1,NULL,'2021-09-03 16:20:44','2021-10-06 19:44:42','2021-10-06 19:44:42'),(36,'Chapter 5 - Status of Matter','2021-09-03 21:51:00','question_paper/Szsjpxny0SggzQ5hkMJiO6mT7P3NFdXQRRIzOroT.pdf','<p>NCERT Solutions</p>','885',NULL,'chapter-5-status-of-matter',NULL,NULL,0,27,NULL,NULL,NULL,NULL,'<p>While observing the latest developments in IIT JEE including the Examination Mode, pattern, and other changes, we at Padhloji have come with a comprehensive JEE preparation course for aspirants who are planning to appear at the national level entrance exam. We are offering an exhaustive set of solutions, study materials, close mentoring, and more to help each student make the most of their study time and prepare effectively for the exam especially from the comforts of their homes.</p>',1,1,NULL,'2021-09-03 16:21:49','2021-10-06 19:45:29','2021-10-06 19:45:29'),(37,'Chapter 6 - Thermodynamics','2021-09-03 21:52:00','question_paper/XBAIaGUMgtMtDoEjBZaNgqCXWlxxi4mB28MBliHh.pdf','<p>NCERT Solution</p>','996',NULL,'chapter-6-thermodynamics',NULL,NULL,0,27,NULL,NULL,NULL,NULL,'<p>While observing the latest developments in IIT JEE including the Examination Mode, pattern, and other changes, we at Padhloji have come with a comprehensive JEE preparation course for aspirants who are planning to appear at the national level entrance exam. We are offering an exhaustive set of solutions, study materials, close mentoring, and more to help each student make the most of their study time and prepare effectively for the exam especially from the comforts of their homes.</p>',1,1,NULL,'2021-09-03 16:22:42','2021-10-06 19:41:42','2021-10-06 19:41:42'),(38,'Chapter 1 - The Portrait of Lady','2021-09-03 22:03:00','question_paper/VkRUjGoFVD5tGEUNx3MUpbPyEjHZevvYEkZFQt7l.pdf','<p>NCERT Solution</p>','771',NULL,'chapter-1-the-portrait-of-lady',NULL,NULL,0,38,NULL,'<p><strong>The Class 11 English NCERT solutions</strong> help you understand the basics and master the subject. This is why Padhloji brings you NCERT solutions for class 11 Physics to help you better understand and learn the subject.</p>',NULL,NULL,'<p>While observing the latest developments in IIT JEE including the Examination Mode, pattern, and other changes, we at Padhloji have come with a comprehensive JEE preparation course for aspirants who are planning to appear at the national level entrance exam. We are offering an exhaustive set of solutions, study materials, close mentoring, and more to help each student make the most of their study time and prepare effectively for the exam especially from the comforts of their homes.</p>',1,1,1,'2021-09-03 16:33:46','2021-10-06 19:45:38','2021-10-06 19:45:38'),(39,'Chapter 2 - We are Not Afraid to Die…If We Can All Be Together','2021-09-03 22:05:00','question_paper/H0aQDQDYlaETd22osvM8s5j8f5mYW5qs8dcIU96X.pdf','<p>NCERT Solution</p>','772',NULL,'chapter-2-we-are-not-afraid-to-dieif-we-can-all-be-together',NULL,NULL,0,38,NULL,NULL,NULL,NULL,'<p>While observing the latest developments in IIT JEE including the Examination Mode, pattern, and other changes, we at Padhloji have come with a comprehensive JEE preparation course for aspirants who are planning to appear at the national level entrance exam. We are offering an exhaustive set of solutions, study materials, close mentoring, and more to help each student make the most of their study time and prepare effectively for the exam especially from the comforts of their homes.</p>',1,1,NULL,'2021-09-03 16:36:14','2021-10-06 19:41:35','2021-10-06 19:41:35'),(40,'Chapter 3 - Discovering Tut the Saga Continues','2021-09-03 22:08:00','question_paper/Qe7x70TsbXqgIddKoiGillWcJ2COJQPJdtUgT38Z.pdf','<p>NCERT Solution</p>','773',NULL,'chapter-3-discovering-tut-the-saga-continues',NULL,NULL,0,38,NULL,NULL,NULL,NULL,'<p>While observing the latest developments in IIT JEE including the Examination Mode, pattern, and other changes, we at Padhloji have come with a comprehensive JEE preparation course for aspirants who are planning to appear at the national level entrance exam. We are offering an exhaustive set of solutions, study materials, close mentoring, and more to help each student make the most of their study time and prepare effectively for the exam especially from the comforts of their homes.</p>',1,1,NULL,'2021-09-03 16:38:37','2021-10-06 19:45:08','2021-10-06 19:45:08'),(41,'Chapter 4 - Landscape of the Soul','2021-09-03 22:09:00','question_paper/xtyXYkBrFxPdBNKIgFnrWoZRDkAofkwIbZRMN3fw.pdf','<p>NCERT Solution</p>','774',NULL,'chapter-4-landscape-of-the-soul',NULL,NULL,0,38,NULL,NULL,NULL,NULL,'<p>While observing the latest developments in IIT JEE including the Examination Mode, pattern, and other changes, we at Padhloji have come with a comprehensive JEE preparation course for aspirants who are planning to appear at the national level entrance exam. We are offering an exhaustive set of solutions, study materials, close mentoring, and more to help each student make the most of their study time and prepare effectively for the exam especially from the comforts of their homes.</p>',1,1,NULL,'2021-09-03 16:40:09','2021-10-06 19:44:00','2021-10-06 19:44:00'),(42,'Chapter 5 - The Ailing Planet the Green Movement’s Role','2021-09-03 22:11:00','question_paper/RX0o6BkQrP0rJBjfyKXhQYORDJQZgiSZV8AjChEs.pdf','<p>NCERT Solution</p>','775',NULL,'chapter-5-the-ailing-planet-the-green-movements-role',NULL,NULL,0,38,NULL,NULL,NULL,NULL,'<p>While observing the latest developments in IIT JEE including the Examination Mode, pattern, and other changes, we at Padhloji have come with a comprehensive JEE preparation course for aspirants who are planning to appear at the national level entrance exam. We are offering an exhaustive set of solutions, study materials, close mentoring, and more to help each student make the most of their study time and prepare effectively for the exam especially from the comforts of their homes.</p>',1,1,NULL,'2021-09-03 16:41:24','2021-10-06 19:45:51','2021-10-06 19:45:51'),(43,'Chapter 6 - The Browning Version','2021-09-03 22:12:00','question_paper/6vRI4hVm0oT2RrubcaXW9OJjjLYu8jPINu7eSH9S.pdf','<p>NCERT Solution</p>','776',NULL,'chapter-6-the-browning-version',NULL,NULL,0,38,NULL,NULL,NULL,NULL,'<p>While observing the latest developments in IIT JEE including the Examination Mode, pattern, and other changes, we at Padhloji have come with a comprehensive JEE preparation course for aspirants who are planning to appear at the national level entrance exam. We are offering an exhaustive set of solutions, study materials, close mentoring, and more to help each student make the most of their study time and prepare effectively for the exam especially from the comforts of their homes.</p>',1,1,NULL,'2021-09-03 16:42:58','2021-10-06 19:45:01','2021-10-06 19:45:01'),(44,'JEE Main - Shift 1 (24/02/2021)','2021-09-03 22:18:00','question_paper/S1TXvAP8VuSjUgFjCimoORFmSBBFIYF5PQpB1mfX.pdf','<p>Solved Exam</p>','111',NULL,'jee-main-shift-1-24022021',NULL,NULL,0,0,NULL,NULL,NULL,'<p>JEE Main 2021 Paper 1, for B. Tech, has been conducted on February 24th, 2021. Based on the feedback of the examinees, the difficulty level of the paper is concluded to be moderate. There were a total of 90 questions from Physics, Chemistry, and Mathematics in the JEE Main 2021 Paper 1.</p>','<p>While observing the latest developments in IIT JEE including the Examination Mode, pattern, and other changes, we at Padhloji have come with a comprehensive JEE preparation course for aspirants who are planning to appear at the national level entrance exam. We are offering an exhaustive set of solutions, study materials, close mentoring, and more to help each student make the most of their study time and prepare effectively for the exam especially from the comforts of their homes.</p>',4,1,NULL,'2021-09-03 16:49:04','2021-09-03 17:03:31','2021-09-03 17:03:31'),(45,'JEE Main - Shift 2 (24/02/2021)','2021-09-03 22:22:00','question_paper/2ci92KrRybs0XrtSRWoLaPhw9V1cdKriSScvTgRj.pdf','<p>Solved Exam</p>','112',NULL,'jee-main-shift-2-24022021',NULL,NULL,0,0,NULL,NULL,NULL,NULL,'<p>While observing the latest developments in IIT JEE including the Examination Mode, pattern, and other changes, we at Padhloji have come with a comprehensive JEE preparation course for aspirants who are planning to appear at the national level entrance exam. We are offering an exhaustive set of solutions, study materials, close mentoring, and more to help each student make the most of their study time and prepare effectively for the exam especially from the comforts of their homes.</p>',4,1,NULL,'2021-09-03 16:53:24','2021-10-06 19:46:28','2021-10-06 19:46:28'),(46,'JEE Main - Shift 1 (24-02-2021)','2021-09-03 22:34:00',NULL,'<p>Solved Exam</p>','111',NULL,'jee-main-shift-1-24-02-2021',NULL,NULL,0,0,NULL,NULL,NULL,NULL,'<p>While observing the latest developments in IIT JEE including the Examination Mode, pattern, and other changes, we at Padhloji have come with a comprehensive JEE preparation course for aspirants who are planning to appear at the national level entrance exam. We are offering an exhaustive set of solutions, study materials, close mentoring, and more to help each student make the most of their study time and prepare effectively for the exam especially from the comforts of their homes.</p>',4,1,NULL,'2021-09-03 17:04:50','2021-10-06 19:46:31','2021-10-06 19:46:31'),(47,'Relation and Function Important Questions','2021-09-12 22:38:00','question_paper/2mCqeTODU5rK8KLmTktnQIAiiWRUuhUzeb05wmqI.pdf','<p>IMPORTANT QUESTIONS</p>','MATH01',NULL,'relation-and-function-important-questions',NULL,NULL,0,40,NULL,'<p>relation is connection between two quanties.</p>','<p>hello welcome to mathematics</p>','<p>these are very import questions as per jee.</p>','<p>xyzhjshdjshdjfhjhxdjhjhdjhfjhjkashfjhjhajshfjhjahfdjh</p>',3,1,1,'2021-09-12 17:10:49','2021-10-06 19:43:29','2021-10-06 19:43:29'),(48,'Circles','2021-09-12 22:44:00','question_paper/b27ucQoMhSwDxNEHfuDlcaB8kY3TZrpv4JpWPcJC.pdf','<p>CHAPTER 8TH</p>','phy01',NULL,'circles',NULL,NULL,0,28,NULL,NULL,'<p>HELLO CIRCLE WILL BE VERY IMPORT CHAPTER</p>','<p>HELLO THIS IS CIRCLE</p>',NULL,3,1,1,'2021-09-12 17:15:47','2021-10-06 19:46:37','2021-10-06 19:46:37'),(49,'JEE 2021 February Attempt Day Shift -1','2021-09-12 22:48:00','question_paper/4BfP6s21MrN4znLlzFrOe2odlJnoVJmuD6ljWppu.pdf','<p>DAY -1</p>','PY01',NULL,'jee-2021-february-attempt-day-shift-1',NULL,NULL,0,0,NULL,NULL,NULL,NULL,'<p>hhhh</p>',4,1,1,'2021-09-12 17:20:24','2021-09-25 19:07:53','2021-09-25 19:07:53'),(52,'Newton\'s law of motion','2021-09-27 13:46:00','question_paper/xtmF8d2mPEm9M6n74XRvxreql1Lr12lQx7AJFYaR.pdf','<p>test</p>','678',NULL,'newtons-law-of-motion',NULL,NULL,0,26,NULL,NULL,NULL,NULL,NULL,0,1,NULL,'2021-09-27 08:17:22','2021-09-27 08:19:21','2021-09-27 08:19:21'),(50,'Integration','2021-09-20 21:04:00','question_paper/L1ECDSOxxByjTMxycdTdHuTa9cDR5qjOtsUFTylI.pdf','<p>sfgdsgfbng</p>','123445',NULL,'integration',NULL,NULL,0,28,NULL,NULL,NULL,NULL,NULL,3,1,1,'2021-09-20 15:35:40','2021-10-06 19:43:51','2021-10-06 19:43:51'),(51,'UNIT AND DAIMENSION','2021-09-22 15:03:00','question_paper/9alOsAhxK6qhcOcRZutsdM2gvOcSPUE3b5w5Dc0i.pdf','<p>FDF</p>',NULL,NULL,'unit-and-daimension',NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,1,1,1,'2021-09-22 09:33:28','2021-10-06 19:44:18','2021-10-06 19:44:18'),(53,'Fundamental of Mathematics','2021-09-27 23:06:00','question_paper/L7eoP4eSoBBcyI3fsyWFeNrrZi6iKwsCqDtHJEdS.pdf','<p>basics</p>','Im01',NULL,'fundamental-of-mathematics',NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,3,1,1,'2021-09-27 17:39:16','2021-10-06 19:44:23','2021-10-06 19:44:23'),(54,'1.Unit and Daimension','2021-09-27 23:22:00','question_paper/5iNWZiGrAmXZXqvFpRDeSNvsN2pIBp2Pmu5J99Ez.pdf','<p>hello physics</p>','vv',NULL,'1unit-and-daimension',NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,3,1,1,'2021-09-27 17:56:08','2021-10-06 19:43:42','2021-10-06 19:43:42'),(55,'Mole Concept','2021-09-27 23:27:00','question_paper/ylxyNlYvCFYmaGnscvFt4BU13PqzTulNaYDjL8UN.pdf','<p>chem is chem</p>','sdfg',NULL,'mole-concept',NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,3,1,1,'2021-09-27 17:58:00','2021-10-06 19:44:28','2021-10-06 19:44:28'),(56,'Probability','2021-09-28 00:02:00','question_paper/Z2Ye0A2xiAH5k1pHxp1S9RHaUJPSq5BMdHqi0SaA.pdf','<p>jjjjj</p>','hhhh',NULL,'probability',NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,5,1,1,'2021-09-27 18:32:41','2021-10-06 19:43:34','2021-10-06 19:43:34'),(57,'Unit and Daimension (JEE)','2021-10-07 01:23:00','question_paper/f9HuI1fZrhinFIZBJhkzj5vrmqq701HAB6ZCOws0.pdf','<p>123</p>',NULL,NULL,'unit-and-daimension-jee',NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,3,1,1,'2021-10-06 19:54:26','2021-12-23 15:59:47','2021-12-23 15:59:47'),(58,'20 July 2021 (Morning Sift) Question Paper & Solutions','2021-10-07 01:29:00','question_paper/NaWIF05CTqWfCKOJxQWvkc2NxixjRL2AnTR4HhoV.pdf','<p>jee main</p>','a',NULL,'20-july-2021-morning-sift-question-paper-solutions',NULL,NULL,0,47,NULL,NULL,NULL,NULL,NULL,4,1,1,'2021-10-06 20:00:22','2021-10-07 08:01:30','2021-10-07 08:01:30'),(59,'Relation and Functions (Board+JEE) Hand Written Notes','2021-10-07 01:57:00','question_paper/pdJUIsnesg6TK8uH8i6UC6SwRObqnfxZlaeYPQas.pdf','<p>asdfg</p>',NULL,NULL,'relation-and-functions-boardjee-hand-written-notes',NULL,NULL,48,28,NULL,NULL,NULL,NULL,NULL,5,1,1,'2021-10-06 20:27:52','2021-12-23 16:00:14','2021-12-23 16:00:14'),(60,'NEET 2021 Question Paper with Solution','2021-10-07 12:11:00','question_paper/dZjbIkMxqN3X7wsMJBF8vX9I51QAjajN5IvvCLuN.pdf','<p><strong>National Eligibility-cum-Entrance Test (NEET-UG) 2021</strong></p>','NEETPY2021',NULL,'neet-2021-question-paper-with-solution',NULL,NULL,0,0,NULL,NULL,NULL,NULL,'<p><strong>The National Eligibility-cum-Entrance Test (NEET-UG) for admission to the undergraduate medical education (MBBS / Dental /Ayurveda /Siddha /Unani/Homeopathy<strong>) </strong> will be conducted by the NTA. </strong></p>\r\n<p>While observing the latest developments in <strong>NEET-UG</strong> including the Examination Mode, pattern, and other changes, we at Padhloji have come with a comprehensive <strong>NEET-UG</strong> preparation course for aspirants who are planning to appear at the national level entrance exam.</p>',4,1,1,'2021-10-07 06:42:42','2021-10-10 12:03:45',NULL),(61,'26 August 2021 (Evening Shift) Question Paper & Solution','2021-10-07 12:19:00','question_paper/zo01aNBqxCQoFNsfDzARxx9MEMVjRelUn7rXPEeS.pdf','<p>26 August 2021 (Morning Sift) Question Paper & Solutions</p>','JMPY26082021',NULL,'26-august-2021-evening-shift-question-paper-solution',NULL,NULL,51,49,'<p>The <strong>Joint Entrance Examination (JEE Main)</strong> comprises of two papers. The Paper1 is conducted for admission to Undergraduate Engineering Programs (B.E/B. Tech) at <strong>NITs, IIITs</strong>, other <strong>Centrally Funded Technical Institutions (CFTIs)</strong>, Institutions/Universities funded/recognized by participating State Governments, as well as an eligibility test for <strong>JEE (Advanced)</strong>, which is conducted for admission to IITs. </p>\r\n<p>While observing the latest developments in IIT JEE including the Examination Mode, pattern, and other changes, we at <strong>Padhloji</strong> have come with a comprehensive JEE preparation course for aspirants who are planning to appear at the national level entrance exam.</p>',NULL,NULL,'<p><strong><span style=\"font-size: 7.5pt; font-family: \'Verdana\',\'sans-serif\'; color: black;\">You can move forward using the strengths and weaknesses you’ve learned from your past experiences. The strengths and weaknesses you’ve acquired from the past make you WHO and WHAT you are. If you want to keep learning, then look back and reflect on every lesson you’ve learned, but move forward in order to learn more!</span></strong></p>\r\n<p style=\"font-variant-ligatures: normal; font-variant-caps: normal; orphans: 2; text-align: start; widows: 2; -webkit-text-stroke-width: 0px; text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial; word-spacing: 0px;\"><span style=\"font-size: 7.5pt; font-family: \'Verdana\',\'sans-serif\'; color: black;\">i.e. why Previous Year Solved Question Papers are a great resource of asylum illustrations and dynamic tips for revision. It encompasses all the important questions from an exam point-of-view. Solutions created by Padhloji Experts really Helpful for you.</span></p>','<p>The <strong>Joint Entrance Examination (JEE Main)</strong> comprises of two papers. The Paper1 is conducted for admission to Undergraduate Engineering Programs (B.E/B. Tech) at <strong>NITs, IIITs</strong>, other <strong>Centrally Funded Technical Institutions (CFTIs)</strong>, Institutions/Universities funded/recognized by participating State Governments, as well as an eligibility test for <strong>JEE (Advanced)</strong>, which is conducted for admission to IITs. </p>\r\n<p>While observing the latest developments in IIT JEE including the Examination Mode, pattern, and other changes, we at <strong>Padhloji</strong> have come with a comprehensive JEE preparation course for aspirants who are planning to appear at the national level entrance exam.</p>',4,1,1,'2021-10-07 06:51:16','2022-01-21 20:55:05',NULL),(62,'26 August 2021 (Morning Shift) Question Paper & Solution','2021-10-09 23:43:00','question_paper/SblAu19IyRkTJMAi9f5dzrBy9xfx0KMEiXFtv5Bu.pdf','<p>26 August 2021 (Morning Sift) Question Paper & Solutions</p>','PY26082021M',NULL,'26-august-2021-morning-shift-question-paper-solution',NULL,NULL,51,49,NULL,NULL,NULL,NULL,NULL,4,1,1,'2021-10-09 18:14:50','2021-10-25 09:15:56',NULL),(63,'27 August 2021 (Morning Shift) Question Paper & Solution','2021-10-09 23:46:00','question_paper/Q&Ans_with_Sol_JEEMain_27July21_MorningShift.pdf','<p>27 August 2021 (Morning Sift) Question Paper & Solutions</p>','PY27082021M',NULL,'27-august-2021-morning-shift-question-paper-solution',NULL,NULL,51,49,NULL,NULL,NULL,NULL,NULL,4,1,1,'2021-10-09 18:17:00','2021-11-02 13:27:06',NULL),(64,'27 August 2021 (Evening Shift) Question Paper & Solution','2021-10-09 23:48:00','question_paper/cn76N9lPDcmd6DOI9VMMhN4NUCS0B5S9qIdP36x4.pdf','<p>27 August 2021 (Evening Sift) Question Paper & Solutions</p>','PY27082021E',NULL,'27-august-2021-evening-shift-question-paper-solution',NULL,NULL,51,49,NULL,NULL,NULL,NULL,NULL,4,1,1,'2021-10-09 18:19:26','2021-10-12 13:52:43',NULL),(65,'31 August 2021 (Morning Shift) Question Paper & Solution','2021-10-09 23:50:00','question_paper/8SLfAtLpSxZ9Z0maxrOfxjWL8U9Xk0CvFJDUcgEB.pdf','<p>31 August 2021 (Morning Sift) Question Paper & Solutions</p>',NULL,NULL,'31-august-2021-morning-shift-question-paper-solution',NULL,NULL,51,49,NULL,NULL,NULL,NULL,NULL,4,1,1,'2021-10-09 18:21:25','2021-10-12 13:53:00',NULL),(66,'31 August 2021 (Evening Shift) Question Paper & Solution','2021-10-09 23:52:00','question_paper/UuNOHiaKvTkC0M06KWfQXAIyYrNLbgzrc8jT3f8X.pdf','<p>31 August 2021 (Evening Sift) Question Paper & Solutions</p>','PY31082021E',NULL,'31-august-2021-evening-shift-question-paper-solution',NULL,NULL,51,49,NULL,NULL,NULL,NULL,NULL,4,1,1,'2021-10-09 18:23:37','2021-10-12 13:53:16',NULL),(67,'1 September 2021 (Evening Shift) Question Paper & Solution','2021-10-09 23:54:00','question_paper/1 September 2021 (Evening Shift) Question Paper & Solution.pdf','<p>1 September 2021 (Evening Sift) Question Paper & Solutions</p>','PY31092021E',NULL,'1-september-2021-evening-shift-question-paper-solution',NULL,NULL,51,49,NULL,NULL,NULL,NULL,NULL,4,1,1,'2021-10-09 18:25:36','2022-05-26 05:48:40',NULL),(68,'JEE Advanced 2021 Question Paper-1 & Solution','2021-10-11 00:42:00','question_paper/FGSGjMmMD4kDKkBPp8TjMakWnGCE4aPz8Q0XEZja.pdf','<p>JEE Advanced Ppaer-1, 2021</p>','PYP12021AD',NULL,'jee-advanced-2021-question-paper-1-solution',NULL,NULL,0,49,NULL,NULL,NULL,NULL,NULL,4,1,1,'2021-10-10 19:13:43','2021-10-12 13:55:48',NULL),(69,'JEE Advanced 2021 Question Paper-2 & Solution','2021-10-11 00:48:00','question_paper/apPT9LypShwJrETXnogSNnnd76xJb9ndegQijBzt.pdf','<p>JEE Advanced 2021, Paper-2</p>','PYP22021AD',NULL,'jee-advanced-2021-question-paper-2-solution',NULL,NULL,0,49,NULL,NULL,NULL,NULL,NULL,4,1,1,'2021-10-10 19:19:44','2021-10-12 13:55:01',NULL),(70,'20 July 2021 (Evening Shift) Question Paper & Solution','2021-10-20 23:54:00','question_paper/Q&Ans_with_Sol_JEEMain_20July21_EveningShift.pdf','<p>20 July 2021 (Evening Shift) Question Paper & Solution</p>','PY20072021E',NULL,'20-july-2021-evening-shift-question-paper-solution',NULL,NULL,47,49,NULL,NULL,NULL,NULL,NULL,4,1,1,'2021-10-20 18:25:15','2021-11-02 13:25:05',NULL),(71,'20 July 2021 (Morning Shift) Question Paper & Solution','2021-10-20 23:56:00','question_paper/Q&Ans_with_Sol_JEEMain_20July21_MorningShift.pdf','<p>20 July 2021 (Morning Shift) Question Paper & Solution</p>','PY20072021M',NULL,'20-july-2021-morning-shift-question-paper-solution',NULL,NULL,47,49,NULL,NULL,NULL,NULL,NULL,4,1,1,'2021-10-20 18:26:43','2021-11-02 13:25:33',NULL),(72,'22 July 2021 (Evening Shift) Question Paper & Solution','2021-10-20 23:57:00','question_paper/Q&Ans_with_Sol_JEEMain_22July21_EveningShift.pdf','<p>22 July 2021 (Evening Shift) Question Paper & Solution</p>','PY22072021E',NULL,'22-july-2021-evening-shift-question-paper-solution',NULL,NULL,47,49,NULL,NULL,NULL,NULL,NULL,4,1,1,'2021-10-20 18:27:55','2021-11-02 13:24:23',NULL),(73,'25 July 2021 (Evening Shift) Question Paper & Solution','2021-10-20 23:58:00','question_paper/Q&Ans_with_Sol_JEEMain_25July21_EveningShift.pdf','<p>25 July 2021 (Evening Shift) Question Paper & Solution</p>','PY25072021E',NULL,'25-july-2021-evening-shift-question-paper-solution',NULL,NULL,47,49,NULL,NULL,NULL,NULL,'<p>The <strong>Joint Entrance Examination (JEE Main)</strong> comprises of two papers. The Paper1 is conducted for admission to Undergraduate Engineering Programs (B.E/B. Tech) at <strong>NITs, IIITs</strong>, other <strong>Centrally Funded Technical Institutions (CFTIs)</strong>, Institutions/Universities funded/recognized by participating State Governments, as well as an eligibility test for <strong>JEE (Advanced)</strong>, which is conducted for admission to IITs. </p>\r\n<p>While observing the latest developments in IIT JEE including the Examination Mode, pattern, and other changes, we at <strong>Padhloji</strong> have come with a comprehensive JEE preparation course for aspirants who are planning to appear at the national level entrance exam.</p>',4,1,1,'2021-10-20 18:29:08','2021-11-02 16:25:42',NULL),(74,'25 July 2021 (Morning Shift) Question Paper & Solution','2021-10-21 00:00:00','question_paper/Q&Ans_with_Sol_JEEMain_25July21_MorningShift.pdf','<p>25 July 2021 (Morning Shift) Question Paper & Solution</p>','PY25072021M',NULL,'25-july-2021-morning-shift-question-paper-solution',NULL,NULL,47,49,NULL,NULL,NULL,NULL,NULL,4,1,1,'2021-10-20 18:31:38','2021-11-02 13:02:37',NULL),(75,'27 July 2021 (Evening Shift) Question Paper & Solution','2021-10-21 00:02:00','question_paper/Q&Ans_with_Sol_JEEMain_27July21_EveningShift.pdf','<p>27 July 2021 (Evening Shift) Question Paper & Solution</p>','PY27072021E',NULL,'27-july-2021-evening-shift-question-paper-solution',NULL,NULL,47,49,NULL,NULL,NULL,NULL,NULL,4,1,1,'2021-10-20 18:32:48','2021-11-02 13:27:32',NULL),(76,'27 July 2021 (Morning Shift) Question Paper & Solution','2021-10-21 00:03:00','question_paper/XmsV9uFbFoTTnRCHnXBxR45b0FiRiJ8oNGi7Xgfx.pdf','<p>27 July 2021 (Morning Shift) Question Paper & Solution</p>','PY27072021M',NULL,'27-july-2021-morning-shift-question-paper-solution',NULL,NULL,47,49,NULL,NULL,NULL,NULL,NULL,4,1,1,'2021-10-20 18:34:04','2021-10-25 09:34:36',NULL),(77,'16 March 2021 (Morning Shift) Question Paper & Solution','2021-10-21 00:40:00','question_paper/Q&Ans_with_Sol_JEEMain_16March21_MorningShift.pdf','<p>16 March 2021 (Morning Shift) Question Paper & Solution</p>','PY16032021M',NULL,'16-march-2021-morning-shift-question-paper-solution',NULL,NULL,52,49,NULL,NULL,NULL,NULL,NULL,4,1,1,'2021-10-20 19:11:44','2021-11-02 13:28:08',NULL),(78,'16 March 2021 (Evening Shift) Question Paper & Solution','2021-10-21 00:42:00','question_paper/Q&Ans_with_Sol_JEEMain_16March21_EveningShift.pdf','<p>16 March 2021 (Evening Shift) Question Paper & Solution</p>','PY16032021E',NULL,'16-march-2021-evening-shift-question-paper-solution',NULL,NULL,52,49,NULL,NULL,NULL,NULL,'<p><strong>The Joint Entrance Examination (JEE Main) comprises of two papers. The Paper1 is conducted for admission to Undergraduate Engineering Programs (B.E/B. Tech) at NITs, IIITs, other Centrally Funded Technical Institutions (CFTIs), Institutions/Universities funded/recognized by participating State Governments, as well as an eligibility test for JEE (Advanced), which is conducted for admission to IITs. </strong></p>\r\n<p>While observing the latest developments in <strong>JEE</strong> including the Examination Mode, pattern, and other changes, we at Padhloji have come with a comprehensive <strong>JEE</strong> preparation course for aspirants who are planning to appear at the national level entrance exam.</p>',4,1,1,'2021-10-20 19:13:11','2021-11-13 10:09:23',NULL),(79,'17 March 2021 (Evening Shift) Question Paper & Solution','2021-10-21 00:44:00','question_paper/Q&Ans_with_Sol_JEEMain_17March21_EveningShift.pdf','<p>17 March 2021 (Evening Shift) Question Paper & Solution</p>','PY17032021E',NULL,'17-march-2021-evening-shift-question-paper-solution',NULL,NULL,52,49,NULL,NULL,NULL,NULL,NULL,4,1,1,'2021-10-20 19:14:49','2021-11-02 13:28:55',NULL),(80,'18 March 2021 (Evening Shift) Question Paper & Solution','2021-10-21 00:45:00','question_paper/Q&Ans_with_Sol_JEEMain_18March21_EveningShift.pdf','<p>18 March 2021 (Evening Shift) Question Paper & Solution</p>','PY18032021E',NULL,'18-march-2021-evening-shift-question-paper-solution',NULL,NULL,52,49,NULL,NULL,NULL,NULL,NULL,4,1,1,'2021-10-20 19:16:03','2021-11-02 13:29:48',NULL),(81,'17 March 2021 (Morning Shift) Question Paper & Solution','2021-10-21 00:47:00','question_paper/Q&Ans_with_Sol_JEEMain_17March21_MorningShift.pdf','<p>17 March 2021 (Morning Shift) Question Paper & Solution</p>','PY17032021M',NULL,'17-march-2021-morning-shift-question-paper-solution',NULL,NULL,52,49,NULL,NULL,NULL,NULL,NULL,4,1,1,'2021-10-20 19:17:26','2021-11-02 13:29:21',NULL),(82,'18 March 2021 (Morning Shift) Question Paper & Solution','2021-10-21 00:47:00','question_paper/Q&Ans_with_Sol_JEEMain_18March21_MorningShift.pdf','<p>18 March 2021 (Morning Shift) Question Paper & Solution</p>','PY18032021M',NULL,'18-march-2021-morning-shift-question-paper-solution',NULL,NULL,52,49,NULL,NULL,NULL,NULL,NULL,4,1,1,'2021-10-20 19:18:41','2021-11-02 13:30:09',NULL),(83,'26 February 2021 (Evening Shift) Question Paper & Solution','2021-10-22 19:19:00','question_paper/Q&Ans_with_Sol_JEEMain_26Feb21_EveningShift.pdf','<p>26 February 2021 (Evening Shift) Question Paper & Solution</p>','PY26022021E',NULL,'26-february-2021-evening-shift-question-paper-solution',NULL,NULL,53,49,NULL,NULL,NULL,NULL,NULL,4,1,1,'2021-10-22 13:49:58','2021-11-13 09:51:56',NULL),(84,'25 February 2021 (Evening Shift) Question Paper & Solution','2021-10-22 19:21:00','question_paper/Q&Ans_with_Sol_JEEMain_25Feb21_EveningShift.pdf','<p>25 February 2021 (Evening Shift) Question Paper & Solution</p>','PY25022021E',NULL,'25-february-2021-evening-shift-question-paper-solution',NULL,NULL,53,49,NULL,NULL,NULL,NULL,NULL,4,1,1,'2021-10-22 13:52:11','2021-11-13 09:54:22',NULL),(85,'24 February 2021 (Evening Shift) Question Paper & Solution','2021-10-22 19:23:00','question_paper/Q&Ans_with_Sol_JEEMain_24Feb21_EveningShift.pdf','<p>24 February 2021 (Evening Shift) Question Paper & Solution</p>','PY24022021E',NULL,'24-february-2021-evening-shift-question-paper-solution',NULL,NULL,53,49,NULL,NULL,NULL,NULL,NULL,4,1,1,'2021-10-22 13:53:54','2021-11-13 09:54:55',NULL),(86,'24 February 2021 (Morning Shift) Question Paper & Solution','2021-10-22 19:24:00','question_paper/Q&Ans_with_Sol_JEEMain_24Feb21_MorningShift.pdf','<p>24 February 2021 (Morning Shift) Question Paper & Solution</p>','PY24022021M',NULL,'24-february-2021-morning-shift-question-paper-solution',NULL,NULL,53,49,NULL,NULL,NULL,NULL,NULL,4,1,1,'2021-10-22 13:55:08','2021-11-13 09:55:43',NULL),(87,'25 February 2021 (Morning Shift) Question Paper & Solution','2021-10-22 19:25:00','question_paper/Q&Ans_with_Sol_JEEMain_25Feb21_MorningShift.pdf','<p>25 February 2021 (Morning Shift) Question Paper & Solution</p>','PY25022021M',NULL,'25-february-2021-morning-shift-question-paper-solution',NULL,NULL,53,49,NULL,NULL,NULL,NULL,NULL,4,1,1,'2021-10-22 13:56:22','2021-11-13 09:52:33',NULL),(88,'26 February 2021 (Morning Shift) Question Paper & Solution','2021-10-22 19:26:00','question_paper/Q&Ans_with_Sol_JEEMain_26Feb21_MorningShift.pdf','<p>26 February 2021 (Morning Shift) Question Paper & Solution</p>','PY26022021M',NULL,'26-february-2021-morning-shift-question-paper-solution',NULL,NULL,53,49,NULL,NULL,NULL,NULL,NULL,4,1,1,'2021-10-22 13:57:36','2021-11-13 09:51:12',NULL),(89,'Chapter 1. Electrostatics (Board Notes)','2021-11-03 17:53:00','question_paper/Ch 1 Electrostatics.pdf','<p>Chapter 1. Electrostatics (Board Notes)</p>','12PBNP1',NULL,'chapter-1-electrostatics-board-notes',NULL,NULL,54,26,'<p>Marks ka Assurance</p>',NULL,NULL,NULL,'<p><strong>Board examinations</strong> refer to the public examinations that are conducted at the end of the 10th grade education and at the end of the 12th grade education. The scores achieved in these exams are considered very important for getting into universities, professional courses or training programmes and other occupations.</p>\r\n<p> </p>',5,1,1,'2021-11-03 12:24:59','2022-03-26 05:50:11',NULL),(90,'Chapter 2. Capacitance (Board Notes)','2021-11-10 20:07:00','question_paper/Ch 2 Capacitor.pdf','<p>Chapter 2. Capacitance (Board Notes)</p>',NULL,NULL,'chapter-2-capacitance-board-notes',NULL,NULL,54,26,NULL,NULL,NULL,NULL,NULL,5,1,1,'2021-11-10 14:38:21','2022-03-26 05:51:24',NULL),(91,'Chapter-3. Current Electricity (Board Notes)','2021-11-10 20:09:00','question_paper/Ch 3 Current Electricity.pdf','<p>Current Electricity</p>',NULL,NULL,'chapter-3-current-electricity-board-notes',NULL,NULL,54,26,NULL,NULL,NULL,NULL,NULL,5,1,NULL,'2021-11-10 14:39:55','2021-11-10 14:39:55',NULL),(92,'Chapter-4. Magnetic Effects of Current (Board Notes)','2021-11-10 20:11:00','question_paper/Ch 4 Magnetic Effect of Current.pdf','<p>Magnetic Effects of Current (Board Notes)</p>',NULL,NULL,'chapter-4-magnetic-effects-of-current-board-notes',NULL,NULL,54,26,NULL,NULL,NULL,NULL,NULL,5,1,1,'2021-11-10 14:41:49','2021-11-10 14:47:13',NULL),(93,'Chapter-5. Magnetism & Matter (Board Notes)','2021-11-10 20:13:00','question_paper/Ch 5 Magnetism & Matter.pdf','<p>Magnetism & Matter (Board Notes)</p>',NULL,NULL,'chapter-5-magnetism-matter-board-notes',NULL,NULL,54,26,NULL,NULL,NULL,NULL,NULL,5,1,NULL,'2021-11-10 14:43:43','2021-11-10 14:43:43',NULL),(94,'Chapter-6. Electromagnetic Induction (Board Notes)','2021-11-10 20:14:00','question_paper/Ch 6 Electromagnetic Induction.pdf','<p>Electromagnetic Induction</p>',NULL,NULL,'chapter-6-electromagnetic-induction-board-notes',NULL,NULL,54,26,NULL,NULL,NULL,NULL,NULL,5,1,NULL,'2021-11-10 14:45:22','2021-11-10 14:45:22',NULL),(95,'Chapter-7. Alternating Current (Board Notes)','2021-11-10 20:19:00','question_paper/Ch 7 Alternating Current.pdf','<p>Chapter-7. Alternating Current (Board Notes)</p>',NULL,NULL,'chapter-7-alternating-current-board-notes',NULL,NULL,54,26,NULL,NULL,NULL,NULL,NULL,5,1,NULL,'2021-11-10 14:50:30','2021-11-10 14:50:30',NULL),(96,'Chapter-8. Electromagnetic wave (Board Notes)','2021-11-10 20:23:00','question_paper/Ch 8 Electromagnetic wave.pdf','<p>Chapter-8. Electromagnetic wave (Board Notes)</p>',NULL,NULL,'chapter-8-electromagnetic-wave-board-notes',NULL,NULL,54,26,NULL,NULL,NULL,NULL,NULL,5,1,NULL,'2021-11-10 14:53:39','2021-11-10 14:53:39',NULL),(97,'07 January 2020 (Morning Shift) Question Paper & Solution','2021-11-13 15:41:00','question_paper/Q&Ans_with_Sol_JEEMain_7Jan2020_1.pdf','<p>07 January 2020 (Morning Shift) Question Paper & Solution</p>',NULL,NULL,'07-january-2020-morning-shift-question-paper-solution',NULL,NULL,64,56,NULL,NULL,NULL,NULL,'<p>The<strong> Joint Entrance Examination (JEE Main) </strong>comprises of two papers. The Paper1 is conducted for admission to Undergraduate Engineering Programs (B.E/B. Tech) at<strong> NITs, IIITs, </strong>other<strong> Centrally Funded Technical Institutions (CFTIs), Institutions/Universities funded/recognized </strong>by participating<strong> State Governments, </strong>as well as an eligibility test for<strong> JEE (Advanced), </strong>which is conducted for admission to<strong> IITs. </strong></p>\r\n<p>While observing the latest developments in <strong>JEE</strong> including the Examination Mode, pattern, and other changes, we at <strong>Padhloji</strong> have come with a comprehensive <strong>JEE</strong> preparation course for aspirants who are planning to appear at the national level entrance exam.</p>\r\n<p> </p>',4,1,1,'2021-11-13 10:11:59','2022-02-09 14:00:54',NULL),(98,'JEE Advanced 2013 Question Paper-1 & Solution','2021-11-21 14:37:00','question_paper/Q&Ans_with_Sol_JEEADV_2013_Paper1.pdf','<p>JEE Advanced 2013 Question Paper-1 & Solution</p>',NULL,NULL,'jee-advanced-2013-question-paper-1-solution',NULL,NULL,0,57,NULL,NULL,NULL,NULL,NULL,4,1,1,'2021-11-21 09:08:21','2021-11-22 15:20:43',NULL),(99,'JEE Advanced 2013 Question Paper-2 & Solution','2021-11-21 14:39:00','question_paper/Q&Ans_with_Sol_JEEADV_2013_Paper2.pdf','<p>JEE Advanced 2013 Question Paper-2 & Solution</p>','JA2031P2',NULL,'jee-advanced-2013-question-paper-2-solution',NULL,NULL,0,57,NULL,NULL,NULL,NULL,NULL,4,1,1,'2021-11-21 09:09:40','2021-11-22 15:21:10',NULL),(100,'Chapter-1. Relation and Function (Board Notes)','2021-11-21 15:55:00','question_paper/Ch 1 Relation and Functions.pdf','<p>Chapter-1. Relation and Function (Board Notes)</p>',NULL,NULL,'chapter-1-relation-and-function-board-notes',NULL,NULL,54,28,NULL,NULL,NULL,NULL,NULL,5,1,1,'2021-11-21 10:25:56','2021-11-21 10:27:00',NULL),(101,'Chapter-3. Matrices (Board Notes)','2021-11-22 20:38:00','question_paper/Ch 3 Matrices.pdf','<p>Chapter-2. Matrices (Board Notes)</p>',NULL,NULL,'chapter-3-matrices-board-notes',NULL,NULL,54,28,NULL,NULL,NULL,NULL,NULL,5,1,1,'2021-11-22 15:09:19','2021-11-25 13:18:50',NULL),(102,'Chapter-2. Inverse Trigonometric Functions (Board Notes)','2021-11-22 20:41:00','question_paper/Ch 2 Inverse Trigonometric Functions.pdf','<p>Chapter-2. Inverse Trigonometric Functions (Board Notes)</p>',NULL,NULL,'chapter-2-inverse-trigonometric-functions-board-notes',NULL,NULL,54,28,NULL,NULL,NULL,NULL,NULL,5,1,1,'2021-11-22 15:12:03','2021-11-27 14:05:11',NULL),(103,'Chapter-4. Determinants (Board Notes)','2021-11-22 20:44:00','question_paper/Ch 4 Determinants.pdf','<p>Chapter-4. Determinants (Board Notes)</p>',NULL,NULL,'chapter-4-determinants-board-notes',NULL,NULL,54,28,NULL,NULL,NULL,NULL,NULL,5,1,1,'2021-11-22 15:14:29','2021-11-25 13:20:05',NULL),(104,'Chapter-5. Continuity and Differentiability (Board Notes)','2021-11-22 20:48:00','question_paper/Ch 5 Continuity and Differentiability.pdf','<p>Chapter-5. Continuity and Differentiability (Board Notes)</p>',NULL,NULL,'chapter-5-continuity-and-differentiability-board-notes',NULL,NULL,54,28,NULL,NULL,NULL,NULL,NULL,5,1,1,'2021-11-22 15:18:40','2021-11-29 13:16:18',NULL),(105,'Chapter-1. The Solid States (Board Notes)','2021-11-27 19:29:00','question_paper/Ch 1 The Solid State.pdf','<p>Chapter-1. The Solid States (Board Notes)</p>',NULL,NULL,'chapter-1-the-solid-states-board-notes',NULL,NULL,54,27,NULL,NULL,NULL,NULL,NULL,5,1,NULL,'2021-11-27 14:04:17','2021-11-27 14:04:17',NULL),(106,'Chapter-6. Application of Derivatives (Board Notes)','2021-11-27 19:40:00','question_paper/Ch 6 Application of Derivatives.pdf','<p>Chapter-6. Application of Derivatives (Board Notes)</p>',NULL,NULL,'chapter-6-application-of-derivatives-board-notes',NULL,NULL,54,28,NULL,NULL,NULL,NULL,NULL,5,1,1,'2021-11-27 14:11:35','2021-12-02 13:55:28',NULL),(107,'9 January 2019 (Evening Shift) Question Paper & Solution','2021-11-28 01:03:00','question_paper/9th Jan 2019 Q&Ans_with_Sol_JEEMain_Evening Shift-1.pdf','<p>9 January 2019 (Evening Shift) Question Paper & Solution</p>',NULL,NULL,'9-january-2019-evening-shift-question-paper-solution',NULL,NULL,64,58,NULL,NULL,NULL,NULL,NULL,4,1,1,'2021-11-27 19:34:15','2022-04-25 11:02:00',NULL),(108,'9 January 2019 (Morning Shift) Question Paper & Solution','2021-11-28 01:05:00','question_paper/9th Jan 2019 Q&Ans_with_Sol_JEEMain_Morning Shift-1.pdf','<p>9 January 2019 (Morning Shift) Question Paper & Solution</p>',NULL,NULL,'9-january-2019-morning-shift-question-paper-solution',NULL,NULL,64,58,NULL,NULL,NULL,NULL,NULL,4,1,1,'2021-11-27 19:35:44','2022-04-25 11:06:33',NULL),(109,'10 January 2019 (Evening Shift) Question Paper & Solution','2021-11-28 01:06:00','question_paper/10th Jan 2019 Q&Ans_with_Sol_JEEMain_Evening Shift-1.pdf','<p>10 January 2019 (Evening Shift) Question Paper & Solution</p>',NULL,NULL,'10-january-2019-evening-shift-question-paper-solution',NULL,NULL,64,58,NULL,NULL,NULL,NULL,NULL,4,1,1,'2021-11-27 19:37:03','2022-04-25 11:09:54',NULL),(110,'10 January 2019 (Morning Shift) Question Paper & Solution','2021-11-28 01:08:00','question_paper/10th Jan 2019 Q&Ans_with_Sol_JEEMain_Morning Shift.pdf','<p>10 January 2019 (Morning Shift) Question Paper & Solution</p>',NULL,NULL,'10-january-2019-morning-shift-question-paper-solution',NULL,NULL,64,58,NULL,NULL,NULL,NULL,NULL,4,1,1,'2021-11-27 19:38:44','2022-04-25 11:08:45',NULL),(111,'8 April 2018 (Offline Mode) Question Paper & Solution','2021-11-28 01:10:00','question_paper/8th April Q&Ans_with_Sol_JEEMain_2018.pdf','<p>8 April 2018 (Offline Mode) Question Paper & Solution</p>',NULL,NULL,'8-april-2018-offline-mode-question-paper-solution',NULL,NULL,0,59,NULL,NULL,NULL,NULL,NULL,4,1,1,'2021-11-27 19:41:08','2022-03-22 14:58:30',NULL),(112,'15 April 2018 (Online Mode-Morning Shift) Question Paper & Solution','2021-11-28 01:13:00','question_paper/15th April 2018Q&Ans_with_Sol_JEEMain_Morning.pdf','<p>15 April 2018 (Online Mode-Morning Shift) Question Paper & Solution</p>',NULL,NULL,'15-april-2018-online-mode-morning-shift-question-paper-solution',NULL,NULL,0,59,NULL,NULL,NULL,NULL,NULL,4,1,1,'2021-11-27 19:44:15','2022-03-22 14:59:00',NULL),(113,'15 April 2018 (Online Mode-Evening Shift) Question Paper & Solution','2021-11-28 01:15:00','question_paper/15th April 2018 Q&Ans_with_Sol_JEEMain_Evening Shift.pdf','<p>15 April 2018 (Online Mode-Evening Shift) Question Paper & Solution</p>',NULL,NULL,'15-april-2018-online-mode-evening-shift-question-paper-solution',NULL,NULL,0,59,NULL,NULL,NULL,NULL,NULL,4,1,1,'2021-11-27 19:45:23','2022-03-22 14:59:27',NULL),(114,'16 April 2018 (Online Mode-Morning Shift) Question Paper & Solution','2021-11-28 01:16:00','question_paper/16th April 2018 Q&Ans_with_Sol_JEEMain.pdf','<p>16 April 2018 (Online Mode-Morning Shift) Question Paper & Solution</p>',NULL,NULL,'16-april-2018-online-mode-morning-shift-question-paper-solution',NULL,NULL,0,59,NULL,NULL,NULL,NULL,NULL,4,1,1,'2021-11-27 19:47:12','2022-03-22 14:59:52',NULL),(115,'JEE Main 2017 (Offline Mode) Question Paper & Solution','2021-11-28 01:20:00','question_paper/Q&Ans_with_Sol_JEEMain_2017.pdf','<p>JEE Main 2017 (Offline Mode) Question Paper & Solution</p>',NULL,NULL,'jee-main-2017-offline-mode-question-paper-solution',NULL,NULL,0,60,NULL,NULL,NULL,NULL,NULL,4,1,1,'2021-11-27 19:50:54','2021-12-09 13:35:32',NULL),(116,'JEE Main 2016 (Offline Mode) Question Paper & Solution','2021-11-28 01:21:00','question_paper/Q&Ans_with_Sol_JEEMain_2016.pdf','<p>JEE Main 2016 (Offline Mode) Question Paper & Solution</p>',NULL,NULL,'jee-main-2016-offline-mode-question-paper-solution',NULL,NULL,0,61,NULL,NULL,NULL,NULL,NULL,4,1,1,'2021-11-27 19:52:12','2021-12-07 13:42:05',NULL),(117,'JEE Main 2015 (Offline Mode) Question Paper & Solution','2021-11-28 01:25:00','question_paper/Q&Ans_with_Sol_JEEMain_2015.pdf','<p>JEE Main 2015 (Offline Mode) Question Paper & Solution</p>',NULL,NULL,'jee-main-2015-offline-mode-question-paper-solution',NULL,NULL,0,62,NULL,NULL,NULL,NULL,NULL,4,1,1,'2021-11-27 19:55:41','2021-12-07 13:40:57',NULL),(118,'JEE Main 2014 (Offline Mode) Question Paper & Solution','2021-11-28 01:27:00','question_paper/Q&Ans_with_Sol_JEEMain_2014.pdf','<p>JEE Main 2014 (Offline Mode) Question Paper & Solution</p>',NULL,NULL,'jee-main-2014-offline-mode-question-paper-solution',NULL,NULL,0,63,NULL,NULL,NULL,NULL,NULL,4,1,1,'2021-11-27 19:57:23','2021-12-03 12:28:30',NULL),(119,'JEE Main 2013 (Offline Mode) Question Paper & Solution','2021-11-28 01:28:00','question_paper/Q&Ans_with_Sol_JEEMain_2013.pdf','<p>JEE Main 2013 (Offline Mode) Question Paper & Solution</p>',NULL,NULL,'jee-main-2013-offline-mode-question-paper-solution',NULL,NULL,0,57,NULL,NULL,NULL,NULL,NULL,4,1,1,'2021-11-27 19:58:31','2021-12-03 12:27:56',NULL),(120,'08 April 2019 (Morning Shift) Question Paper & Solution','2021-11-28 01:32:00','question_paper/8th Jan 2019 Q&Ans_with_Sol_JEEMain_Morning Shift.pdf','<p>08 April 2019 (Morning Shift) Question Paper & Solution</p>',NULL,NULL,'08-april-2019-morning-shift-question-paper-solution',NULL,NULL,65,58,NULL,NULL,NULL,'<h4><strong>You can move forward using the strengths and weaknesses you’ve learned from your past experiences. The strengths and weaknesses you’ve acquired from the past make you WHO and WHAT you are. If you want to keep learning, then look back and reflect on every lesson you’ve learned, but move forward in order to learn more!</strong></h4>\r\n<p>Previous Year Solved Question Papers are a great resource of <span class=\"Y2IQFc\" lang=\"en\">asylum </span>illustrations and dynamic tips for revision. It encompasses all the important questions from an exam point-of-view. Solutions created by <strong>Padhloji</strong> Experts really Helpful for you.</p>','<p>The<strong> Joint Entrance Examination (JEE Main) </strong>comprises of two papers. The Paper1 is conducted for admission to Undergraduate Engineering Programs (B.E/B. Tech) at<strong> NITs, IIITs, </strong>other<strong> Centrally Funded Technical Institutions (CFTIs), Institutions/Universities funded/recognized </strong>by participating<strong> State Governments, </strong>as well as an eligibility test for<strong> JEE (Advanced), </strong>which is conducted for admission to<strong> IITs. </strong></p>\r\n<p>While observing the latest developments in <strong>JEE</strong> including the Examination Mode, pattern, and other changes, we at <strong>Padhloji</strong> have come with a comprehensive <strong>JEE</strong> preparation course for aspirants who are planning to appear at the national level entrance exam.</p>\r\n<p> </p>',4,1,1,'2021-11-27 20:02:32','2022-04-04 05:58:21',NULL),(121,'08 April 2019 (Evening Shift) Question Paper & Solution','2021-11-28 01:50:00','question_paper/8th Jan 2019 Q&Ans_with_Sol_JEEMain_Evening Shift.pdf','<p>08 April 2019 (Evening Shift) Question Paper & Solution</p>',NULL,NULL,'08-april-2019-evening-shift-question-paper-solution',NULL,NULL,65,58,NULL,NULL,NULL,'<h4><strong>You can move forward using the strengths and weaknesses you’ve learned from your past experiences. The strengths and weaknesses you’ve acquired from the past make you WHO and WHAT you are. If you want to keep learning, then look back and reflect on every lesson you’ve learned, but move forward in order to learn more!</strong></h4>\r\n<p>Previous Year Solved Question Papers are a great resource of <span class=\"Y2IQFc\" lang=\"en\">asylum </span>illustrations and dynamic tips for revision. It encompasses all the important questions from an exam point-of-view. Solutions created by <strong>Padhloji</strong> Experts really Helpful for you.</p>',NULL,4,1,1,'2021-11-27 20:20:50','2022-04-04 05:58:56',NULL),(122,' 09 April 2019 (Evening Shift) Question Paper & Solution','2021-11-28 01:56:00','question_paper/coming soon..jpg.pdf','<p> 09 April 2019 (Evening Shift) Question Paper & Solution</p>',NULL,NULL,'09-april-2019-evening-shift-question-paper-solution',NULL,NULL,65,58,NULL,NULL,NULL,'<p><strong>The strengths and weaknesses you’ve acquired from the past make you WHO and WHAT you are. If you want to keep learning, then look back and reflect on every lesson you’ve learned, but move forward in order to learn more!</strong></p>\r\n<p>i.e. why Previous Year Solved Question Papers are a great resource of asylum illustrations and dynamic tips for revision. It encompasses all the important questions from an exam point-of-view. Solutions created by Padhloji Experts really Helpful for you.</p>','<p>The<strong> Joint Entrance Examination (JEE Main) </strong>comprises of two papers. The Paper1 is conducted for admission to Undergraduate Engineering Programs (B.E/B. Tech) at<strong> NITs, IIITs, </strong>other<strong> Centrally Funded Technical Institutions (CFTIs), Institutions/Universities funded/recognized </strong>by participating<strong> State Governments, </strong>as well as an eligibility test for<strong> JEE (Advanced), </strong>which is conducted for admission to<strong> IITs. </strong></p>\r\n<p>While observing the latest developments in <strong>JEE</strong> including the Examination Mode, pattern, and other changes, we at <strong>Padhloji</strong> have come with a comprehensive <strong>JEE</strong> preparation course for aspirants who are planning to appear at the national level entrance exam.</p>',4,1,1,'2021-11-27 20:26:42','2022-04-27 17:29:29','2022-04-27 17:29:29'),(201,'09 January 2020 (Evening Shift) Question Paper & Solution','2022-02-11 13:23:00','question_paper/Q&Ans_with_Sol_JEEMain_9Jan2020_2.pdf','<p>09 January 2020 (Evening Shift) Question Paper & Solution</p>',NULL,NULL,'09-january-2020-evening-shift-question-paper-solution',NULL,NULL,64,56,NULL,NULL,NULL,'<p><strong>The strengths and weaknesses you’ve acquired from the past make you WHO and WHAT you are. If you want to keep learning, then look back and reflect on every lesson you’ve learned, but move forward in order to learn more!</strong></p>\r\n<p>i.e. why Previous Year Solved Question Papers are a great resource of asylum illustrations and dynamic tips for revision. It encompasses all the important questions from an exam point-of-view. Solutions created by Padhloji Experts really Helpful for you.</p>','<p>The<strong> Joint Entrance Examination (JEE Main) </strong>comprises of two papers. The Paper1 is conducted for admission to Undergraduate Engineering Programs (B.E/B. Tech) at<strong> NITs, IIITs, </strong>other<strong> Centrally Funded Technical Institutions (CFTIs), Institutions/Universities funded/recognized </strong>by participating<strong> State Governments, </strong>as well as an eligibility test for<strong> JEE (Advanced), </strong>which is conducted for admission to<strong> IITs. </strong></p>\r\n<p>While observing the latest developments in <strong>JEE</strong> including the Examination Mode, pattern, and other changes, we at <strong>Padhloji</strong> have come with a comprehensive <strong>JEE</strong> preparation course for aspirants who are planning to appear at the national level entrance exam.</p>',4,1,1,'2022-02-11 07:54:20','2022-02-11 10:54:21',NULL),(123,'JEE Advanced 2014 Question Paper-1 & Solution','2021-11-28 02:05:00','question_paper/Q&Ans_with_Sol_JEEADV_2014_Paper1.pdf','<p>JEE Advanced 2014 Question Paper-1 & Solution</p>',NULL,NULL,'jee-advanced-2014-question-paper-1-solution',NULL,NULL,0,63,NULL,NULL,NULL,NULL,NULL,4,1,1,'2021-11-27 20:35:29','2022-01-31 18:31:01',NULL),(124,'JEE Advanced 2014 Question Paper-2 & Solution','2021-11-28 02:07:00','question_paper/Q&Ans_with_Sol_JEEADV_2014_Paper2.pdf','<p>JEE Advanced 2014 Question Paper-2 & Solution</p>',NULL,NULL,'jee-advanced-2014-question-paper-2-solution',NULL,NULL,0,63,NULL,NULL,NULL,NULL,NULL,4,1,1,'2021-11-27 20:37:45','2022-01-31 18:31:24',NULL),(125,'NEET 2020 Question Paper with Solution','2021-11-28 02:10:00','question_paper/NEET 2020 Question Paper with Solution.pdf','<p>NEET 2020 Question Paper with Solution</p>',NULL,NULL,'neet-2020-question-paper-with-solution',NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,4,1,1,'2021-11-27 20:40:35','2021-12-23 15:06:07',NULL),(126,'Chapter 2. Solutions (Board Notes)','2021-12-02 18:58:00','question_paper/Ch 2 Solutions.pdf','<p>Chapter-2. Solutions (Board Notes)</p>',NULL,NULL,'chapter-2-solutions-board-notes',NULL,NULL,54,27,NULL,NULL,NULL,NULL,NULL,5,1,1,'2021-12-02 13:29:22','2022-03-18 17:59:11',NULL),(127,'Chapter 7. The p-Block Elements (Board Notes)','2021-12-02 19:31:00','question_paper/coming soon..jpg.pdf','<p>Chapter 7. The p-Block Elements (Board Notes)</p>',NULL,NULL,'chapter-7-the-p-block-elements-board-notes',NULL,NULL,54,27,NULL,NULL,NULL,NULL,NULL,0,1,1,'2021-12-02 14:02:42','2022-03-26 05:49:07',NULL),(128,'JEE Advanced 2016 Question Paper-1 & Solution','2021-12-09 11:37:00','question_paper/Q&Ans_with_Sol_JEEADV_2016_Paper1.pdf','<p>JEE Advanced 2016 Question Paper-1 & Solution</p>',NULL,NULL,'jee-advanced-2016-question-paper-1-solution',NULL,NULL,0,61,NULL,NULL,NULL,NULL,NULL,4,1,1,'2021-12-09 06:08:19','2021-12-27 15:36:04',NULL),(129,'JEE Advanced 2016 Question Paper-2 & Solution','2021-12-09 11:39:00','question_paper/Q&Ans_with_Sol_JEEADV_2016_Paper2.pdf','<p>JEE Advanced 2016 Question Paper-2 & Solution</p>',NULL,NULL,'jee-advanced-2016-question-paper-2-solution',NULL,NULL,0,61,NULL,NULL,NULL,NULL,NULL,4,1,1,'2021-12-09 06:09:33','2022-01-12 14:21:21',NULL),(130,'JEE Advanced 2015 Question Paper-1 & Solution','2021-12-09 11:40:00','question_paper/Q&Ans_with_Sol_JEEADV_2015_Paper1.pdf','<p>JEE Advanced 2015 Question Paper-1 & Solution</p>',NULL,NULL,'jee-advanced-2015-question-paper-1-solution',NULL,NULL,0,62,NULL,NULL,NULL,NULL,NULL,4,1,1,'2021-12-09 06:11:08','2022-01-12 14:24:45',NULL),(131,'JEE Advanced 2015 Question Paper-2 & Solution','2021-12-09 11:41:00','question_paper/Q&Ans_with_Sol_JEEADV_2015_Paper2.pdf','<p>JEE Advanced 2015 Question Paper-2 & Solution</p>',NULL,NULL,'jee-advanced-2015-question-paper-2-solution',NULL,NULL,0,62,NULL,NULL,NULL,NULL,NULL,4,1,1,'2021-12-09 06:12:14','2022-01-12 14:24:14',NULL),(132,'JEE Advanced 2017 Question Paper-1 & Solution','2021-12-11 19:00:00','question_paper/Q&Ans_with_Sol_JEEADV_2017_Paper1.pdf','<p>JEE Advanced 2017 Question Paper-1 & Solution</p>',NULL,NULL,'jee-advanced-2017-question-paper-1-solution',NULL,NULL,0,60,NULL,NULL,NULL,NULL,NULL,4,1,1,'2021-12-11 13:30:30','2021-12-11 13:46:07',NULL),(133,'JEE Advanced 2017 Question Paper-2 & Solution','2021-12-11 19:00:00','question_paper/Q&Ans_with_Sol_JEEADV_2017_Paper2.pdf','<p>JEE Advanced 2017 Question Paper-2 & Solution</p>',NULL,NULL,'jee-advanced-2017-question-paper-2-solution',NULL,NULL,0,60,NULL,NULL,NULL,NULL,NULL,4,1,1,'2021-12-11 13:31:40','2021-12-22 20:00:39',NULL),(134,'CBSE Term-1 Class 12th Mathematics Paper & Solution 2021 (SSJ/1)','2021-12-12 02:01:00','question_paper/CBSE term-1 Class 12th Mathematics Paper & Solution 2021.pdf','<p>CBSE Term-1 Class 12th Mathematics Paper & Solution 2021 (SSJ/1) </p>',NULL,NULL,'cbse-term-1-class-12th-mathematics-paper-solution-2021-ssj1',NULL,NULL,80,82,NULL,NULL,NULL,NULL,NULL,4,1,1,'2021-12-11 20:31:40','2022-05-08 17:29:53',NULL),(135,'CBSE Class 12 Term-2 Mathematics Sample Paper-1 with Solution','2021-12-12 02:21:00','question_paper/coming soon..jpg.pdf','<p>CBSE Class 12 Term-2 Mathematics Sample Paper-1 with Solution</p>',NULL,NULL,'cbse-class-12-term-2-mathematics-sample-paper-1-with-solution',NULL,NULL,66,28,NULL,NULL,NULL,NULL,NULL,0,1,1,'2021-12-11 20:51:23','2022-05-08 15:10:00',NULL),(136,'CBSE Term-1 Class 12th Physics Paper & Solution 2021 (SSJ/1)','2021-12-13 14:32:00','question_paper/CBSE term-1 Class 12th Physics Paper & Solution 2021.pdf','<p>CBSE Term-1 Class 12th Physics Paper & Solution 2021 (SSJ/1) </p>',NULL,NULL,'cbse-term-1-class-12th-physics-paper-solution-2021-ssj1',NULL,NULL,80,82,NULL,NULL,NULL,NULL,NULL,4,1,1,'2021-12-13 09:03:57','2022-05-08 17:30:32',NULL),(137,'CBSE Term-1 Class 10th Science Paper & Solution 2021 (JSK/1)','2021-12-13 14:34:00','question_paper/CBSE Term-1 Class 10th Science Paper & Solution 2021.pdf','<p>CBSE Term-1 Class 10th Science Paper & Solution 2021 (JSK/1) </p>',NULL,NULL,'cbse-term-1-class-10th-science-paper-solution-2021-jsk1',NULL,NULL,80,82,NULL,NULL,NULL,NULL,NULL,4,1,1,'2021-12-13 09:04:48','2022-05-08 17:48:03',NULL),(138,'CBSE Term-1 Class 10th Mathematics Paper & Solution 2021 (JSK/1)','2021-12-13 14:35:00','question_paper/CBSE Term-1 Class 10th Mathematics Paper & Solution 2021.pdf','<p>CBSE Term-1 Class 10th Mathematics Paper & Solution 2021 (JSK/1)</p>',NULL,NULL,'cbse-term-1-class-10th-mathematics-paper-solution-2021-jsk1',NULL,NULL,80,82,NULL,NULL,NULL,NULL,NULL,4,1,1,'2021-12-13 09:05:36','2022-05-08 17:49:00',NULL),(139,'CBSE Term-1 Class 12th Chemistry Paper & Solution 2021 (SSJ/1)','2021-12-15 14:36:00','question_paper/CBSE term-1 Class 12th Chemistry Paper & Solution 2021 (SSJ1).pdf','<p>CBSE Term-1 Class 12th Chemistry Paper & Solution 2021 (SSJ/1)</p>',NULL,NULL,'cbse-term-1-class-12th-chemistry-paper-solution-2021-ssj1',NULL,NULL,80,82,NULL,NULL,NULL,NULL,NULL,4,1,1,'2021-12-13 09:07:02','2022-05-08 17:31:41',NULL),(140,'CBSE term-1 Class 12th Biology Paper & Solution 2021 (SSJ/1)','2021-12-13 14:37:00','question_paper/CBSE term-1 Class 12th Biology Paper & Solution 2021 (SSJ1).pdf','<p>CBSE term-1 Class 12th Biology Paper & Solution 2021 (SSJ/1)</p>',NULL,NULL,'cbse-term-1-class-12th-biology-paper-solution-2021-ssj1',NULL,NULL,80,82,NULL,NULL,NULL,NULL,NULL,4,1,1,'2021-12-13 09:07:47','2022-05-08 17:32:24',NULL),(141,'12345','2021-12-14 22:12:00','question_paper/WhatsApp Image 2021-12-14 at 7.39.40 PM.jpeg','<p>1234</p>',NULL,NULL,'12345',NULL,NULL,0,0,NULL,NULL,NULL,NULL,'<p>The<strong> Joint Entrance Examination (JEE Main) </strong>comprises of two papers. The Paper1 is conducted for admission to Undergraduate Engineering Programs (B.E/B. Tech) at<strong> NITs, IIITs, </strong>other<strong> Centrally Funded Technical Institutions (CFTIs), Institutions/Universities funded/recognized </strong>by participating<strong> State Governments, </strong>as well as an eligibility test for<strong> JEE (Advanced), </strong>which is conducted for admission to<strong> IITs. </strong></p>\r\n<p>While observing the latest developments in <strong>JEE</strong> including the Examination Mode, pattern, and other changes, we at <strong>Padhloji</strong> have come with a comprehensive <strong>JEE</strong> preparation course for aspirants who are planning to appear at the national level entrance exam.</p>',4,1,NULL,'2021-12-14 16:42:59','2021-12-14 17:00:48','2021-12-14 17:00:48'),(142,'123456','2021-12-14 22:13:00','question_paper/WhatsApp Image 2021-12-14 at 7.39.40 PM.jpeg','<p>1234</p>',NULL,NULL,'123456',NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,4,1,NULL,'2021-12-14 16:43:40','2021-12-14 17:00:27','2021-12-14 17:00:27'),(143,'1234567','2021-12-14 22:14:00','question_paper/WhatsApp Image 2021-12-14 at 7.39.40 PM.jpeg','<p>123</p>',NULL,NULL,'1234567',NULL,NULL,0,0,NULL,NULL,NULL,'<p>The<strong> Joint Entrance Examination (JEE Main) </strong>comprises of two papers. The Paper1 is conducted for admission to Undergraduate Engineering Programs (B.E/B. Tech) at<strong> NITs, IIITs, </strong>other<strong> Centrally Funded Technical Institutions (CFTIs), Institutions/Universities funded/recognized </strong>by participating<strong> State Governments, </strong>as well as an eligibility test for<strong> JEE (Advanced), </strong>which is conducted for admission to<strong> IITs. </strong></p>\r\n<p>While observing the latest developments in <strong>JEE</strong> including the Examination Mode, pattern, and other changes, we at <strong>Padhloji</strong> have come with a comprehensive <strong>JEE</strong> preparation course for aspirants who are planning to appear at the national level entrance exam.</p>',NULL,4,1,NULL,'2021-12-14 16:44:48','2021-12-14 17:00:38','2021-12-14 17:00:38'),(144,'CBSE Term-1 Class 12th Mathematics Paper & Solution 2021 (SSJ/2)','2021-12-17 20:58:00','question_paper/CBSE term-1 Class 12th Mathematics Paper & Solution 2021 (SSJ2).pdf','<p>CBSE Term-1 Class 12th Mathematics Paper & Solution 2021 (SSJ/2)</p>',NULL,NULL,'cbse-term-1-class-12th-mathematics-paper-solution-2021-ssj2',NULL,NULL,80,82,NULL,NULL,NULL,NULL,NULL,4,1,1,'2021-12-17 15:28:23','2022-05-08 17:32:57',NULL),(145,'CBSE Term-1 Class 12th Chemistry Paper & Solution 2021 (SSJ/2)','2021-12-18 13:45:00','question_paper/CBSE term-1 Class 12th Chemistry Paper & Solution 2021 (SSJ2).pdf','<p>CBSE term-1 Class 12th Chemistry Paper & Solution 2021 (SSJ2)</p>',NULL,NULL,'cbse-term-1-class-12th-chemistry-paper-solution-2021-ssj2',NULL,NULL,80,82,NULL,NULL,NULL,NULL,NULL,4,1,1,'2021-12-18 08:15:40','2022-05-08 17:34:00',NULL),(146,'CBSE Term-1 Class 10th Mathematics Paper & Solution 2021 (JSK/2)','2021-12-18 20:04:00','question_paper/CBSE Term-1 Class 10th Mathematics Paper & Solution 2021 (JSK2).pdf','<p>CBSE Term-1 Class 10th Mathematics Paper & Solution 2021 (JSK/2)</p>',NULL,NULL,'cbse-term-1-class-10th-mathematics-paper-solution-2021-jsk2',NULL,NULL,80,82,NULL,NULL,NULL,NULL,NULL,4,1,1,'2021-12-18 14:34:32','2022-05-08 17:49:21',NULL),(147,'CBSE term-1 Class 12th Physics Paper & Solution 2021 (SSJ/2)','2021-12-18 20:18:00','question_paper/CBSE term-1 Class 12th Physics Paper & Solution 2021 (SSJ2).pdf','<p>CBSE term-1 Class 12th Physics Paper & Solution 2021 (SSJ/2)</p>',NULL,NULL,'cbse-term-1-class-12th-physics-paper-solution-2021-ssj2',NULL,NULL,80,82,NULL,NULL,NULL,NULL,NULL,4,1,1,'2021-12-18 14:49:00','2022-05-08 17:35:03',NULL),(148,'CBSE Term-1 Class 10th Science Paper & Solution 2021 (JSK/2)','2021-12-22 10:43:00','question_paper/CBSE Term-1 Class 10th Science Paper & Solution 2021 (JSK2).pdf','<p>CBSE Term-1 Class 10th Science Paper & Solution 2021 (JSK/2)</p>',NULL,NULL,'cbse-term-1-class-10th-science-paper-solution-2021-jsk2',NULL,NULL,80,82,NULL,NULL,NULL,NULL,NULL,4,1,1,'2021-12-22 05:13:22','2022-05-08 17:48:24',NULL),(149,'CBSE term-1 Class 12th Biology Paper & Solution 2021 (SSJ/2)','2021-12-23 20:21:00','question_paper/CBSE term-1 Class 12th Biology Paper & Solution 2021 (SSJ2).pdf','<p>CBSE term-1 Class 12th Biology Paper & Solution 2021 (SSJ/2)</p>',NULL,NULL,'cbse-term-1-class-12th-biology-paper-solution-2021-ssj2',NULL,NULL,80,82,NULL,NULL,NULL,NULL,NULL,4,1,1,'2021-12-23 14:52:06','2022-05-08 17:35:42',NULL),(150,'NEET 2019 Question Paper with Solution','2021-12-23 20:28:00','question_paper/NEET 2019 Question Paper with Solution.pdf','<p>NEET 2019 Question Paper with Solution</p>',NULL,NULL,'neet-2019-question-paper-with-solution',NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,4,1,NULL,'2021-12-23 14:58:15','2021-12-23 14:58:15',NULL),(151,'NEET 2018 Question Paper with Solution','2021-12-23 20:30:00','question_paper/NEET 2018 Question Paper with Solution.pdf','<p>NEET 2018 Question Paper with Solution</p>',NULL,NULL,'neet-2018-question-paper-with-solution',NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,4,1,NULL,'2021-12-23 15:00:35','2021-12-23 15:00:35',NULL),(152,'NEET 2017 Question Paper with Solution','2021-12-23 20:31:00','question_paper/NEET 2017 Question Paper with Solution.pdf','<p>NEET 2017 Question Paper with Solution</p>',NULL,NULL,'neet-2017-question-paper-with-solution',NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,4,1,NULL,'2021-12-23 15:01:32','2021-12-23 15:01:32',NULL),(153,'NEET 2016 Question Paper with Solution (Phase-1)','2021-12-23 20:32:00','question_paper/NEET 2016 Question Paper with Solution Phase1.pdf','<p>NEET 2016 Question Paper with Solution (Phase-1) </p>',NULL,NULL,'neet-2016-question-paper-with-solution-phase-1',NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,4,1,1,'2021-12-23 15:02:40','2021-12-24 16:32:09',NULL),(154,'NEET 2015 Question Paper with Solution','2021-12-23 20:33:00','question_paper/NEET 2015 Question Paper with Solution.pdf','<p>NEET 2015 Question Paper with Solution</p>',NULL,NULL,'neet-2015-question-paper-with-solution',NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,4,1,NULL,'2021-12-23 15:03:17','2021-12-23 15:03:17',NULL),(155,'NTSE STAGE-1 (J & K) 2018-19 Question Paper & Solution (SAT)','2021-12-23 22:26:00','question_paper/NTSE 2018-19 Stage-1 (Jammu Zone) Question Paper & Solution.pdf','<p>NTSE STAGE-1 (J & K) 2018-19 Question Paper & Solution (SAT)</p>',NULL,NULL,'ntse-stage-1-j-k-2018-19-question-paper-solution-sat',NULL,NULL,0,71,NULL,NULL,NULL,NULL,NULL,4,1,1,'2021-12-23 16:56:18','2022-01-06 16:21:22',NULL),(156,'NEET 2016 Question Paper with Solution (Phase-2)','2021-12-24 22:03:00','question_paper/NEET 2016 Question Paper with Solution Phase2.pdf','<p>NEET 2016 Question Paper with Solution (Phase-2) </p>',NULL,NULL,'neet-2016-question-paper-with-solution-phase-2',NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,4,1,NULL,'2021-12-24 16:33:55','2021-12-24 16:33:55',NULL),(158,'JEE Advanced 2020 Question Paper-1 & Solution','2022-01-03 19:22:00','question_paper/Q&Ans_with_Sol_JEEADV_2020_Paper1.pdf','<p>JEE Advanced 2020 Question Paper-1 & Solution</p>',NULL,NULL,'jee-advanced-2020-question-paper-1-solution',NULL,NULL,0,56,NULL,NULL,NULL,NULL,NULL,4,1,NULL,'2022-01-03 13:52:36','2022-01-03 13:52:36',NULL),(157,'NTSE STAGE-1 (J & K) 2018-19 Question Paper & Solution (MAT)','2021-12-28 20:00:00','question_paper/NTSE 2018-19 Stage-1 MAT (Jammu Zone) Question Paper & Solution.pdf','<p>NTSE STAGE-1 (J & K) 2018-19 Question Paper & Solution (MAT)</p>',NULL,NULL,'ntse-stage-1-j-k-2018-19-question-paper-solution-mat',NULL,NULL,0,71,NULL,NULL,NULL,NULL,NULL,4,1,1,'2021-12-28 14:31:18','2022-01-06 16:22:01',NULL),(159,'JEE Advanced 2020 Question Paper-2 & Solution','2022-01-03 19:23:00','question_paper/Q&Ans_with_Sol_JEEADV_2020_Paper2.pdf','<p>JEE Advanced 2020 Question Paper-1 & Solution</p>',NULL,NULL,'jee-advanced-2020-question-paper-2-solution',NULL,NULL,0,56,NULL,NULL,NULL,NULL,NULL,4,1,NULL,'2022-01-03 13:53:53','2022-01-03 13:53:53',NULL),(160,'NTSE STAGE-1 (J & K) 2019-20 Question Paper & Solution (MAT)','2022-01-05 17:46:00','question_paper/NTSE STAGE-1 (JAMMU) 2019-20 Question Paper & Solution (MAT).pdf','<p>NTSE STAGE-1 (J & K) 2019-20 Question Paper & Solution (MAT)</p>',NULL,NULL,'ntse-stage-1-j-k-2019-20-question-paper-solution-mat',NULL,NULL,0,71,NULL,NULL,NULL,NULL,NULL,4,1,1,'2022-01-05 12:16:32','2022-01-06 16:22:36',NULL),(161,'NTSE STAGE-1 (J & K) 2019-20 Question Paper & Solution (SAT)','2022-01-05 17:48:00','question_paper/NTSE STAGE-1 (J & K) 2019-20 Question Paper & Solution (SAT).pdf','<p>NTSE STAGE-1 (J & K) 2019-20 Question Paper & Solution (SAT)</p>',NULL,NULL,'ntse-stage-1-j-k-2019-20-question-paper-solution-sat',NULL,NULL,0,71,NULL,NULL,NULL,NULL,NULL,4,1,1,'2022-01-05 12:19:01','2022-01-06 16:24:44',NULL),(162,'NTSE STAGE-1 (J & K) 2020-21 Question Paper & Solution (SAT)','2022-01-05 23:56:00','question_paper/NTSE STAGE-1 (JAMMU) 2020-21 Question Paper & Solution (SAT).pdf','<p>NTSE STAGE-1 (J & K) 2020-21 Question Paper & Solution (SAT)</p>',NULL,NULL,'ntse-stage-1-j-k-2020-21-question-paper-solution-sat',NULL,NULL,0,71,NULL,NULL,NULL,NULL,NULL,4,1,1,'2022-01-05 18:26:16','2022-01-06 16:24:03',NULL),(163,'NTSE STAGE-1 (J & K) 2020-21 Question Paper & Solution (MAT)','2022-01-06 21:55:00','question_paper/NTSE STAGE-1 (J & K) 2020-21 Question Paper & Solution (MAT).pdf','<p>NTSE STAGE-1 (J & K) 2020-21 Question Paper & Solution (MAT)</p>',NULL,NULL,'ntse-stage-1-j-k-2020-21-question-paper-solution-mat',NULL,NULL,0,71,NULL,NULL,NULL,NULL,NULL,4,1,NULL,'2022-01-06 16:25:47','2022-01-06 16:25:47',NULL),(164,'Chapter-7. Integration Part-1, Indefinite Integration (Board Notes)','2022-01-09 19:55:00','question_paper/Ch 7 Indefinite Integration.pdf','<p>Chapter-7. Integration Part-1, Indefinite Integration (Board Notes)</p>',NULL,NULL,'chapter-7-integration-part-1-indefinite-integration-board-notes',NULL,NULL,54,28,NULL,NULL,NULL,NULL,NULL,5,1,NULL,'2022-01-09 14:25:34','2022-01-09 14:25:34',NULL),(165,'Chapter-7. Integration Part-2, Definite Integration (Board Notes)','2022-01-09 19:56:00','question_paper/Ch 7 Definite Integration Part 2.pdf','<p>Chapter-7. Integration Part-2, Definite Integration (Board Notes)</p>',NULL,NULL,'chapter-7-integration-part-2-definite-integration-board-notes',NULL,NULL,54,28,NULL,NULL,NULL,NULL,NULL,5,1,1,'2022-01-09 14:27:06','2022-01-10 13:38:13',NULL),(166,'Chapter-8. Application of Integrals, Area (Board Notes)','2022-01-11 20:22:00','question_paper/Ch 8 Application of Integrals (Area).pdf','<p>Chapter-8. Application of Integrals, Area (Board Notes)</p>',NULL,NULL,'chapter-8-application-of-integrals-area-board-notes',NULL,NULL,54,28,NULL,NULL,NULL,NULL,NULL,5,1,NULL,'2022-01-11 14:52:45','2022-01-11 14:52:45',NULL),(167,'Chapter-9. Differential Equations (Board Notes)','2022-01-11 20:32:00','question_paper/Ch 9 DIFFERENTIAL EQUATIONS.pdf','<p>Chapter-9. Differential Equations (Board Notes)</p>',NULL,NULL,'chapter-9-differential-equations-board-notes',NULL,NULL,54,28,NULL,NULL,NULL,NULL,NULL,5,1,NULL,'2022-01-11 15:03:10','2022-01-11 15:03:10',NULL),(168,'Chapter 15. Communication System (NCERT Solutions)','2022-01-28 22:06:00','question_paper/15 NCERT Communication System.pdf','<p>Chapter 15. Communication System (NCERT Solutions)</p>',NULL,NULL,'chapter-15-communication-system-ncert-solutions',NULL,NULL,0,26,NULL,NULL,NULL,NULL,NULL,1,1,1,'2022-01-28 16:41:22','2022-02-02 14:10:43',NULL),(169,'Chapter 14. Semiconductor Electronics (NCERT Solutions)','2022-01-28 22:14:00','question_paper/14 NCERT Semiconductor Electronics.pdf','<p>Chapter 14. Semiconductor Electronics (NCERT Solutions)</p>',NULL,NULL,'chapter-14-semiconductor-electronics-ncert-solutions',NULL,NULL,0,26,NULL,NULL,NULL,NULL,NULL,1,1,1,'2022-01-28 16:44:54','2022-02-02 14:11:09',NULL),(170,'Chapter 13. Nuclei (NCERT Solutions)','2022-01-28 22:16:00','question_paper/13 NCERT Nuclei.pdf','<p>Chapter 13. Nuclei (NCERT Solutions)</p>',NULL,NULL,'chapter-13-nuclei-ncert-solutions',NULL,NULL,0,26,NULL,NULL,NULL,NULL,NULL,1,1,1,'2022-01-28 16:46:57','2022-02-02 14:12:05',NULL),(171,'Chapter 12. Atoms (NCERT Solutions)','2022-01-28 22:17:00','question_paper/12 NCERT Atoms.pdf','<p>Chapter 12. Atoms (NCERT Solutions)</p>',NULL,NULL,'chapter-12-atoms-ncert-solutions',NULL,NULL,0,26,NULL,NULL,NULL,NULL,NULL,1,1,1,'2022-01-28 16:48:29','2022-02-02 14:12:41',NULL),(172,'Chapter 11. Dual Nature of Radiation and Matter (NCERT Solutions)','2022-01-28 22:19:00','question_paper/11 NCERT Dual Nature of Radiation and Matter.pdf','<p>Chapter 11. Dual Nature of Radiation and Matter (NCERT Solutions)</p>',NULL,NULL,'chapter-11-dual-nature-of-radiation-and-matter-ncert-solutions',NULL,NULL,0,26,NULL,NULL,NULL,NULL,NULL,1,1,1,'2022-01-28 16:51:13','2022-02-02 14:13:17',NULL),(173,'Chapter 10. Wave Optics (NCERT Solutions)','2022-01-28 22:26:00','question_paper/10 NCERT Wave Optics.pdf','<p>Chapter 10. Wave Optics (NCERT Solutions)</p>',NULL,NULL,'chapter-10-wave-optics-ncert-solutions',NULL,NULL,0,26,NULL,NULL,NULL,NULL,NULL,1,1,1,'2022-01-28 16:57:09','2022-02-02 14:13:52',NULL),(174,'Chapter 9. Ray Optics and Optical Instruments (NCERT Solutions)','2022-01-28 22:29:00','question_paper/9 NCERT Ray Optics and Optical Instruments.pdf','<p>Chapter 9. Ray Optics and Optical Instruments (NCERT Solutions)</p>',NULL,NULL,'chapter-9-ray-optics-and-optical-instruments-ncert-solutions',NULL,NULL,0,26,NULL,NULL,NULL,NULL,NULL,1,1,1,'2022-01-28 17:00:13','2022-02-02 14:14:26',NULL),(175,'Chapter-10. Vector Algebra (Board Notes)','2022-01-28 22:37:00','question_paper/Ch 10 Vector Algebra.pdf','<p>Chapter-10. Vector Algebra (Board Notes)</p>',NULL,NULL,'chapter-10-vector-algebra-board-notes',NULL,NULL,54,28,NULL,NULL,NULL,NULL,NULL,5,1,NULL,'2022-01-28 17:08:40','2022-01-28 17:08:40',NULL),(176,'JEE Advanced 2018 Question Paper-1 & Solution','2022-01-28 22:40:00','question_paper/Q&Ans_with_Sol_JEEADV_2018_Paper1.pdf','<p>JEE Advanced 2018 Question Paper-1 & Solution</p>',NULL,NULL,'jee-advanced-2018-question-paper-1-solution',NULL,NULL,0,59,NULL,NULL,NULL,NULL,NULL,4,1,NULL,'2022-01-28 17:11:06','2022-01-28 17:11:06',NULL),(177,'JEE Advanced 2018 Question Paper-2 & Solution','2022-01-28 22:44:00','question_paper/Q&Ans_with_Sol_JEEADV_2018_Paper2.pdf','<p>JEE Advanced 2018 Question Paper-2 & Solution</p>',NULL,NULL,'jee-advanced-2018-question-paper-2-solution',NULL,NULL,0,59,NULL,NULL,NULL,NULL,NULL,4,1,NULL,'2022-01-28 17:14:21','2022-01-28 17:14:21',NULL),(178,'JEE Advanced 2019 Question Paper-2 & Solution','2022-01-28 22:45:00','question_paper/Q&Ans_with_Sol_JEEADV_2019_Paper2.pdf','<p>JEE Advanced 2019 Question Paper-2 & Solution</p>',NULL,NULL,'jee-advanced-2019-question-paper-2-solution',NULL,NULL,0,58,NULL,NULL,NULL,NULL,NULL,4,1,NULL,'2022-01-28 17:15:37','2022-01-28 17:15:37',NULL),(179,'JEE Advanced 2019 Question Paper-1 & Solution','2022-01-28 22:46:00','question_paper/Q&Ans_with_Sol_JEEADV_2019_Paper1.pdf','<p>JEE Advanced 2019 Question Paper-1 & Solution</p>',NULL,NULL,'jee-advanced-2019-question-paper-1-solution',NULL,NULL,0,58,NULL,NULL,NULL,NULL,NULL,4,1,NULL,'2022-01-28 17:16:39','2022-01-28 17:16:39',NULL),(180,'Chapter-10. Wave Optics (Board Notes)','2022-01-30 22:04:00','question_paper/Ch 10 Wave Optics.pdf','<p>Chapter-10. Wave Optics (Board Notes)</p>',NULL,NULL,'chapter-10-wave-optics-board-notes',NULL,NULL,54,26,NULL,NULL,NULL,NULL,NULL,5,1,NULL,'2022-01-30 16:41:40','2022-01-30 16:41:40',NULL),(181,'Chapter-11. Photo Electric Effect (Board Notes)','2022-01-30 22:12:00','question_paper/Ch 11 Photo Electric Effect.pdf','<p>Chapter-11. Photo Electric Effect (Board Notes)</p>',NULL,NULL,'chapter-11-photo-electric-effect-board-notes',NULL,NULL,54,26,NULL,NULL,NULL,NULL,NULL,5,1,NULL,'2022-01-30 16:43:31','2022-01-30 16:43:31',NULL),(182,'Chapter-12. Atoms (Board Notes)','2022-01-30 22:14:00','question_paper/Ch 12 Atoms.pdf','<p>Chapter-12. Atoms (Board Notes)</p>',NULL,NULL,'chapter-12-atoms-board-notes',NULL,NULL,54,26,NULL,NULL,NULL,NULL,NULL,5,1,NULL,'2022-01-30 16:45:55','2022-01-30 16:45:55',NULL),(183,'Chapter-13. Nuclear Physics and Radioactivity (Board Notes)','2022-01-30 22:17:00','question_paper/Ch 13 Nuclear Physics and Radioactivity.pdf','<p>Chapter-13. Nuclear Physics and Radioactivity (Board Notes)</p>',NULL,NULL,'chapter-13-nuclear-physics-and-radioactivity-board-notes',NULL,NULL,54,26,NULL,NULL,NULL,NULL,NULL,5,1,1,'2022-01-30 16:49:24','2022-01-30 16:56:11',NULL),(184,'Chapter-14. Semiconductor (Board Notes)','2022-01-30 22:20:00','question_paper/Ch 14 Semiconductor.pdf','<p>Chapter-14. Semiconductor (Board Notes)</p>',NULL,NULL,'chapter-14-semiconductor-board-notes',NULL,NULL,54,26,NULL,NULL,NULL,NULL,NULL,5,1,1,'2022-01-30 16:50:46','2022-01-30 16:55:18',NULL),(185,'Chapter-15. Communication System (Board Notes)','2022-01-30 22:23:00','question_paper/Ch 15 Communication System.pdf','<p>Chapter-15. Communication System (Board Notes)</p>',NULL,NULL,'chapter-15-communication-system-board-notes',NULL,NULL,54,26,NULL,NULL,NULL,NULL,NULL,5,1,NULL,'2022-01-30 16:54:23','2022-01-30 16:54:23',NULL),(187,'Chapter 2. Polynomials (NCERT Solutions)','2022-02-02 19:48:00','question_paper/Chapter 2 Polynomials.pdf','<p>Chapter 2. Polynomials (NCERT Solutions)</p>',NULL,NULL,'chapter-2-polynomials-ncert-solutions',NULL,NULL,0,28,NULL,NULL,NULL,NULL,NULL,1,1,NULL,'2022-02-02 14:18:51','2022-02-02 14:18:51',NULL),(186,'NTSE STAGE-1 (U.P.) 2020-21 Question Paper & Solution (MAT)','2022-01-31 23:15:00','question_paper/Uttar Pradesh QP_MAT2020-21_NTSE-1.pdf','<p>NTSE STAGE-1 (U.P.) 2020-21 Question Paper & Solution (MAT)</p>',NULL,NULL,'ntse-stage-1-up-2020-21-question-paper-solution-mat',NULL,NULL,0,73,NULL,NULL,NULL,NULL,NULL,4,1,1,'2022-01-31 17:46:56','2022-02-06 06:57:25',NULL),(188,'Chapter 12. Electricity (NCERT Solutions)','2022-02-02 19:54:00','question_paper/Ch 12 Electricity (NCERT Solutions).pdf','<p>Chapter 12. Electricity (NCERT Solutions)</p>',NULL,NULL,'chapter-12-electricity-ncert-solutions',NULL,NULL,0,75,NULL,NULL,NULL,NULL,NULL,1,1,1,'2022-02-02 14:24:58','2022-02-08 08:17:55',NULL),(189,'Chapter-9. Geometrical Optics (Board Notes)','2022-02-05 18:02:00','question_paper/Ch 10 Geometrical Optics.pdf','<p>Chapter-9. Geometrical Optics (Board Notes)</p>',NULL,NULL,'chapter-9-geometrical-optics-board-notes',NULL,NULL,54,26,NULL,NULL,NULL,NULL,NULL,5,1,NULL,'2022-02-05 13:23:40','2022-02-05 13:23:40',NULL),(190,'NTSE STAGE-1 (U.P.) 2020-21 Question Paper & Solution (SAT)','2022-02-06 12:29:00','question_paper/Uttar Pradesh QP_SAT2020_NTSE.pdf','<p>NTSE STAGE-1 (U.P.) 2020-21 Question Paper & Solution (SAT)</p>',NULL,NULL,'ntse-stage-1-up-2020-21-question-paper-solution-sat',NULL,NULL,0,73,NULL,NULL,NULL,NULL,NULL,4,1,NULL,'2022-02-06 07:02:58','2022-02-06 07:02:58',NULL),(191,'Chapter-11. Three Dimensional Geometry (Board Notes)','2022-02-06 20:36:00','question_paper/Ch 11 3 Dimensional Geometry.pdf','<p>Chapter-11. Three Dimensional Geometry (Board Notes)</p>',NULL,NULL,'chapter-11-three-dimensional-geometry-board-notes',NULL,NULL,54,28,NULL,NULL,NULL,NULL,NULL,5,1,NULL,'2022-02-06 15:07:33','2022-02-06 15:07:33',NULL),(192,'Chapter 12. Electricity (Board Notes)','2022-02-07 21:02:00','question_paper/Chapter 12. Electricity.pdf','<p>Chapter-12. Electricity (Board Notes)</p>',NULL,NULL,'chapter-12-electricity-board-notes',NULL,NULL,54,75,NULL,NULL,NULL,NULL,NULL,5,1,1,'2022-02-07 16:04:06','2022-10-08 18:27:22',NULL),(193,'Chapter 13. Magnetic Effects of Electric Current (NCERT Solutions)','2022-02-07 22:02:00','question_paper/Ch 13 Magnetic Effect of Electric Current (NCERT Solutions).pdf','<p>Chapter 13. Magnetic Effects of Electric Current (NCERT Solutions)</p>',NULL,NULL,'chapter-13-magnetic-effects-of-electric-current-ncert-solutions',NULL,NULL,0,75,NULL,NULL,NULL,NULL,NULL,1,1,1,'2022-02-07 16:33:34','2022-02-08 08:18:59',NULL),(194,'07 January 2020 (Evening Shift) Question Paper & Solution','2022-02-09 19:32:00','question_paper/Q&Ans_with_Sol_JEEMain_7Jan2020_2.pdf','<p>07 January 2020 (Evening Shift) Question Paper & Solution</p>',NULL,NULL,'07-january-2020-evening-shift-question-paper-solution',NULL,NULL,64,56,NULL,NULL,NULL,NULL,NULL,4,1,NULL,'2022-02-09 14:03:04','2022-02-09 14:03:04',NULL),(195,'08 January 2020 (Morning Shift) Question Paper & Solution','2022-02-09 19:33:00','question_paper/Q&Ans_with_Sol_JEEMain_8Jan2020_1.pdf','<p>08 January 2020 (Morning Shift) Question Paper & Solution</p>',NULL,NULL,'08-january-2020-morning-shift-question-paper-solution',NULL,NULL,64,56,NULL,NULL,NULL,NULL,NULL,4,1,NULL,'2022-02-09 14:04:16','2022-02-09 14:04:16',NULL),(196,'08 January 2020 (Evening Shift) Question Paper & Solution','2022-02-09 19:35:00','question_paper/Q&Ans_with_Sol_JEEMain_8Jan2020_2.pdf','<p>08 January 2020 (Evening Shift) Question Paper & Solution</p>',NULL,NULL,'08-january-2020-evening-shift-question-paper-solution',NULL,NULL,64,56,NULL,NULL,NULL,NULL,NULL,4,1,NULL,'2022-02-09 14:05:26','2022-02-09 14:05:26',NULL),(197,'Chapter 11. Work and Energy (NCERT Solutions)','2022-02-09 19:38:00','question_paper/Ch 11 Work and Energy.pdf','<p>Chapter 11. Work and Energy (NCERT Solutions)</p>',NULL,NULL,'chapter-11-work-and-energy-ncert-solutions',NULL,NULL,0,75,NULL,NULL,NULL,NULL,NULL,1,1,NULL,'2022-02-09 14:08:55','2022-02-09 14:08:55',NULL),(198,'Chapter 13. Magnetic Effects of Electric Current (Board Notes)','2022-02-09 20:59:00','question_paper/Ch 13 Magnetic Effects of Electric Current.pdf','<p>Chapter 13. Magnetic Effects of Electric Current (Board Notes)</p>',NULL,NULL,'chapter-13-magnetic-effects-of-electric-current-board-notes',NULL,NULL,54,75,NULL,NULL,NULL,NULL,NULL,5,1,1,'2022-02-09 15:32:05','2022-10-08 18:26:38',NULL),(199,'Chapter 4. Quadratic Equations (NCERT Solutions)','2022-02-10 22:08:00','question_paper/Ch 4 Quadratic Equations.pdf','<p>Chapter 4. Quadratic Equations (NCERT Solutions)</p>',NULL,NULL,'chapter-4-quadratic-equations-ncert-solutions',NULL,NULL,0,28,NULL,NULL,NULL,NULL,NULL,1,1,1,'2022-02-10 16:38:43','2022-02-11 07:37:51',NULL),(200,'09 January 2020 (Morning Shift) Question Paper & Solution','2022-02-11 13:09:00','question_paper/Q&Ans_with_Sol_JEEMain_9Jan2020_1.pdf','<p>09 January 2020 (Morning Shift) Question Paper & Solution</p>',NULL,NULL,'09-january-2020-morning-shift-question-paper-solution',NULL,NULL,64,56,NULL,NULL,NULL,NULL,NULL,4,1,NULL,'2022-02-11 07:39:26','2022-02-11 07:39:26',NULL),(202,'Chapter 13. Probability (Board Notes)','2022-02-12 21:53:00','question_paper/Ch 13 Probability.pdf','<p>Chapter 13. Probability (Board Notes)</p>',NULL,NULL,'chapter-13-probability-board-notes',NULL,NULL,54,28,NULL,NULL,NULL,NULL,NULL,5,1,1,'2022-02-12 16:24:56','2022-03-26 05:49:39',NULL),(203,'Chapter 5. Arithmetic Progression (Important MCQ)','2022-02-17 19:37:00','question_paper/Chapter 5 Arithmetic Progression (MCQ).pdf','<p>Chapter 5. Arithmetic Progression (Important MCQ)</p>',NULL,NULL,'chapter-5-arithmetic-progression-important-mcq',NULL,NULL,76,28,NULL,NULL,NULL,NULL,NULL,3,1,1,'2022-02-17 14:07:51','2022-02-25 10:01:40',NULL),(204,'06 September 2020 (Morning Shift) Question Paper & Solution','2022-02-18 02:24:00','question_paper/Q&Ans_with_Sol_JEEMain_6Sept2020_Morning Shift.pdf','<p>06 September 2020 (Morning Shift) Question Paper & Solution</p>',NULL,NULL,'06-september-2020-morning-shift-question-paper-solution',NULL,NULL,55,56,NULL,NULL,NULL,NULL,NULL,4,1,NULL,'2022-02-17 20:57:39','2022-02-17 20:57:39',NULL),(205,'06 September 2020 (Evening Shift) Question Paper & Solution','2022-02-18 02:28:00','question_paper/Q&Ans_with_Sol_JEEMain_6Sept2020_Evening Shift.pdf','<p>06 September 2020 (Evening Shift) Question Paper & Solution</p>',NULL,NULL,'06-september-2020-evening-shift-question-paper-solution',NULL,NULL,55,56,NULL,NULL,NULL,NULL,NULL,4,1,NULL,'2022-02-17 20:58:56','2022-02-17 20:58:56',NULL),(206,'05 September 2020 (Evening Shift) Question Paper & Solution','2022-02-18 02:29:00','question_paper/Q&Ans_with_Sol_JEEMain_5Sept2020_Evening Shift.pdf','<p>05 September 2020 (Evening Shift) Question Paper & Solution</p>',NULL,NULL,'05-september-2020-evening-shift-question-paper-solution',NULL,NULL,55,56,NULL,NULL,NULL,NULL,NULL,4,1,1,'2022-02-17 21:00:02','2022-02-17 21:04:06',NULL),(207,'05 September 2020 (Morning Shift) Question Paper & Solution','2022-02-18 02:30:00','question_paper/Q&Ans_with_Sol_JEEMain_5Sept2020_Morning Shift.pdf','<p>05 September 2020 (Morning Shift) Question Paper & Solution</p>',NULL,NULL,'05-september-2020-morning-shift-question-paper-solution',NULL,NULL,55,56,NULL,NULL,NULL,NULL,NULL,4,1,1,'2022-02-17 21:01:00','2022-02-17 21:04:23',NULL),(208,'04 September 2020 (Morning Shift) Question Paper & Solution','2022-02-18 02:31:00','question_paper/Q&Ans_with_Sol_JEEMain_4Sept2020_Morning Shift.pdf','<p>04 September 2020 (Morning Shift) Question Paper & Solution</p>',NULL,NULL,'04-september-2020-morning-shift-question-paper-solution',NULL,NULL,55,56,NULL,NULL,NULL,NULL,NULL,4,1,1,'2022-02-17 21:02:10','2022-02-17 21:04:46',NULL),(209,'04 September 2020 (Evening Shift) Question Paper & Solution','2022-02-18 02:32:00','question_paper/Q&Ans_with_Sol_JEEMain_4Sept2020_Evening Shift.pdf','<p>04 September 2020 (Evening Shift) Question Paper & Solution</p>',NULL,NULL,'04-september-2020-evening-shift-question-paper-solution',NULL,NULL,55,56,NULL,NULL,NULL,NULL,NULL,4,1,1,'2022-02-17 21:03:14','2022-02-17 21:05:07',NULL),(210,'03 September 2020 (Morning Shift) Question Paper & Solution','2022-02-20 20:49:00','question_paper/Q&Ans_with_Sol_JEEMain_3Sept2020_1.pdf','<p>03 September 2020 (Morning Shift) Question Paper & Solution</p>',NULL,NULL,'03-september-2020-morning-shift-question-paper-solution',NULL,NULL,55,56,NULL,NULL,NULL,NULL,NULL,4,1,NULL,'2022-02-20 15:20:09','2022-02-20 15:20:09',NULL),(211,'03 September 2020 (Evening Shift) Question Paper & Solution','2022-02-20 20:50:00','question_paper/Q&Ans_with_Sol_JEEMain_3Sept2020_2.pdf','<p>03 September 2020 (Evening Shift) Question Paper & Solution</p>',NULL,NULL,'03-september-2020-evening-shift-question-paper-solution',NULL,NULL,55,56,NULL,NULL,NULL,NULL,NULL,4,1,NULL,'2022-02-20 15:21:23','2022-02-20 15:21:23',NULL),(212,'02 September 2020 (Evening Shift) Question Paper & Solution','2022-02-20 20:52:00','question_paper/Q&Ans_with_Sol_JEEMain_2Sept2020_2.pdf','<p>02 September 2020 (Evening Shift) Question Paper & Solution</p>',NULL,NULL,'02-september-2020-evening-shift-question-paper-solution',NULL,NULL,55,56,NULL,NULL,NULL,NULL,NULL,4,1,NULL,'2022-02-20 15:22:46','2022-02-20 15:22:46',NULL),(213,'02 September 2020 (Morning Shift) Question Paper & Solution','2022-02-20 20:53:00','question_paper/Q&Ans_with_Sol_JEEMain_2Sept2020_1.pdf','<p>02 September 2020 (Morning Shift) Question Paper & Solution</p>',NULL,NULL,'02-september-2020-morning-shift-question-paper-solution',NULL,NULL,55,56,NULL,NULL,NULL,NULL,NULL,4,1,NULL,'2022-02-20 15:24:11','2022-02-20 15:24:11',NULL),(214,'Chapter 11. Work and Energy (Board Notes)','2022-02-20 20:56:00','question_paper/Ch 11 Work and Energy-1.pdf','<p>Chapter 11. Work and Energy (Board Notes)</p>',NULL,NULL,'chapter-11-work-and-energy-board-notes',NULL,NULL,54,75,NULL,NULL,NULL,NULL,NULL,5,1,1,'2022-02-20 15:27:16','2022-10-08 18:38:01',NULL),(215,'Chapter-10. Gravitation (NCERT Solution)','2022-02-20 20:59:00','question_paper/chapert-10. Gravitation NCERT Solutions.pdf','<p>Chapter-10. Gravitation (NCERT Solution)</p>',NULL,NULL,'chapter-10-gravitation-ncert-solution',NULL,NULL,0,75,NULL,NULL,NULL,NULL,NULL,1,1,1,'2022-02-20 15:30:34','2022-02-20 15:33:40',NULL),(216,'Chapter 9. Some Application of Trigonometry (Important MCQ)','2022-02-21 19:13:00','question_paper/Chapter 9 Some Application of Trigonometry (MCQ).pdf','<p>Chapter 9. Some Application of Trigonometry (Important MCQ)</p>',NULL,NULL,'chapter-9-some-application-of-trigonometry-important-mcq',NULL,NULL,76,28,NULL,NULL,NULL,NULL,NULL,3,1,1,'2022-02-21 13:43:23','2022-02-25 10:03:10',NULL),(217,'Chapter 13. Surface Areas and Volumes (Important MCQ)','2022-02-21 19:14:00','question_paper/Chapter 13 Surface Areas and Volumes (MCQ).pdf','<p>Chapter 13. Surface Areas and Volumes (Important MCQ)</p>',NULL,NULL,'chapter-13-surface-areas-and-volumes-important-mcq',NULL,NULL,76,28,NULL,NULL,NULL,NULL,NULL,3,1,1,'2022-02-21 13:45:44','2022-02-25 10:10:30',NULL),(218,'Chapter 4. Quadratic Equations (Important MCQ)','2022-02-22 13:29:00','question_paper/Chapter 4 Quadratic Equation(MCQ).pdf','<p>Chapter 4. Quadratic Equations (Important MCQ)</p>',NULL,NULL,'chapter-4-quadratic-equations-important-mcq',NULL,NULL,76,28,NULL,NULL,NULL,NULL,NULL,3,1,1,'2022-02-22 08:00:42','2022-02-25 10:00:32',NULL),(219,'Chapter 14. Statistics (Important MCQ)','2022-02-22 20:04:00','question_paper/Chapter 14 Statistics (MCQ).pdf','<p>Chapter 14. Statistics (Important MCQ)</p>',NULL,NULL,'chapter-14-statistics-important-mcq',NULL,NULL,76,28,NULL,NULL,NULL,NULL,NULL,3,1,1,'2022-02-22 14:35:13','2022-02-25 10:02:21',NULL),(220,'Chapter 11. Constructions (Important Subjective Type Questions)','2022-02-22 20:07:00','question_paper/Chapter 11 Constructions (Subjective).pdf','<p>Chapter 11. Constructions (Important Subjective Type Questions)</p>',NULL,NULL,'chapter-11-constructions-important-subjective-type-questions',NULL,NULL,78,28,NULL,NULL,NULL,NULL,NULL,3,1,1,'2022-02-22 14:38:25','2022-02-25 10:54:01',NULL),(221,'Chapter 5. Arithmetic Progression (NCERT Solutions)','2022-02-22 20:14:00','question_paper/Chapter 5. Arithmetic Progression (NCERT Solutions).pdf','<p>Chapter 5. Arithmetic Progression (NCERT Solutions)</p>',NULL,NULL,'chapter-5-arithmetic-progression-ncert-solutions',NULL,NULL,0,28,NULL,NULL,NULL,NULL,NULL,1,1,1,'2022-02-22 14:44:57','2022-03-05 11:50:51',NULL),(222,'Chapter 12. Electricity (Important MCQ)','2022-02-25 10:54:00','question_paper/Chapter 12 Electricity.pdf','<p>Chapter 12. Electricity (Important MCQ)</p>',NULL,NULL,'chapter-12-electricity-important-mcq',NULL,NULL,76,75,NULL,NULL,NULL,NULL,NULL,3,1,NULL,'2022-02-25 05:26:09','2022-02-25 05:26:09',NULL),(223,'Chapter 10. Circles (Important MCQ)','2022-02-25 15:12:00','question_paper/Chapter 10 Circles (MCQ).pdf','<p>Chapter 10. Circles (Important MCQ)</p>',NULL,NULL,'chapter-10-circles-important-mcq',NULL,NULL,76,28,NULL,NULL,NULL,NULL,NULL,3,1,1,'2022-02-25 09:42:37','2022-02-25 10:01:04',NULL),(224,'Chapter 4. Quadratic Equations (Important Case Study Types Questions)','2022-02-25 15:14:00','question_paper/Chapter 4. Quadratic Equations (Important Case Study Types Questions).pdf','<p>Chapter 4. Quadratic Equations (Important Case Study Types Questions)</p>',NULL,NULL,'chapter-4-quadratic-equations-important-case-study-types-questions',NULL,NULL,77,28,NULL,NULL,NULL,NULL,NULL,3,1,1,'2022-02-25 09:45:39','2022-03-25 15:38:00',NULL),(225,'Chapter 5. Arithmetic Progression (Important Case Study Types Questions)','2022-02-25 15:16:00','question_paper/Chapter 5 Arithmetic Progression(CS).pdf','<p>Chapter 5. Arithmetic Progression (Important Case Study Types Questions)</p>',NULL,NULL,'chapter-5-arithmetic-progression-important-case-study-types-questions',NULL,NULL,77,28,NULL,NULL,NULL,NULL,NULL,3,1,NULL,'2022-02-25 09:46:57','2022-02-25 09:46:57',NULL),(226,'Chapter 10. Circles (Important Subjective Type Questions)','2022-02-25 16:25:00','question_paper/Chapter 10. Circles (Subjective Type Questions).pdf','<p>Chapter 10. Circles (Important Subjective Type Questions)</p>',NULL,NULL,'chapter-10-circles-important-subjective-type-questions',NULL,NULL,78,28,NULL,NULL,NULL,NULL,NULL,3,1,NULL,'2022-02-25 10:55:52','2022-02-25 10:55:52',NULL),(227,'Chapter 4. Quadratic Equations (Subjective Type Questions)','2022-02-27 21:16:00','question_paper/Chapter 4 Quadratic Equation (Subjective).pdf','<p>Chapter 4. Quadratic Equations (Subjective Type Questions)</p>',NULL,NULL,'chapter-4-quadratic-equations-subjective-type-questions',NULL,NULL,78,28,NULL,NULL,NULL,NULL,NULL,3,1,NULL,'2022-02-27 15:52:44','2022-02-27 15:52:44',NULL),(228,'Chapter 5. Arithmetic Progression (Subjective Type Questions)','2022-02-27 21:23:00','question_paper/Chapter 5 Arithmetic Progression (Subjective).pdf','<p>Chapter 5. Arithmetic Progression (Subjective Type Questions)</p>',NULL,NULL,'chapter-5-arithmetic-progression-subjective-type-questions',NULL,NULL,78,28,NULL,NULL,NULL,NULL,NULL,3,1,NULL,'2022-02-27 15:54:12','2022-02-27 15:54:12',NULL),(229,'Chapter 9. Some Applications of Trigonometry (Subjective Type Questions)','2022-02-27 21:26:00','question_paper/Chapter 9 Some Applications of Trigonometry (Subjective).pdf','<p>Chapter 9. Some Applications of Trigonometry (Subjective Type Questions)</p>',NULL,NULL,'chapter-9-some-applications-of-trigonometry-subjective-type-questions',NULL,NULL,78,28,NULL,NULL,NULL,NULL,NULL,3,1,NULL,'2022-02-27 15:56:39','2022-02-27 15:56:39',NULL),(230,'Chapter 4. Carbon and its Compound (Subjective Type Questions)','2022-02-27 21:28:00','question_paper/Chapter 4 Carbon and its Compound (Subjective).pdf','<p>Chapter 4. Carbon and its Compound (Subjective Type Questions)</p>',NULL,NULL,'chapter-4-carbon-and-its-compound-subjective-type-questions',NULL,NULL,78,75,NULL,NULL,NULL,NULL,NULL,3,1,NULL,'2022-02-27 15:59:10','2022-02-27 15:59:10',NULL),(231,'Chapter 4. Carbon and its Compound (Important MCQ)','2022-02-27 21:30:00','question_paper/Chapter 4 Carbon and its Compound (MCQ).pdf','<h4>Chapter 4. Carbon and its Compound (Important MCQ)</h4>',NULL,NULL,'chapter-4-carbon-and-its-compound-important-mcq',NULL,NULL,76,75,NULL,NULL,NULL,NULL,NULL,3,1,NULL,'2022-02-27 16:02:12','2022-02-27 16:02:12',NULL),(232,'Chapter 5. Periodic Classification of Elements (Important MCQ)','2022-02-27 21:32:00','question_paper/Chapter 5 Periodic Classification of Elements (MCQ).pdf','<p>Chapter 5. Periodic Classification of Elements (Important MCQ)</p>',NULL,NULL,'chapter-5-periodic-classification-of-elements-important-mcq',NULL,NULL,76,75,NULL,NULL,NULL,NULL,NULL,3,1,1,'2022-02-27 16:03:47','2022-03-03 12:06:02',NULL),(233,'Chapter 14. Statistics (Subjective Type Questions)','2022-02-27 21:37:00','question_paper/Chapter 14 Statistics (Subjective).pdf','<p>Chapter 14. Statistics (Subjective Type Questions)</p>',NULL,NULL,'chapter-14-statistics-subjective-type-questions',NULL,NULL,78,28,NULL,NULL,NULL,NULL,NULL,3,1,NULL,'2022-02-27 16:09:05','2022-02-27 16:09:05',NULL),(234,'Chapter 13. Surface Areas and Volumes (Subjective Type Questions)','2022-02-27 21:40:00','question_paper/Chapter 13 Surface Areas and Volumes (Subjective).pdf','<p>Chapter 13. Surface Areas and Volumes (Subjective Type Questions)</p>',NULL,NULL,'chapter-13-surface-areas-and-volumes-subjective-type-questions',NULL,NULL,78,28,NULL,NULL,NULL,NULL,NULL,3,1,NULL,'2022-02-27 16:11:12','2022-02-27 16:11:12',NULL),(235,'Chapter 13. Surface Areas and Volumes (Important Case Study Types Questions)','2022-03-03 17:29:00','question_paper/Chapter 13 Surface areas and volumes(CS).pdf','<p>Chapter 13. Surface Areas and Volumes (Important Case Study Types Questions)</p>',NULL,NULL,'chapter-13-surface-areas-and-volumes-important-case-study-types-questions',NULL,NULL,77,28,NULL,NULL,NULL,NULL,NULL,3,1,NULL,'2022-03-03 12:02:10','2022-03-03 12:02:10',NULL),(236,'Chapter 9. Some Application of Trigonometry (Important Case Study Types Questions)','2022-03-03 17:33:00','question_paper/Chapter 9 Some application of trigonometry(CS).pdf','<p>Chapter 9. Some Application of Trigonometry (Important Case Study Types Questions)</p>',NULL,NULL,'chapter-9-some-application-of-trigonometry-important-case-study-types-questions',NULL,NULL,77,28,NULL,NULL,NULL,NULL,NULL,3,1,NULL,'2022-03-03 12:04:48','2022-03-03 12:04:48',NULL),(237,'Chapter 5. Periodic Classification of Elements (Important Subjective Type Questions)','2022-03-03 21:05:00','question_paper/Chapter 5 Periodic Classification of Elements (Subjective).pdf','<p>Chapter 5. Periodic Classification of Elements (Important Subjective Type Questions)</p>',NULL,NULL,'chapter-5-periodic-classification-of-elements-important-subjective-type-questions',NULL,NULL,78,75,NULL,NULL,NULL,NULL,NULL,3,1,1,'2022-03-03 15:36:15','2022-03-03 15:40:41',NULL),(238,'Chapter 12. Electricity (Important Subjective Type Questions)','2022-03-03 21:06:00','question_paper/Chapter 12 Electricity (Subjective).pdf','<p>Chapter 12. Electricity (Important Subjective Type Questions)</p>',NULL,NULL,'chapter-12-electricity-important-subjective-type-questions',NULL,NULL,78,75,NULL,NULL,NULL,NULL,NULL,3,1,1,'2022-03-03 15:37:48','2022-03-03 15:40:18',NULL),(239,'Chapter 13. Magnetic Effects of Electric Current (Important Subjective Type Questions)','2022-03-03 21:08:00','question_paper/Chapter 13 Magnetic Effects of Electric Current (Subjective).pdf','<p>Chapter 13. Magnetic Effects of Electric Current (Important Subjective Type Questions)</p>',NULL,NULL,'chapter-13-magnetic-effects-of-electric-current-important-subjective-type-questions',NULL,NULL,78,75,NULL,NULL,NULL,NULL,NULL,3,1,NULL,'2022-03-03 15:39:59','2022-03-03 15:39:59',NULL),(240,'Chapter 4. Carbon and its compound (NCERT Solutions)','2022-03-03 21:12:00','question_paper/Ch 4 Carbon and its compound NCERT Solution.pdf','<p>Chapter 4. Carbon and its compound (NCERT Solutions)</p>',NULL,NULL,'chapter-4-carbon-and-its-compound-ncert-solutions',NULL,NULL,0,75,NULL,NULL,NULL,NULL,NULL,1,1,NULL,'2022-03-03 15:44:12','2022-03-03 15:44:12',NULL),(241,'Chapter 5. Periodic Classification of Elements (NCERT Solutions)','2022-03-03 21:19:00','question_paper/Ch 5 Periodic Classification of Elements NCERT Solution.pdf','<p>Chapter 5. Periodic Classification of Elements (NCERT Solutions)</p>',NULL,NULL,'chapter-5-periodic-classification-of-elements-ncert-solutions',NULL,NULL,0,75,NULL,NULL,NULL,NULL,NULL,1,1,NULL,'2022-03-03 15:50:50','2022-03-03 15:50:50',NULL),(242,'Chapter 10. Circles (NCERT Solutions)','2022-03-05 17:21:00','question_paper/Chapter 10. Circles (NCERT Solutions).pdf','<p>Chapter 10. Circles (NCERT Solutions)</p>',NULL,NULL,'chapter-10-circles-ncert-solutions',NULL,NULL,0,28,NULL,NULL,NULL,NULL,NULL,1,1,NULL,'2022-03-05 11:52:53','2022-03-05 11:52:53',NULL),(243,'Chapter 14. Statistics (Important Case Study Types Questions)','2022-03-05 17:23:00','question_paper/Chapter 14. Statistics (Important Case Study Types Questions).pdf','<p>Chapter 14. Statistics (Important Case Study Types Questions)</p>',NULL,NULL,'chapter-14-statistics-important-case-study-types-questions',NULL,NULL,77,28,NULL,NULL,NULL,NULL,NULL,3,1,NULL,'2022-03-05 11:54:25','2022-03-05 11:54:25',NULL),(244,'Chapter-3. Electrochemistry (Board Notes)','2022-03-07 20:12:00','question_paper/Chapter-3. Electrochemistry (Board Notes).pdf','<p>Chapter-3. Electrochemistry (Board Notes)</p>',NULL,NULL,'chapter-3-electrochemistry-board-notes',NULL,NULL,54,27,NULL,NULL,NULL,NULL,NULL,5,1,NULL,'2022-03-07 14:43:29','2022-03-07 14:43:29',NULL),(245,'Chapter 4. Chemical Kinetics (Board Notes)','2022-03-10 00:14:00','question_paper/Chapter-4. Chemical Kinetics (Board Notes).pdf','<p>Chapter 4. Chemical Kinetics (Board Notes)</p>',NULL,NULL,'chapter-4-chemical-kinetics-board-notes',NULL,NULL,54,27,NULL,NULL,NULL,NULL,NULL,5,1,NULL,'2022-03-09 18:46:49','2022-03-09 18:46:49',NULL),(246,'Chapter 5. Arithmetic Progressions (Board Notes)','2022-03-10 00:17:00','question_paper/Chapter 5. Arithmetic Progressions (Board Notes).pdf','<p>Chapter 5. Arithmetic Progressions (Board Notes)</p>',NULL,NULL,'chapter-5-arithmetic-progressions-board-notes',NULL,NULL,54,28,NULL,NULL,NULL,NULL,NULL,5,1,NULL,'2022-03-09 18:48:20','2022-03-09 18:48:20',NULL),(247,'Chapter 8. Electromagnetic Waves (NCERT Solutions)','2022-03-10 00:20:00','question_paper/Chapter 8. Electromagnetic Waves (NCERT Solutions).pdf','<p>Chapter 8. Electromagnetic Waves (NCERT Solutions)</p>',NULL,NULL,'chapter-8-electromagnetic-waves-ncert-solutions',NULL,NULL,0,26,NULL,NULL,NULL,NULL,NULL,1,1,NULL,'2022-03-09 18:52:00','2022-03-09 18:52:00',NULL),(248,'Chapter 7. Alternating Current (NCERT Solutions)','2022-03-10 00:22:00','question_paper/Chapter 7. Alternating Current (NCERT Solutions).pdf','<p>Chapter 7. Alternating Current (NCERT Solutions)</p>',NULL,NULL,'chapter-7-alternating-current-ncert-solutions',NULL,NULL,0,26,NULL,NULL,NULL,NULL,NULL,1,1,NULL,'2022-03-09 18:53:36','2022-03-09 18:53:36',NULL),(249,'Chapter 6. Electromagnetic Induction (NCERT Solutions)','2022-03-10 00:24:00','question_paper/Chapter 6. Electromagnetic Induction (NCERT Solutions).pdf','<p>Chapter 6. Electromagnetic Induction (NCERT Solutions)</p>',NULL,NULL,'chapter-6-electromagnetic-induction-ncert-solutions',NULL,NULL,0,26,NULL,NULL,NULL,NULL,NULL,1,1,NULL,'2022-03-09 18:55:35','2022-03-09 18:55:35',NULL),(250,'Chapter 5. Magnetism and Matter (NCERT Solutions)','2022-03-10 00:26:00','question_paper/Chapter 5. Magnetism and Matter (NCERT Solutions).pdf','<p>Chapter 5. Magnetism and Matter (NCERT Solutions)</p>',NULL,NULL,'chapter-5-magnetism-and-matter-ncert-solutions',NULL,NULL,0,26,NULL,NULL,NULL,NULL,NULL,1,1,NULL,'2022-03-09 18:57:41','2022-03-09 18:57:41',NULL),(251,'Chapter 4. Moving Charges and Magnetism (NCERT Solutions)','2022-03-10 00:28:00','question_paper/Chapter 4. Moving Charges and Magnetism (NCERT Solutions).pdf','<p>Chapter 4. Moving Charges and Magnetism (NCERT Solutions)</p>',NULL,NULL,'chapter-4-moving-charges-and-magnetism-ncert-solutions',NULL,NULL,0,26,NULL,NULL,NULL,NULL,NULL,1,1,NULL,'2022-03-09 19:00:47','2022-03-09 19:00:47',NULL),(252,'Chapter 3. Current Electricity (NCERT Solutions)','2022-03-10 00:31:00','question_paper/Chapter 3. Current Electricity (NCERT Solutions).pdf','<p>Chapter 3. Current Electricity (NCERT Solutions)</p>',NULL,NULL,'chapter-3-current-electricity-ncert-solutions',NULL,NULL,0,26,NULL,NULL,NULL,NULL,NULL,1,1,NULL,'2022-03-09 19:02:54','2022-03-09 19:02:54',NULL),(253,'Chapter 2. Electrostatic Potential and Capacitance (NCERT Solutions)','2022-03-10 00:33:00','question_paper/Chapter 2. Electrostatic Potential and Capacitance (NCERT Solutions).pdf','<p>Chapter 2. Electrostatic Potential and Capacitance (NCERT Solutions)</p>',NULL,NULL,'chapter-2-electrostatic-potential-and-capacitance-ncert-solutions',NULL,NULL,0,26,NULL,NULL,NULL,NULL,NULL,1,1,NULL,'2022-03-09 19:04:57','2022-03-09 19:04:57',NULL),(254,'Chapter 1. Electric Charges and Fields (NCERT Solutions)','2022-03-10 00:35:00','question_paper/Chapter 1. Electric Charges and Fields (NCERT Solutions).pdf','<p>Chapter 1. Electric Charges and Fields (NCERT Solutions)</p>',NULL,NULL,'chapter-1-electric-charges-and-fields-ncert-solutions',NULL,NULL,0,26,NULL,NULL,NULL,NULL,NULL,1,1,NULL,'2022-03-09 19:06:53','2022-03-09 19:06:53',NULL),(255,'Chapter 5. Surface Chemistry (Board Notes)','2022-03-18 23:29:00','question_paper/Chapter 5. Surface Chemistry (Board Notes).pdf','<p>Chapter 5. Surface Chemistry (Board Notes)</p>',NULL,NULL,'chapter-5-surface-chemistry-board-notes',NULL,NULL,54,27,NULL,NULL,NULL,NULL,NULL,5,1,NULL,'2022-03-18 18:00:58','2022-03-18 18:00:58',NULL),(256,'Chapter 8. d & f Block elements (Board Notes)','2022-03-18 23:31:00','question_paper/Chapter 8. d & f Block elements (Board Notes).pdf','<p>Chapter 8. d & f Block elements (Board Notes)</p>',NULL,NULL,'chapter-8-d-f-block-elements-board-notes',NULL,NULL,54,27,NULL,NULL,NULL,NULL,NULL,5,1,NULL,'2022-03-18 18:02:38','2022-03-18 18:02:38',NULL),(257,'Chapter 15. Waves (NCERT Solutions)','2022-03-18 23:33:00','question_paper/Chapter 15. Waves (NCERT Solutions).pdf','<p>Chapter 15. Waves (NCERT Solutions)</p>',NULL,NULL,'chapter-15-waves-ncert-solutions',NULL,NULL,0,26,NULL,NULL,NULL,NULL,NULL,1,1,NULL,'2022-03-18 18:04:31','2022-03-18 18:04:31',NULL),(258,'Chapter 14. Oscillations (NCERT Solutions)','2022-03-18 23:35:00','question_paper/Chapter 14. Oscillations (NCERT Solutions).pdf','<p>Chapter 14. Oscillations (NCERT Solutions)</p>',NULL,NULL,'chapter-14-oscillations-ncert-solutions',NULL,NULL,0,26,NULL,NULL,NULL,NULL,NULL,1,1,NULL,'2022-03-18 18:06:07','2022-03-18 18:06:07',NULL),(259,'Chapter 13. Kinetic Theory (NCERT Solutions)','2022-03-18 23:36:00','question_paper/Chapter 13. Kinetic Theory (NCERT Solutions).pdf','<p>Chapter 13. Kinetic Theory (NCERT Solutions)</p>',NULL,NULL,'chapter-13-kinetic-theory-ncert-solutions',NULL,NULL,0,26,NULL,NULL,NULL,NULL,NULL,1,1,1,'2022-03-18 18:07:28','2022-05-26 05:46:17',NULL),(260,'Chapter 12. Thermodynamics (NCERT Solutions)','2022-03-18 23:37:00','question_paper/Chapter 12. Thermodynamics (NCERT Solutions).pdf','<p>Chapter 12. Thermodynamics (NCERT Solutions)</p>',NULL,NULL,'chapter-12-thermodynamics-ncert-solutions',NULL,NULL,0,26,NULL,NULL,NULL,NULL,NULL,1,1,NULL,'2022-03-18 18:08:45','2022-03-18 18:08:45',NULL),(261,'Chapter 11. Thermal Properties of Matter (NCERT Solutions)','2022-03-18 23:39:00','question_paper/Chapter 11. Thermal Properties of Matter (NCERT Solutions).pdf','<p>Chapter 11. Thermal Properties of Matter (NCERT Solutions)</p>',NULL,NULL,'chapter-11-thermal-properties-of-matter-ncert-solutions',NULL,NULL,0,26,NULL,NULL,NULL,NULL,NULL,1,1,NULL,'2022-03-18 18:10:22','2022-03-18 18:10:22',NULL),(262,'Chapter 9. Mechanical properties of solid (NCERT Solutions)','2022-03-18 23:41:00','question_paper/Chapter 9. Mechanical properties of solid (NCERT Solutions).pdf','<p>Chapter 9. Mechanical properties of solid (NCERT Solutions)</p>',NULL,NULL,'chapter-9-mechanical-properties-of-solid-ncert-solutions',NULL,NULL,0,26,NULL,NULL,NULL,NULL,NULL,1,1,NULL,'2022-03-18 18:12:49','2022-03-18 18:12:49',NULL),(263,'Chapter 8. Motion (NCERT Solutions)','2022-03-20 11:12:00','question_paper/Chapter 8. Motion (NCERT Solutions).pdf','<p>Chapter 8. Motion (NCERT Solutions)</p>',NULL,NULL,'chapter-8-motion-ncert-solutions',NULL,NULL,0,75,NULL,NULL,NULL,NULL,NULL,1,1,NULL,'2022-03-20 05:43:48','2022-03-20 05:43:48',NULL),(264,'Chapter 9. Force and Laws of Motion (NCERT Solutions)','2022-03-20 11:14:00','question_paper/Chapter 9. Force and Laws of Motion (NCERT Solutions).pdf','<p>Chapter 9. Force and Laws of Motion (NCERT Solutions)</p>',NULL,NULL,'chapter-9-force-and-laws-of-motion-ncert-solutions',NULL,NULL,0,75,NULL,NULL,NULL,NULL,NULL,1,1,NULL,'2022-03-20 05:45:10','2022-03-20 05:45:10',NULL),(265,'Chapter 10. Mechanical Properties of fluids (NCERT Solutions)','2022-03-22 00:26:00','question_paper/Chapter 10. Mechanical Properties of fluids (NCERT Solutions).pdf','<p>Chapter 10. Mechanical Properties of fluids (NCERT Solutions)</p>',NULL,NULL,'chapter-10-mechanical-properties-of-fluids-ncert-solutions',NULL,NULL,0,26,NULL,NULL,NULL,NULL,NULL,1,1,NULL,'2022-03-21 18:57:47','2022-03-21 18:57:47',NULL),(266,'Chapter 7. System of Particles and Rotational Motion (NCERT Solutions)','2022-03-22 00:28:00','question_paper/Chapter 7. System of Particles and Rotational Motion (NCERT Solutions).pdf','<p>Chapter 7. System of Particles and Rotational Motion (NCERT Solutions)</p>',NULL,NULL,'chapter-7-system-of-particles-and-rotational-motion-ncert-solutions',NULL,NULL,0,26,NULL,NULL,NULL,NULL,NULL,1,1,NULL,'2022-03-21 18:59:12','2022-03-21 18:59:12',NULL),(267,'Chapter 9. Some Applications of trigonometry (Board Notes)','2022-03-22 00:30:00','question_paper/Chapter 9. Some Applications of trigonometry (Board Notes).pdf','<p>Chapter 9. Some Applications of trigonometry (Board Notes)</p>',NULL,NULL,'chapter-9-some-applications-of-trigonometry-board-notes',NULL,NULL,54,28,NULL,NULL,NULL,NULL,NULL,5,1,NULL,'2022-03-21 19:01:15','2022-03-21 19:01:15',NULL),(268,'Chapter 13. Magnetic Effects of Electric Current ((Important MCQ)','2022-03-22 00:39:00','question_paper/Chapter 13. Magnetic Effects of Electric Current ((Important MCQ).pdf','<p>Chapter 13. Magnetic Effects of Electric Current ((Important MCQ)</p>',NULL,NULL,'chapter-13-magnetic-effects-of-electric-current-important-mcq',NULL,NULL,76,75,NULL,NULL,NULL,NULL,NULL,3,1,1,'2022-03-21 19:10:46','2022-03-21 19:12:30',NULL),(269,'Chapter 1. Chemical Reactions & Equations (NCERT Solutions)','2022-03-22 20:31:00','question_paper/Chapter 1. Chemical Reactions & Equations (NCERT Solutions).pdf','<p>Chapter 1. Chemical Reactions & Equations (NCERT Solutions)</p>',NULL,NULL,'chapter-1-chemical-reactions-equations-ncert-solutions',NULL,NULL,0,75,NULL,NULL,NULL,NULL,NULL,1,1,NULL,'2022-03-22 15:02:15','2022-03-22 15:02:15',NULL),(270,'Chapter 2. Acids, Bases and Salts (NCERT Solutions)','2022-03-22 20:33:00','question_paper/Chapter 2. Acids, Bases and Salts (NCERT Solutions).pdf','<p>Chapter 2. Acids, Bases and Salts (NCERT Solutions)</p>',NULL,NULL,'chapter-2-acids-bases-and-salts-ncert-solutions',NULL,NULL,0,75,NULL,NULL,NULL,NULL,NULL,1,1,NULL,'2022-03-22 15:04:21','2022-03-22 15:04:21',NULL),(271,'Chapter 7. Coordinate Geometry (Board Notes)','2022-03-22 20:35:00','question_paper/Chapter 7. Coordinate Geometry (Board Notes).pdf','<p>Chapter 7. Coordinate Geometry (Board Notes)</p>',NULL,NULL,'chapter-7-coordinate-geometry-board-notes',NULL,NULL,54,28,NULL,NULL,NULL,NULL,NULL,5,1,NULL,'2022-03-22 15:06:36','2022-03-22 15:06:36',NULL),(272,'Chapter 4. Quadratic Equations (Board Notes)','2022-03-22 20:37:00','question_paper/Chapter 4. Quadratic Equations (Board Notes).pdf','<p>Chapter 4. Quadratic Equations (Board Notes)</p>',NULL,NULL,'chapter-4-quadratic-equations-board-notes',NULL,NULL,54,28,NULL,NULL,NULL,NULL,NULL,5,1,NULL,'2022-03-22 15:08:38','2022-03-22 15:08:38',NULL),(273,'Chapter 3. Metals and Non-Metals (NCERT Solutions)','2022-03-25 21:05:00','question_paper/Chapter 3. Metals and Non-Metals (NCERT Solutions).pdf','<p>Chapter 3. Metals and Non-Metals (NCERT Solutions)</p>',NULL,NULL,'chapter-3-metals-and-non-metals-ncert-solutions',NULL,NULL,0,75,NULL,NULL,NULL,NULL,NULL,1,1,NULL,'2022-03-25 15:36:03','2022-03-25 15:36:03',NULL),(274,'Chapter 13. Surface Areas and Volumes (Board Notes)','2022-03-25 21:08:00','question_paper/Chapter 13. Surface Areas and Volumes (Board Notes).pdf','<p>Chapter 13. Surface Areas and Volumes (Board Notes)</p>',NULL,NULL,'chapter-13-surface-areas-and-volumes-board-notes',NULL,NULL,54,28,NULL,NULL,NULL,NULL,NULL,5,1,NULL,'2022-03-25 15:39:58','2022-03-25 15:39:58',NULL),(275,'Chapter 14. Statistics (Board Notes)','2022-03-26 11:15:00','question_paper/Chapter 14. Statistics (Board Notes).pdf','<p>Chapter 14. Statistics (Board Notes)</p>',NULL,NULL,'chapter-14-statistics-board-notes',NULL,NULL,54,28,NULL,NULL,NULL,NULL,NULL,5,1,1,'2022-03-26 05:47:05','2022-03-27 10:50:43',NULL),(276,'Chapter 9. Coordination Compounds (Board Notes)','2022-03-27 13:59:00','question_paper/Chapter 9. Coordination Compounds (Board Notes).pdf','<p>Chapter 9. Coordination Compounds (Board Notes)</p>',NULL,NULL,'chapter-9-coordination-compounds-board-notes',NULL,NULL,54,27,NULL,NULL,NULL,NULL,NULL,5,1,NULL,'2022-03-27 08:29:45','2022-03-27 08:29:45',NULL),(277,'Chapter 10. Circles (Board Notes)','2022-03-27 16:18:00','question_paper/Chapter 10. Circles (Board Notes).pdf','<p>Chapter 10. Circles (Board Notes)</p>',NULL,NULL,'chapter-10-circles-board-notes',NULL,NULL,54,28,NULL,NULL,NULL,NULL,NULL,5,1,NULL,'2022-03-27 10:49:50','2022-03-27 10:49:50',NULL),(278,'Chapter 14. Statistics (NCERT Solutions)','2022-03-28 23:08:00','question_paper/Chapter 14. Statistics (NCERT Solutions).pdf','<p>Chapter 14. Statistics (NCERT Solutions)</p>',NULL,NULL,'chapter-14-statistics-ncert-solutions',NULL,NULL,0,28,NULL,NULL,NULL,NULL,NULL,1,1,NULL,'2022-03-28 17:40:03','2022-03-28 17:40:03',NULL),(279,'Chapter 10. Light Reflection and Refraction (NCERT Solutions)','2022-03-28 23:10:00','question_paper/Chapter 10. Light Reflection and Refraction (NCERT Solutions).pdf','<p>Chapter 10. Light Reflection and Refraction (NCERT Solutions)</p>',NULL,NULL,'chapter-10-light-reflection-and-refraction-ncert-solutions',NULL,NULL,0,75,NULL,NULL,NULL,NULL,NULL,1,1,NULL,'2022-03-28 17:41:34','2022-03-28 17:41:34',NULL),(280,'Chapter 11. The Human Eye And The Colourful World (NCERT Solutions)','2022-03-28 23:12:00','question_paper/Chapter 11. The Human Eye And The Colourful World (NCERT Solutions).pdf','<p>Chapter 11. The Human Eye And The Colourful World (NCERT Solutions)</p>',NULL,NULL,'chapter-11-the-human-eye-and-the-colourful-world-ncert-solutions',NULL,NULL,0,75,NULL,NULL,NULL,NULL,NULL,1,1,NULL,'2022-03-28 17:43:04','2022-03-28 17:43:04',NULL),(281,'Chapter 12. Sound (NCERT Solutions)','2022-03-28 23:13:00','question_paper/Chapter 12. Sound (NCERT Solutions).pdf','<p>Chapter 12. Sound (NCERT Solutions)</p>',NULL,NULL,'chapter-12-sound-ncert-solutions',NULL,NULL,0,75,NULL,NULL,NULL,NULL,NULL,1,1,1,'2022-03-28 17:45:04','2022-04-08 11:32:15',NULL),(282,'Chapter 2. Polynomials (NCERT Solution)','2022-04-01 18:44:00','question_paper/Chapter 2. Polynomials (NCERT Solutions).pdf','<p>Chapter 2. Polynomials (NCERT Solutions)</p>',NULL,NULL,'chapter-2-polynomials-ncert-solution',NULL,NULL,0,28,NULL,NULL,NULL,NULL,NULL,1,1,NULL,'2022-04-01 13:15:29','2022-04-01 13:15:29',NULL),(283,'Chapter 9. Some Applications of Trigonometry (NCERT Solutions)','2022-04-02 17:23:00','question_paper/Chapter 9. Some Applications of Trigonometry (NCERT Solutions).pdf','<p>Chapter 9. Some Applications of Trigonometry (NCERT Solutions)</p>',NULL,NULL,'chapter-9-some-applications-of-trigonometry-ncert-solutions',NULL,NULL,0,28,NULL,NULL,NULL,NULL,NULL,1,1,NULL,'2022-04-02 11:54:20','2022-04-02 11:54:20',NULL),(284,'Chapter 1. Real Numbers (NCERT Solutions)','2022-04-04 10:48:00','question_paper/Chapter 1. Real Numbers (NCERT Solutions).pdf','<p>Chapter 1. Real Numbers (NCERT Solutions)</p>',NULL,NULL,'chapter-1-real-numbers-ncert-solutions',NULL,NULL,0,28,NULL,NULL,NULL,NULL,NULL,1,1,NULL,'2022-04-04 05:18:33','2022-04-04 05:18:33',NULL),(285,'Chapter 13. Surface Areas and Volumes (NCERT Solutions)','2022-04-08 16:54:00','question_paper/Chapter 13. Surface Areas and Volumes (NCERT Solutions).pdf','<p>Chapter 13. Surface Areas and Volumes (NCERT Solutions)</p>',NULL,NULL,'chapter-13-surface-areas-and-volumes-ncert-solutions',NULL,NULL,0,28,NULL,NULL,NULL,NULL,NULL,1,1,NULL,'2022-04-08 11:26:02','2022-04-08 11:26:02',NULL),(286,'Chapter 14. Sources of Energy (NCERT Solutions)','2022-04-08 16:57:00','question_paper/Chapter 14. Sources of Energy (NCERT Solutions).pdf','<p>Chapter 14. Sources of Energy (NCERT Solutions)</p>',NULL,NULL,'chapter-14-sources-of-energy-ncert-solutions',NULL,NULL,0,75,NULL,NULL,NULL,NULL,NULL,1,1,NULL,'2022-04-08 11:29:17','2022-04-08 11:29:17',NULL),(287,'11 January 2019 (Morning Shift) Question Paper & Solution','2022-04-18 01:15:00','question_paper/11th Jan 2019 Q&Ans_with_Sol_JEEMain_Morning Shift.pdf','<p>11 January 2019 (Morning Shift) Question Paper & Solution</p>',NULL,NULL,'11-january-2019-morning-shift-question-paper-solution',NULL,NULL,64,58,NULL,NULL,NULL,NULL,NULL,4,1,1,'2022-04-17 19:45:51','2022-05-06 09:38:36',NULL),(288,'11 January 2019 (Evening Shift) Question Paper & Solution','2022-04-18 01:16:00','question_paper/11th Jan 2019 Q&Ans_with_Sol_JEEMain_Evening Shift-1.pdf','<p>11 January 2019 (Evening Shift) Question Paper & Solution</p>',NULL,NULL,'11-january-2019-evening-shift-question-paper-solution',NULL,NULL,64,58,NULL,NULL,NULL,NULL,NULL,4,1,1,'2022-04-17 19:46:56','2022-04-25 11:14:32',NULL),(289,'Chapter 6. Triangle (NCERT Solutions)','2022-04-18 01:17:00','question_paper/Chapter 6. Triangle (NCERT Solutions).pdf','<p>Chapter 6. Triangle (NCERT Solutions)</p>',NULL,NULL,'chapter-6-triangle-ncert-solutions',NULL,NULL,0,28,NULL,NULL,NULL,NULL,NULL,1,1,NULL,'2022-04-17 19:49:37','2022-04-17 19:49:37',NULL),(290,'Chapter 15. Probability (NCERT Solutions)','2022-04-18 01:20:00','question_paper/Chapter 15. Probability (NCERT Solutions).pdf','<p>Chapter 15. Probability (NCERT Solutions)</p>',NULL,NULL,'chapter-15-probability-ncert-solutions',NULL,NULL,0,28,NULL,NULL,NULL,NULL,NULL,1,1,NULL,'2022-04-17 19:50:23','2022-04-17 19:50:23',NULL),(291,'12 January 2019 (Morning Shift) Question Paper & Solution','2022-04-25 16:46:00','question_paper/12th Jan 2019 Q&Ans_with_Sol_JEEMain_Morning Shift.pdf','<p>12 January 2019 (Morning Shift) Question Paper & Solution</p>',NULL,NULL,'12-january-2019-morning-shift-question-paper-solution',NULL,NULL,64,58,NULL,NULL,NULL,NULL,NULL,4,1,NULL,'2022-04-25 11:17:28','2022-04-25 11:17:28',NULL),(292,'12 January 2019 (Evening Shift) Question Paper & Solution','2022-04-25 16:48:00','question_paper/12th Jan 2019 Q&Ans_with_Sol_JEEMain_Evening Shift.pdf','<p>12 January 2019 (Evening Shift) Question Paper & Solution</p>',NULL,NULL,'12-january-2019-evening-shift-question-paper-solution',NULL,NULL,64,58,NULL,NULL,NULL,NULL,NULL,4,1,NULL,'2022-04-25 11:19:01','2022-04-25 11:19:01',NULL),(293,'09 April 2019 (Evening Shift) Question Paper & Solution','2022-04-25 19:03:00','question_paper/9th April 2019 Q&Ans_with_Sol_JEEMain_Evening Shift.pdf','<p>09 April 2019 (Evening Shift) Question Paper & Solution</p>',NULL,NULL,'09-april-2019-evening-shift-question-paper-solution',NULL,NULL,65,58,NULL,NULL,NULL,NULL,NULL,4,1,NULL,'2022-04-25 13:34:27','2022-04-25 13:34:27',NULL),(294,'09 April 2019 (Morning Shift) Question Paper & Solution','2022-04-25 19:05:00','question_paper/9th April 2019 Q&Ans_with_Sol_JEEMain_Morning Shift.pdf','<p>09 April 2019 (Morning Shift) Question Paper & Solution</p>',NULL,NULL,'09-april-2019-morning-shift-question-paper-solution',NULL,NULL,65,58,NULL,NULL,NULL,NULL,NULL,4,1,1,'2022-04-25 13:35:51','2022-04-27 17:30:17',NULL),(295,'Chapter 8. Introduction to Trignometry (NCERT Solutions)','2022-04-25 19:11:00','question_paper/Chapter 8. Introduction to Trignometry (NCERT Solutions).pdf','<p>Chapter 8. Introduction to Trignometry (NCERT Solutions)</p>',NULL,NULL,'chapter-8-introduction-to-trignometry-ncert-solutions',NULL,NULL,0,28,NULL,NULL,NULL,NULL,NULL,1,1,NULL,'2022-04-25 14:06:28','2022-04-25 14:06:28',NULL),(296,'10 April 2019 (Morning Shift) Question Paper & Solution','2022-04-27 23:00:00','question_paper/10th April 2019 Q&Ans_with_Sol_JEEMain_Morning Shift.pdf','<p>10 April 2019 (Morning Shift) Question Paper & Solution</p>',NULL,NULL,'10-april-2019-morning-shift-question-paper-solution',NULL,NULL,65,58,NULL,NULL,NULL,NULL,NULL,4,1,NULL,'2022-04-27 17:31:20','2022-04-27 17:31:20',NULL),(297,'10 April 2019 (Eveningi Shift) Question Paper & Solution','2022-04-27 23:02:00','question_paper/10th April 2019 Q&Ans_with_Sol_JEEMain_Evening Shift.pdf','<p>10 April 2019 (Eveningi Shift) Question Paper & Solution</p>',NULL,NULL,'10-april-2019-eveningi-shift-question-paper-solution',NULL,NULL,65,58,NULL,NULL,NULL,NULL,NULL,4,1,NULL,'2022-04-27 17:32:32','2022-04-27 17:32:32',NULL),(298,'Chapter 7. Coordinate Geometry (NCERT Solutions)','2022-04-27 23:03:00','question_paper/Chapter 7. Coordinate Geometry (NCERT Solutions).pdf','<p>Chapter 7. Coordinate Geometry (NCERT Solutions)</p>',NULL,NULL,'chapter-7-coordinate-geometry-ncert-solutions',NULL,NULL,0,28,NULL,NULL,NULL,NULL,NULL,1,1,NULL,'2022-04-27 17:34:20','2022-04-27 17:34:20',NULL),(299,'12 April 2019 (Morning Shift) Question Paper & Solution','2022-04-28 23:59:00','question_paper/12th April 2019 Q&Ans_with_Sol_JEEMain_Morning Shift.pdf','<p>12 April 2019 (Morning Shift) Question Paper & Solution</p>',NULL,NULL,'12-april-2019-morning-shift-question-paper-solution',NULL,NULL,65,58,NULL,NULL,NULL,NULL,NULL,4,1,NULL,'2022-04-28 18:29:54','2022-04-28 18:29:54',NULL),(300,'12 April 2019 (Evening Shift) Question Paper & Solution','2022-05-02 13:26:00','question_paper/12th April 2019 Q&Ans_with_Sol_JEEMain_Evening Shift.pdf','<p>12 April 2019 (Evening Shift) Question Paper & Solution</p>',NULL,NULL,'12-april-2019-evening-shift-question-paper-solution',NULL,NULL,65,58,NULL,NULL,NULL,NULL,NULL,4,1,NULL,'2022-05-02 07:57:19','2022-05-02 07:57:19',NULL),(301,'Chapter 12. Areas Related to Circles (NCERT Solutions)','2022-05-02 13:28:00','question_paper/Chapter 12. Areas Related to Circles (NCERT Solutions).pdf','<p>Chapter 12. Areas Related to Circles (NCERT Solutions)</p>',NULL,NULL,'chapter-12-areas-related-to-circles-ncert-solutions',NULL,NULL,0,28,NULL,NULL,NULL,NULL,NULL,1,1,NULL,'2022-05-02 07:58:57','2022-05-02 07:58:57',NULL),(302,'Chapter 12. Aldehydes, Ketones and Carboxylic Acids (Board Notes)','2022-05-05 00:20:00','question_paper/Chapter 12. Aldehydes, Ketones and Carboxylic Acids (Board Notes).pdf','<p>Chapter 12. Aldehydes, Ketones and Carboxylic Acids (Board Notes)</p>',NULL,NULL,'chapter-12-aldehydes-ketones-and-carboxylic-acids-board-notes',NULL,NULL,54,27,NULL,NULL,NULL,NULL,NULL,5,1,NULL,'2022-05-04 18:53:37','2022-05-04 18:53:37',NULL),(303,'Chapter 3. Pair of Linear Equations in Two Variables (NCERT Solutions)','2022-05-05 00:37:00','question_paper/Chapter 3. Pair of Linear Equations in Two Variables (NCERT Solutions).pdf','<p>Chapter 3. Pair of Linear Equations in Two Variables (NCERT Solutions)</p>',NULL,NULL,'chapter-3-pair-of-linear-equations-in-two-variables-ncert-solutions',NULL,NULL,0,28,NULL,NULL,NULL,NULL,NULL,1,1,NULL,'2022-05-04 19:09:15','2022-05-04 19:09:15',NULL),(304,'CBSE Term-2 Class 12th Chemistry Paper & Solution 2022 (AABB1/2/SET1)','2022-05-08 16:35:00','question_paper/CBSE Term-2 Class 12th Chemistry Paper & Solution 2022 (AABB12SET1).pdf','<p>CBSE Term-2 Class 12th Chemistry Paper & Solution 2022 (AABB1/2/SET1)</p>',NULL,NULL,'cbse-term-2-class-12th-chemistry-paper-solution-2022-aabb12set1',NULL,NULL,80,82,NULL,NULL,NULL,NULL,NULL,4,1,1,'2022-05-08 11:06:28','2022-05-10 07:41:57',NULL),(305,'CBSE Term-2 Class 12th Chemistry Paper & Solution 2022 (AABB4/3/SET2)','2022-05-08 23:12:00','question_paper/CBSE Term-2 Class 12th Chemistry Paper & Solution 2022 (AABB43SET2).pdf','<p>CBSE Term-2 Class 12th Chemistry Paper & Solution 2022 (AABB4/3/SET2)</p>',NULL,NULL,'cbse-term-2-class-12th-chemistry-paper-solution-2022-aabb43set2',NULL,NULL,80,82,NULL,NULL,NULL,NULL,NULL,4,1,1,'2022-05-08 17:42:46','2022-05-10 07:40:52',NULL),(306,'CBSE Term-2 Class 10th Mathematics Paper & Solution 2022 (PPQQB/3/SET2)','2022-05-08 23:15:00','question_paper/QuestionPaperwithSolution_Mathematics_T2_2022.pdf','<p>CBSE Term-2 Class 10th Mathematics Paper & Solution 2022 (PPQQB/3/SET2)</p>',NULL,NULL,'cbse-term-2-class-10th-mathematics-paper-solution-2022-ppqqb3set2',NULL,NULL,80,82,NULL,NULL,NULL,NULL,NULL,4,1,NULL,'2022-05-08 17:45:45','2022-05-08 17:45:45',NULL),(307,'CBSE Term-2 Class 10th Mathematics Paper & Solution 2022 (PPQQB/3/SET1)','2022-05-08 23:20:00','question_paper/QuestionPaperwithSolution_Mathematics_T2_2022_SET1.pdf','<h4>CBSE Term-2 Class 10th Mathematics Paper & Solution 2022 (PPQQB/3/SET1)</h4>',NULL,NULL,'cbse-term-2-class-10th-mathematics-paper-solution-2022-ppqqb3set1',NULL,NULL,80,82,NULL,NULL,NULL,NULL,NULL,4,1,NULL,'2022-05-08 17:50:58','2022-05-08 17:50:58',NULL),(308,'CBSE Term-2 Class 10th Mathematics Paper & Solution 2022 (PPQQC/2/SET3)','2022-05-09 16:01:00','question_paper/QuestionPaperwithSolution_Mathematics_T2_Set3.pdf','<p>CBSE Term-2 Class 10th Mathematics Paper & Solution 2022 (PPQQC/2/SET3)</p>',NULL,NULL,'cbse-term-2-class-10th-mathematics-paper-solution-2022-ppqqc2set3',NULL,NULL,80,82,NULL,NULL,NULL,NULL,NULL,4,1,NULL,'2022-05-09 10:32:04','2022-05-09 10:32:04',NULL),(309,'CBSE Term-2 Class 12th Chemistry Paper & Solution 2022 (AABB1/2/SET3)','2022-05-10 13:06:00','question_paper/CBSE Term-2 Class 12th Chemistry Paper & Solution 2022 (AABB12SET3).pdf','<h4>CBSE Term-2 Class 12th Chemistry Paper & Solution 2022 (AABB1/2/SET3)</h4>',NULL,NULL,'cbse-term-2-class-12th-chemistry-paper-solution-2022-aabb12set3',NULL,NULL,80,82,NULL,NULL,NULL,NULL,NULL,4,1,1,'2022-05-10 07:37:24','2022-05-10 07:39:54',NULL),(310,'CBSE Term-2 Class 10th Science Paper & Solution 2022 (QQBRR/3/SET3)','2022-05-16 14:14:00','question_paper/CBSE Term-2 Class 10th Science Paper & Solution 2022 (QQBRR3SET3).pdf','<p>CBSE Term-2 Class 10th Science Paper & Solution 2022 (QQBRR/3/SET3)</p>',NULL,NULL,'cbse-term-2-class-10th-science-paper-solution-2022-qqbrr3set3',NULL,NULL,80,82,NULL,NULL,NULL,NULL,NULL,4,1,1,'2022-05-16 08:44:49','2022-05-16 08:49:02',NULL),(311,'CBSE Term-2 Class 10th Science Paper & Solution 2022 (QQBRR/3/SET2)','2022-05-16 14:30:00','question_paper/CBSE Term-2 Class 10th Science Paper & Solution 2022 (QQBRR3SET2).pdf','<p>CBSE Term-2 Class 10th Science Paper & Solution 2022 (QQBRR/3/SET2)</p>',NULL,NULL,'cbse-term-2-class-10th-science-paper-solution-2022-qqbrr3set2',NULL,NULL,80,82,NULL,NULL,NULL,NULL,NULL,4,1,NULL,'2022-05-16 09:01:21','2022-05-16 09:01:21',NULL),(312,'CBSE Term-2 Class 12th Physics Paper & Solution 2022 (A1BAB/2/SET3)','2022-05-26 11:07:00','question_paper/CBSE Term-2 Class 12th Physics Paper & Solution 2022 (A1BAB2SET3).pdf','<p>CBSE Term-2 Class 12th Physics Paper & Solution 2022 (A1BAB/2/SET3)</p>',NULL,NULL,'cbse-term-2-class-12th-physics-paper-solution-2022-a1bab2set3',NULL,NULL,80,82,NULL,NULL,NULL,NULL,NULL,4,1,NULL,'2022-05-26 05:37:36','2022-05-26 05:37:36',NULL),(313,'CBSE Term-2 Class 12th Physics Paper & Solution 2022 (A1BAB/2/SET2)','2022-05-26 11:08:00','question_paper/CBSE Term-2 Class 12th Physics Paper & Solution 2022 (A1BAB2SET2).pdf','<p>CBSE Term-2 Class 12th Physics Paper & Solution 2022 (A1BAB/2/SET2)</p>',NULL,NULL,'cbse-term-2-class-12th-physics-paper-solution-2022-a1bab2set2',NULL,NULL,80,82,NULL,NULL,NULL,NULL,NULL,4,1,NULL,'2022-05-26 05:38:49','2022-05-26 05:38:49',NULL),(314,'CBSE Term-2 Class 12th Physics Paper & Solution 2022 (A1BAB/2/SET1)','2022-05-26 11:09:00','question_paper/CBSE Term-2 Class 12th Physics Paper & Solution 2022 (A1BAB2SET1).pdf','<p>CBSE Term-2 Class 12th Physics Paper & Solution 2022 (A1BAB/2/SET1)</p>',NULL,NULL,'cbse-term-2-class-12th-physics-paper-solution-2022-a1bab2set1',NULL,NULL,80,82,NULL,NULL,NULL,NULL,NULL,4,1,NULL,'2022-05-26 05:40:03','2022-05-26 05:40:03',NULL),(315,'JKBOSE Class 12th Mathematics Paper & Solution 2022 (SZARJD22/6006-C)','2022-05-26 11:12:00','question_paper/JKBOSE Class 12th Mathematics Paper & Solution 2022 (SZARJD226006-C).pdf','<p>JKBOSE Class 12th Mathematics Paper & Solution 2022 (SZARJD22/6006-C)</p>',NULL,NULL,'jkbose-class-12th-mathematics-paper-solution-2022-szarjd226006-c',NULL,NULL,81,82,NULL,NULL,NULL,NULL,NULL,4,1,NULL,'2022-05-26 05:43:16','2022-05-26 05:43:16',NULL),(316,'CBSE Term-2 Class 12th Mathematics Paper & Solution 2022 (ABCD1/2/SET1)','2022-06-08 13:16:00','question_paper/CBSE Term-2 Class 12th Mathematics Paper & Solution 2022 (ABCD12SET1).pdf','<p>CBSE Term-2 Class 12th Mathematics Paper & Solution 2022 (ABCD1/2/SET1)</p>',NULL,NULL,'cbse-term-2-class-12th-mathematics-paper-solution-2022-abcd12set1',NULL,NULL,80,82,NULL,NULL,NULL,NULL,NULL,4,1,1,'2022-06-08 07:46:08','2022-06-08 07:50:25',NULL),(317,'CBSE Term-2 Class 12th Mathematics Paper & Solution 2022 (ABCD1/2/SET2)','2022-06-08 13:17:00','question_paper/CBSE Term-2 Class 12th Mathematics Paper & Solution 2022 (ABCD12SET2).pdf','<p>CBSE Term-2 Class 12th Mathematics Paper & Solution 2022 (ABCD1/2/SET2)</p>',NULL,NULL,'cbse-term-2-class-12th-mathematics-paper-solution-2022-abcd12set2',NULL,NULL,80,82,NULL,NULL,NULL,NULL,NULL,4,1,1,'2022-06-08 07:47:16','2022-06-08 07:51:05',NULL),(318,'CBSE Term-2 Class 12th Mathematics Paper & Solution 2022 (ABCD1/2/SET3)','2022-06-08 13:17:00','question_paper/CBSE Term-2 Class 12th Mathematics Paper & Solution 2022 (ABCD12SET3).pdf','<p>CBSE Term-2 Class 12th Mathematics Paper & Solution 2022 (ABCD1/2/SET3)</p>',NULL,NULL,'cbse-term-2-class-12th-mathematics-paper-solution-2022-abcd12set3',NULL,NULL,80,82,NULL,NULL,NULL,NULL,NULL,4,1,1,'2022-06-08 07:48:08','2022-06-08 07:51:40',NULL),(319,'CBSE Term-2 Class 12th Mathematics Paper & Solution 2022 (ABCD4/3/SET1)','2022-06-09 15:47:00','question_paper/CBSE Term-2 Class 12th Mathematics Paper & Solution 2022 (ABCD43SET1).pdf','<p>CBSE Term-2 Class 12th Mathematics Paper & Solution 2022 (ABCD4/3/SET1)</p>',NULL,NULL,'cbse-term-2-class-12th-mathematics-paper-solution-2022-abcd43set1',NULL,NULL,80,82,NULL,NULL,NULL,NULL,NULL,4,1,1,'2022-06-09 10:18:12','2022-06-09 12:37:13',NULL),(320,'CBSE Term-2 Class 12th Mathematics Paper & Solution 2022 (ABCD5/5/SET1)','2022-06-10 23:25:00','question_paper/CBSE Term-2 Class 12th Mathematics Paper & Solution 2022 (ABCD45SET1).pdf','<h4>CBSE Term-2 Class 12th Mathematics Paper & Solution 2022 (ABCD5/5/SET1)</h4>',NULL,NULL,'cbse-term-2-class-12th-mathematics-paper-solution-2022-abcd55set1',NULL,NULL,80,82,NULL,NULL,NULL,NULL,NULL,4,1,NULL,'2022-06-10 17:58:18','2022-06-10 17:58:18',NULL),(321,'JKBOSE Class 11th Mathematics Paper & Solution 2022 (SZARJD22/6423-B)','2022-06-10 23:30:00','question_paper/JKBOSE Class 11th Mathematics Paper & Solution 2022 (SZARJD226423-B).pdf','<h4>JKBOSE Class 11th Mathematics Paper & Solution 2022 (SZARJD22/6423-B)</h4>',NULL,NULL,'jkbose-class-11th-mathematics-paper-solution-2022-szarjd226423-b',NULL,NULL,81,82,NULL,NULL,NULL,NULL,NULL,4,1,1,'2022-06-10 18:04:31','2022-06-10 18:06:07',NULL),(322,'JKBOSE Class 11th Mathematics Paper & Solution 2022 (SZARJD22/6412-B)','2022-06-10 23:37:00','question_paper/JKBOSE Class 11th Mathematics Paper & Solution 2022 (SZARJD226412-B).pdf','<p>JKBOSE Class 11th Mathematics Paper & Solution 2022 (SZARJD22/6412-B)</p>\r\n<p> </p>',NULL,NULL,'jkbose-class-11th-mathematics-paper-solution-2022-szarjd226412-b',NULL,NULL,81,82,NULL,NULL,NULL,NULL,NULL,4,1,1,'2022-06-10 18:07:52','2022-06-10 18:08:59',NULL),(323,'Chapter 13. Probability (NCERT Solutions)','2022-06-15 15:07:00','question_paper/Chapter 13. Probability (NCERT Solutions).pdf','<p>Chapter 13. Probability (NCERT Solutions)</p>',NULL,NULL,'chapter-13-probability-ncert-solutions',NULL,NULL,0,28,NULL,NULL,NULL,NULL,NULL,1,1,NULL,'2022-06-15 09:37:45','2022-06-15 09:37:45',NULL),(324,'Memory Based 24 June 2022 (Morning Shift) Question Paper & Solution','2022-06-24 21:52:00','question_paper/24th June 2022 Q&Ans_with_Sol_JEEMain_Morning Shift.pdf','<p>Memory Based 24 June 2022 (Morning Shift) Question Paper & Solution</p>',NULL,NULL,'memory-based-24-june-2022-morning-shift-question-paper-solution',NULL,NULL,84,82,NULL,NULL,NULL,NULL,NULL,4,1,1,'2022-06-24 16:23:32','2022-06-25 16:59:47',NULL),(325,'Memory Based 24 June 2022 (Evening Shift) Question Paper & Solution','2022-06-24 21:54:00','question_paper/24th June 2022 Q&Ans_with_Sol_JEEMain_Evening Shift.pdf','<p>Memory Based 24 June 2022 (Evening Shift) Question Paper & Solution</p>',NULL,NULL,'memory-based-24-june-2022-evening-shift-question-paper-solution',NULL,NULL,84,82,NULL,NULL,NULL,NULL,NULL,4,1,1,'2022-06-24 16:24:56','2022-06-26 12:57:08',NULL),(326,'Memory Based 25 June 2022 (Evening Shift) Question Paper & Solution','2022-06-24 21:56:00','question_paper/25th June 2022 Q&Ans_with_Sol_JEEMain_Evening Shift.pdf','<p>Memory Based 25 June 2022 (Evening Shift) Question Paper & Solution</p>',NULL,NULL,'memory-based-25-june-2022-evening-shift-question-paper-solution',NULL,NULL,84,82,NULL,NULL,NULL,NULL,NULL,4,1,1,'2022-06-24 16:26:36','2022-06-28 04:28:45',NULL),(327,'Memory Based 25 June 2022 (Morning Shift) Question Paper & Solution','2022-06-24 21:57:00','question_paper/25th June 2022 Q&Ans_with_Sol_JEEMain_Morning Shift.pdf','<p>Memory Based 25 June 2022 (Morning Shift) Question Paper & Solution</p>',NULL,NULL,'memory-based-25-june-2022-morning-shift-question-paper-solution',NULL,NULL,84,82,NULL,NULL,NULL,NULL,NULL,4,1,1,'2022-06-24 16:27:28','2022-06-28 04:27:59',NULL),(328,'Memory Based 26 June 2022 (Morning Shift) Question Paper & Solution','2022-06-29 09:59:00','question_paper/26th June 2022 Q&Ans_with_Sol_JEEMain_Morning Shift.pdf','<p>Memory Based 26 June 2022 (Morning Shift) Question Paper & Solution</p>',NULL,NULL,'memory-based-26-june-2022-morning-shift-question-paper-solution',NULL,NULL,84,82,NULL,NULL,NULL,NULL,NULL,4,1,1,'2022-06-28 04:30:24','2022-06-29 12:55:41',NULL),(329,'Memory Based 26 June 2022 (Evening Shift) Question Paper & Solution','2022-06-29 10:00:00','question_paper/26th June 2022 Q&Ans_with_Sol_JEEMain_Evening Shift.pdf','<p>Memory Based 26 June 2022 (Evening Shift) Question Paper & Solution</p>',NULL,NULL,'memory-based-26-june-2022-evening-shift-question-paper-solution',NULL,NULL,84,82,NULL,NULL,NULL,NULL,NULL,4,1,1,'2022-06-28 04:31:55','2022-06-29 12:56:16',NULL),(330,'Memory Based 27 June 2022 (Morning Shift) Question Paper & Solution','2022-06-29 18:27:00','question_paper/27th June 2022 Q&Ans_with_Sol_JEEMain_Morning Shift.pdf','<p>Memory Based 27 June 2022 (Morning Shift) Question Paper & Solution</p>',NULL,NULL,'memory-based-27-june-2022-morning-shift-question-paper-solution',NULL,NULL,84,82,NULL,NULL,NULL,NULL,NULL,4,1,1,'2022-06-29 12:57:15','2022-07-03 11:00:12',NULL),(331,'Memory Based 27 June 2022 (Evening Shift) Question Paper & Solution','2022-06-29 18:27:00','question_paper/27th June 2022 Q&Ans_with_Sol_JEEMain_Evening Shift.pdf','<p>Memory Based 27 June 2022 (Evening Shift) Question Paper & Solution</p>',NULL,NULL,'memory-based-27-june-2022-evening-shift-question-paper-solution',NULL,NULL,84,82,NULL,NULL,NULL,NULL,NULL,4,1,1,'2022-06-29 12:58:13','2022-07-03 11:02:27',NULL),(332,'Memory Based 28 June 2022 (Morning Shift) Question Paper & Solution','2022-07-03 16:30:00','question_paper/28th June 2022 Q&Ans_with_Sol_JEEMain_Morning Shift.pdf','<p>Memory Based 28 June 2022 (Morning Shift) Question Paper & Solution</p>',NULL,NULL,'memory-based-28-june-2022-morning-shift-question-paper-solution',NULL,NULL,84,82,NULL,NULL,NULL,NULL,NULL,4,1,1,'2022-07-03 11:01:37','2022-07-03 15:47:19',NULL),(333,'Memory Based 28 June 2022 (Evening Shift) Question Paper & Solution','2022-07-03 16:33:00','question_paper/28th June 2022 Q&Ans_with_Sol_JEEMain_Evening Shift.pdf','<p>Memory Based 28 June 2022 (Evening Shift) Question Paper & Solution</p>',NULL,NULL,'memory-based-28-june-2022-evening-shift-question-paper-solution',NULL,NULL,84,82,NULL,NULL,NULL,NULL,NULL,4,1,1,'2022-07-03 11:03:46','2022-07-03 15:47:53',NULL),(334,'Memory Based 29 June 2022 (Morning Shift) Question Paper & Solution','2022-07-03 21:14:00','question_paper/29th June 2022 Q&Ans_with_Sol_JEEMain_Morning Shift.pdf','<p>Memory Based 29 June 2022 (Morning Shift) Question Paper & Solution</p>',NULL,NULL,'memory-based-29-june-2022-morning-shift-question-paper-solution',NULL,NULL,84,82,NULL,NULL,NULL,NULL,NULL,4,1,1,'2022-07-03 15:44:57','2022-07-11 12:41:24',NULL),(335,'Memory Based 29 June 2022 (Evening Shift) Question Paper & Solution','2022-07-03 21:15:00','question_paper/29th June 2022 Q&Ans_with_Sol_JEEMain_Evening Shift.pdf','<p>Memory Based 29 June 2022 (Evening Shift) Question Paper & Solution</p>',NULL,NULL,'memory-based-29-june-2022-evening-shift-question-paper-solution',NULL,NULL,84,82,NULL,NULL,NULL,NULL,NULL,4,1,1,'2022-07-03 15:45:58','2022-07-11 12:42:10',NULL),(336,'Chapter 12. Linear Programming (NCERT Solutions)','2022-08-28 03:09:00','question_paper/Chapter 12. Linear Programming (NCERT Solutions).pdf','<p>Chapter 12. Linear Programming (NCERT Solutions)</p>',NULL,NULL,'chapter-12-linear-programming-ncert-solutions',NULL,NULL,0,28,NULL,NULL,NULL,NULL,NULL,1,1,NULL,'2022-08-27 21:41:26','2022-08-27 21:41:26',NULL),(337,'Chapter 11. Three Dimensional Geometry (NCERT Solutions)','2022-08-28 03:13:00','question_paper/Coming soon....pdf','<p>Chapter 11. Three Dimensional Geometry (NCERT Solutions)</p>',NULL,NULL,'chapter-11-three-dimensional-geometry-ncert-solutions',NULL,NULL,0,28,NULL,NULL,NULL,NULL,NULL,1,1,NULL,'2022-08-27 21:44:26','2022-08-27 21:44:26',NULL),(338,'Chapter 10. Vector Algebra (NCERT Solutions)','2022-08-28 03:15:00','question_paper/Chapter 10. Vector Algebra (NCERT Solutions).pdf','<p>Chapter 10. Vector Algebra (NCERT Solutions)</p>',NULL,NULL,'chapter-10-vector-algebra-ncert-solutions',NULL,NULL,0,28,NULL,NULL,NULL,NULL,NULL,1,1,1,'2022-08-27 21:45:35','2022-09-08 18:26:41',NULL),(339,'Nuclei DPP-1','2022-10-08 16:46:00','question_paper/DPP 1 Nuclei .pdf','<p>Nuclei DPP-1 CLASS 12TH</p>',NULL,NULL,'nuclei-dpp-1',NULL,NULL,85,26,NULL,NULL,NULL,NULL,NULL,5,1,1,'2022-10-08 11:17:11','2022-10-10 10:21:47',NULL),(340,'Area DPP-1','2022-10-08 17:05:00','question_paper/Area DPP 1.pdf','<p>Area DPP-1</p>',NULL,NULL,'area-dpp-1',NULL,NULL,85,28,NULL,NULL,NULL,NULL,NULL,5,1,1,'2022-10-08 11:36:36','2022-10-10 10:23:35',NULL),(341,'Area DPP-2','2022-10-08 17:07:00','question_paper/Area DPP 2.pdf','<p>Area DPP-2</p>',NULL,NULL,'area-dpp-2',NULL,NULL,85,28,NULL,NULL,NULL,NULL,NULL,5,1,1,'2022-10-08 11:37:29','2022-10-10 10:24:00',NULL),(342,'Science - Class 10th (Handbook)','2022-10-08 23:54:00','question_paper/Handbook Science Class 10 for website.pdf','<p>Science (Handbook)</p>',NULL,NULL,'science-class-10th-handbook',NULL,NULL,86,75,NULL,NULL,NULL,NULL,NULL,5,1,1,'2022-10-08 18:24:50','2022-10-10 07:37:00',NULL),(343,'Mathematics- Class 10th (Handbook)','2022-10-09 00:00:00','question_paper/Handbook Math Class 10 for website.pdf','<p>Mathematics (Handbook)</p>',NULL,NULL,'mathematics-class-10th-handbook',NULL,NULL,86,28,NULL,NULL,NULL,NULL,NULL,5,1,1,'2022-10-08 18:30:50','2022-10-09 08:06:57',NULL),(344,'Mathematics-Class 12th (Handbook)','2022-10-09 00:03:00','question_paper/Coming soon....pdf','<p>Mathematics-Class 12th (Handbook)</p>',NULL,NULL,'mathematics-class-12th-handbook',NULL,NULL,86,28,NULL,NULL,NULL,NULL,NULL,5,1,NULL,'2022-10-08 18:34:53','2022-10-08 18:34:53',NULL),(345,'Mathematics-Class 11th (Handbook)','2022-10-09 00:05:00','question_paper/Handbook mathematics Class 11th for website.pdf','<p>Mathematics-Class 12th (Handbook)</p>',NULL,NULL,'mathematics-class-11th-handbook',NULL,NULL,86,28,NULL,NULL,NULL,NULL,NULL,5,1,1,'2022-10-08 18:35:51','2022-10-13 11:17:17',NULL),(346,'Physics-Class 12th (Handbook)','2022-10-09 00:10:00','question_paper/Handbook physics Class 12th for website.pdf','<p>Physics-Class 12th (Handbook)</p>',NULL,NULL,'physics-class-12th-handbook',NULL,NULL,86,26,NULL,NULL,NULL,NULL,NULL,5,1,1,'2022-10-08 18:40:41','2022-10-16 11:30:05',NULL),(347,'Physics-Class 11th (Handbook)','2022-10-09 00:11:00','question_paper/Handbook physics Class 11th for website.pdf','<p>Physics-Class 11th (Handbook)</p>',NULL,NULL,'physics-class-11th-handbook',NULL,NULL,86,26,NULL,NULL,NULL,NULL,NULL,5,1,1,'2022-10-08 18:41:43','2022-10-12 11:47:34',NULL),(348,'Chemistry - Class 11th (Handbook)','2022-10-09 00:12:00','question_paper/Handbook chemistry Class 11th for website.pdf','<p>Chemistry - Class 11th (Handbook)</p>',NULL,NULL,'chemistry-class-11th-handbook',NULL,NULL,86,27,NULL,NULL,NULL,NULL,NULL,5,1,1,'2022-10-08 18:42:55','2022-10-10 05:31:04',NULL),(349,'Chemistry - Class 12th (Handbook)','2022-10-09 00:13:00','question_paper/Handbook chemistry Class 12th for website.pdf','<p>Chemistry - Class 12th (Handbook)</p>',NULL,NULL,'chemistry-class-12th-handbook',NULL,NULL,86,27,NULL,NULL,NULL,NULL,NULL,5,1,1,'2022-10-08 18:44:12','2022-10-10 07:43:28',NULL),(350,'Differential Equation DPP-1','2022-10-11 11:15:00','question_paper/D.E. DPP 1.pdf','<p>Differential Equation DPP-1</p>',NULL,NULL,'differential-equation-dpp-1',NULL,NULL,85,28,NULL,NULL,NULL,NULL,NULL,5,1,NULL,'2022-10-11 06:23:56','2022-10-11 06:23:56',NULL),(351,'Differential Equation DPP-2','2022-10-11 11:54:00','question_paper/D.E. DPP 2.pdf','<p>Differential Equation DPP-2</p>',NULL,NULL,'differential-equation-dpp-2',NULL,NULL,85,28,NULL,NULL,NULL,NULL,NULL,5,1,NULL,'2022-10-11 06:24:58','2022-10-11 06:24:58',NULL),(352,'Permutation and Combination DPP-1','2022-10-11 12:08:00','question_paper/P & C DPP-1.pdf','<p>Permutation and Combination DPP-1</p>',NULL,NULL,'permutation-and-combination-dpp-1',NULL,NULL,85,28,NULL,NULL,NULL,NULL,NULL,5,1,1,'2022-10-11 06:39:04','2022-10-11 06:43:25',NULL),(353,'Permutation and Combination DPP-2','2022-10-11 12:09:00','question_paper/P & C DPP-2.pdf','<p>Permutation and Combination DPP-2</p>',NULL,NULL,'permutation-and-combination-dpp-2',NULL,NULL,85,28,NULL,NULL,NULL,NULL,NULL,5,1,1,'2022-10-11 06:40:03','2022-10-11 06:43:55',NULL),(354,'Permutation and Combination DPP-3','2022-10-11 12:12:00','question_paper/P & C DPP-3.pdf','<p>Permutation and Combination DPP-3</p>',NULL,NULL,'permutation-and-combination-dpp-3',NULL,NULL,85,28,NULL,NULL,NULL,NULL,NULL,5,1,1,'2022-10-11 06:42:27','2022-10-11 06:46:41',NULL),(355,'Alcohol, Phenol and Ether DPP-1','2022-10-11 13:01:00','question_paper/Alcohol, Phenol & Ether DPP-1.pdf','<p>Alcohol, Phenol and Ether DPP-1</p>',NULL,NULL,'alcohol-phenol-and-ether-dpp-1',NULL,NULL,85,27,NULL,NULL,NULL,NULL,NULL,5,1,1,'2022-10-11 07:32:24','2022-10-11 08:16:20',NULL),(356,'Differential Equation DPP-3','2022-10-12 17:09:00','question_paper/D.E. DPP 3.pdf','<p>Differential Equation DPP-3</p>',NULL,NULL,'differential-equation-dpp-3',NULL,NULL,85,28,NULL,NULL,NULL,NULL,NULL,5,1,NULL,'2022-10-12 11:42:14','2022-10-12 11:42:14',NULL),(357,'Permutation and Combination DPP-4','2022-10-12 17:18:00','question_paper/P & C DPP-4.pdf','<p>Permutation and Combination DPP-4</p>',NULL,NULL,'permutation-and-combination-dpp-4',NULL,NULL,85,28,'<p>Permutation and Combination DPP-4</p>',NULL,NULL,NULL,NULL,5,1,1,'2022-10-12 11:49:33','2022-10-12 11:54:40',NULL),(358,'Permutation and Combination DPP-5','2022-10-12 17:20:00','question_paper/P & C DPP-5.pdf','<p>Permutation and Combination DPP-5</p>',NULL,NULL,'permutation-and-combination-dpp-5',NULL,NULL,85,28,NULL,NULL,NULL,NULL,NULL,5,1,1,'2022-10-12 11:50:27','2022-10-12 11:55:00',NULL),(359,'Differential Equation DPP-4','2022-10-13 16:40:00','question_paper/D.E. DPP 4.pdf','<p>Differential Equation DPP-4</p>',NULL,NULL,'differential-equation-dpp-4',NULL,NULL,85,28,NULL,NULL,NULL,NULL,NULL,5,1,NULL,'2022-10-13 11:10:56','2022-10-13 11:10:56',NULL),(360,'Differential Equation DPP-5','2022-10-15 00:23:00','question_paper/D.E. DPP 5.pdf','<p>Differential Equation DPP-5</p>',NULL,NULL,'differential-equation-dpp-5',NULL,NULL,85,28,NULL,NULL,NULL,NULL,NULL,5,1,NULL,'2022-10-14 18:54:21','2022-10-14 18:54:21',NULL),(361,'Permutation and Combination DPP-6','2022-10-15 00:25:00','question_paper/P & C DPP-6.pdf','<p>Permutation and Combination DPP-6</p>',NULL,NULL,'permutation-and-combination-dpp-6',NULL,NULL,85,28,NULL,NULL,NULL,NULL,NULL,5,1,1,'2022-10-14 18:56:23','2022-10-17 10:23:20',NULL),(362,'Centre of Mass DPP-1','2022-10-16 16:45:00','question_paper/COM DPP 1.pdf','<p>Centre of Mass DPP-1</p>',NULL,NULL,'centre-of-mass-dpp-1',NULL,NULL,85,26,NULL,NULL,NULL,NULL,NULL,5,1,1,'2022-10-16 11:16:00','2022-10-16 11:18:08',NULL),(363,'GOC DPP-1','2022-10-16 16:54:00','question_paper/GOC DPP-1.pdf','<p>GOC DPP-1</p>',NULL,NULL,'goc-dpp-1',NULL,NULL,85,27,NULL,NULL,NULL,NULL,NULL,5,1,NULL,'2022-10-16 11:25:16','2022-10-16 11:25:16',NULL),(364,'Alcohol, Phenol and Ether DPP-2','2022-10-16 16:56:00','question_paper/Alcohol, Phenol & Ether DPP-2.pdf','<p>Alcohol, Phenol and Ether DPP-2</p>',NULL,NULL,'alcohol-phenol-and-ether-dpp-2',NULL,NULL,85,27,NULL,NULL,NULL,NULL,NULL,5,1,NULL,'2022-10-16 11:26:56','2022-10-16 11:26:56',NULL),(365,'GOC DPP-2','2022-10-17 15:54:00','question_paper/GOC (Inductive Effect & Its app DPP-2.pdf','<p>GOC DPP-2</p>',NULL,NULL,'goc-dpp-2',NULL,NULL,85,27,NULL,NULL,NULL,NULL,NULL,5,1,NULL,'2022-10-17 10:24:53','2022-10-17 10:24:53',NULL),(366,'Permutation and Combination DPP-7','2022-10-17 16:01:00','question_paper/P & C DPP-7.pdf','<p>Permutation and Combination DPP-7</p>',NULL,NULL,'permutation-and-combination-dpp-7',NULL,NULL,85,28,NULL,NULL,NULL,NULL,NULL,5,1,NULL,'2022-10-17 10:31:59','2022-10-17 10:31:59',NULL),(367,'Permutation and Combination DPP-8','2022-10-17 16:02:00','question_paper/P & C DPP-8.pdf','<p><strong>Permutation and Combination DPP-8</strong></p>',NULL,NULL,'permutation-and-combination-dpp-8',NULL,NULL,85,28,NULL,NULL,NULL,NULL,NULL,5,1,NULL,'2022-10-17 10:32:56','2022-10-17 10:32:56',NULL),(368,'Chemical Bonding and Molecular Structure DPP-1','2022-10-17 20:24:00','question_paper/Chemical Bonding DPP-1.pdf','<p>Chemical Bonding and Molecular Structure DPP-1</p>',NULL,NULL,'chemical-bonding-and-molecular-structure-dpp-1',NULL,NULL,85,27,NULL,NULL,NULL,NULL,NULL,5,1,NULL,'2022-10-17 14:56:17','2022-10-17 14:56:17',NULL),(369,'Differential Equation DPP-6','2022-10-17 20:28:00','question_paper/D.E. DPP 6.pdf','<p>Differential Equation DPP-6</p>',NULL,NULL,'differential-equation-dpp-6',NULL,NULL,85,28,NULL,NULL,NULL,NULL,NULL,5,1,NULL,'2022-10-17 14:58:48','2022-10-17 14:58:48',NULL),(370,'Differential Equation DPP-7','2022-10-18 17:21:00','question_paper/D.E. DPP 7.pdf','<p>Differential Equation DPP-7</p>',NULL,NULL,'differential-equation-dpp-7',NULL,NULL,85,28,NULL,NULL,NULL,NULL,NULL,5,1,NULL,'2022-10-18 11:52:37','2022-10-18 11:52:37',NULL),(371,'Differential Equation DPP-8','2022-10-20 21:34:00','question_paper/D.E. DPP 8.pdf','<p>Differential Equation DPP-8</p>',NULL,NULL,'differential-equation-dpp-8',NULL,NULL,85,28,NULL,NULL,NULL,NULL,NULL,5,1,NULL,'2022-10-20 16:05:27','2022-10-20 16:05:27',NULL),(372,'Vector Algebra DPP-1','2022-10-20 21:36:00','question_paper/VECTOR DPP-1.pdf','<p>Vector Algebra DPP-1</p>',NULL,NULL,'vector-algebra-dpp-1',NULL,NULL,85,28,NULL,NULL,NULL,NULL,NULL,5,1,1,'2022-10-20 16:06:58','2022-10-20 16:16:03',NULL),(373,'Chemical Bonding and Molecular Structure DPP-2','2022-10-20 21:37:00','question_paper/Chemical Bonding DPP-2 (VBT & Hybrid).pdf','<p>Chemical Bonding and Molecular Structure DPP-2</p>',NULL,NULL,'chemical-bonding-and-molecular-structure-dpp-2',NULL,NULL,85,27,NULL,NULL,NULL,NULL,NULL,5,1,NULL,'2022-10-20 16:08:24','2022-10-20 16:08:24',NULL),(374,'Vector Algebra DPP-2','2022-10-20 21:39:00','question_paper/VECTOR DPP-2.pdf','<p>Vector Algebra DPP-2</p>',NULL,NULL,'vector-algebra-dpp-2',NULL,NULL,85,28,NULL,NULL,NULL,NULL,NULL,5,1,1,'2022-10-20 16:09:40','2022-10-20 16:16:34',NULL),(375,'Vector Algebra DPP-3','2022-10-20 21:40:00','question_paper/VECTOR DPP-3.pdf','<p>Vector Algebra DPP-3</p>',NULL,NULL,'vector-algebra-dpp-3',NULL,NULL,85,28,NULL,NULL,NULL,NULL,NULL,5,1,1,'2022-10-20 16:10:45','2022-10-20 16:16:54',NULL),(376,'Permutation and Combination DPP-9','2022-10-20 21:48:00','question_paper/P & C DPP-9.pdf','<p>Permutation and Combination DPP-9</p>',NULL,NULL,'permutation-and-combination-dpp-9',NULL,NULL,85,28,NULL,NULL,NULL,NULL,NULL,5,1,NULL,'2022-10-20 16:21:46','2022-10-20 16:21:46',NULL),(377,'Centre of Mass DPP-2','2022-10-22 22:23:00','question_paper/COM DPP 2.pdf','<p>Centre of Mass DPP-2</p>',NULL,NULL,'centre-of-mass-dpp-2',NULL,NULL,85,26,NULL,NULL,NULL,NULL,NULL,5,1,1,'2022-10-22 16:54:04','2022-10-22 17:02:23',NULL),(378,'Permutation and Combination (APW)','2022-10-22 22:26:00','question_paper/APW P&C - 1.pdf','<p>Permutation and Combination APW-1</p>',NULL,NULL,'permutation-and-combination-apw',NULL,NULL,87,28,NULL,NULL,NULL,NULL,NULL,5,1,1,'2022-10-22 16:57:08','2022-10-27 13:52:55',NULL),(379,'Wave Optics DPP-1','2022-10-22 22:29:00','question_paper/Wave Optics DPP 1.pdf','<p>Wave Optics DPP-1</p>',NULL,NULL,'wave-optics-dpp-1',NULL,NULL,85,26,NULL,NULL,NULL,NULL,NULL,5,1,NULL,'2022-10-22 17:02:02','2022-10-22 17:02:02',NULL),(380,'Permutation and Combination DPP-10','2022-10-22 22:33:00','question_paper/P & C DPP-10.pdf','<p>Permutation and Combination DPP-10</p>',NULL,NULL,'permutation-and-combination-dpp-10',NULL,NULL,85,28,NULL,NULL,NULL,NULL,NULL,5,1,NULL,'2022-10-22 17:07:59','2022-10-22 17:07:59',NULL),(381,'Chemical Bonding and Molecular Structure DPP-3','2022-10-24 14:29:00','question_paper/Chemical Bonding DPP-3 (VSEPR Theory & Shape of Molecules).pdf','<p>Chemical Bonding and Molecular Structure DPP-3</p>',NULL,NULL,'chemical-bonding-and-molecular-structure-dpp-3',NULL,NULL,85,27,NULL,NULL,NULL,NULL,NULL,5,1,NULL,'2022-10-24 09:01:09','2022-10-24 09:01:09',NULL),(382,'Wave Optics DPP-2','2022-10-24 15:39:00','question_paper/Wave Optics (Polarisation)DPP 2.pdf','<p>Wave Optics DPP-2</p>',NULL,NULL,'wave-optics-dpp-2',NULL,NULL,85,26,NULL,NULL,NULL,NULL,NULL,5,1,NULL,'2022-10-24 10:12:21','2022-10-24 10:12:21',NULL),(383,'Wave Optics DPP-3','2022-10-24 15:42:00','question_paper/Wave Optics (Polarisation)DPP 3.pdf','<p>Wave Optics DPP-3</p>',NULL,NULL,'wave-optics-dpp-3',NULL,NULL,85,26,NULL,NULL,NULL,NULL,NULL,5,1,NULL,'2022-10-24 10:13:14','2022-10-24 10:13:14',NULL),(384,'Vector Algebra APW','2022-10-24 15:44:00','question_paper/Coming soon....pdf','<p>Vector Algebra APW-1</p>',NULL,NULL,'vector-algebra-apw',NULL,NULL,87,28,NULL,NULL,NULL,NULL,NULL,5,1,NULL,'2022-10-24 10:15:32','2022-10-24 10:15:32',NULL),(385,'Centre of Mass DPP-3','2022-10-24 16:04:00','question_paper/COM DPP 3.pdf','<p>Centre of Mass DPP-3</p>',NULL,NULL,'centre-of-mass-dpp-3',NULL,NULL,85,26,NULL,NULL,NULL,NULL,NULL,5,1,1,'2022-10-24 10:34:23','2022-10-24 11:05:57',NULL),(386,'Permutation and Combination DPP-11','2022-10-27 18:46:00','question_paper/P & C DPP-11.pdf','<p>Permutation and Combination DPP-11</p>',NULL,NULL,'permutation-and-combination-dpp-11',NULL,NULL,85,28,NULL,NULL,NULL,NULL,NULL,5,1,1,'2022-10-27 13:16:37','2022-10-27 13:45:59',NULL),(387,'Permutation and Combination DPP-12','2022-10-27 18:47:00','question_paper/P & C DPP-12.pdf','<p>Permutation and Combination DPP-12</p>',NULL,NULL,'permutation-and-combination-dpp-12',NULL,NULL,85,28,NULL,NULL,NULL,NULL,NULL,5,1,1,'2022-10-27 13:17:24','2022-10-27 13:46:17',NULL),(388,'Permutation and Combination DPP-13','2022-10-27 18:47:00','question_paper/P & C DPP-13.pdf','<p>Permutation and Combination DPP-13</p>',NULL,NULL,'permutation-and-combination-dpp-13',NULL,NULL,85,28,NULL,NULL,NULL,NULL,NULL,5,1,1,'2022-10-27 13:18:12','2022-10-27 13:46:37',NULL),(389,'Permutation and Combination apw','2022-10-27 19:17:00',NULL,'<p>Permutation and Combination apw</p>',NULL,NULL,'permutation-and-combination-apw',NULL,NULL,87,28,NULL,NULL,NULL,NULL,NULL,5,1,NULL,'2022-10-27 13:47:58','2022-10-27 13:48:22','2022-10-27 13:48:22'),(390,'Chemical Bonding and Molecular Structure DPP-4','2022-10-29 21:33:00','question_paper/Chemical Bonding DPP-4 (D.M, Resonance, Fajans Rule).pdf','<p>Chemical Bonding and Molecular Structure DPP-4</p>',NULL,NULL,'chemical-bonding-and-molecular-structure-dpp-4',NULL,NULL,85,27,NULL,NULL,NULL,NULL,NULL,5,1,1,'2022-10-29 16:06:06','2022-10-29 16:07:58',NULL),(391,'Chemical Bonding and Molecular Structure DPP-5','2022-10-29 21:36:00','question_paper/Chemical Bonding DPP-5.pdf','<p>Chemical Bonding and Molecular Structure DPP-5</p>',NULL,NULL,'chemical-bonding-and-molecular-structure-dpp-5',NULL,NULL,85,27,NULL,NULL,NULL,NULL,NULL,5,1,NULL,'2022-10-29 16:07:20','2022-10-29 16:07:20',NULL),(392,'Chemical Bonding and Molecular Structure DPP-6','2022-10-29 21:38:00','question_paper/Chemical Bonding DPP-6.pdf','<p>Chemical Bonding and Molecular Structure DPP-6</p>',NULL,NULL,'chemical-bonding-and-molecular-structure-dpp-6',NULL,NULL,85,27,NULL,NULL,NULL,NULL,NULL,5,1,NULL,'2022-10-29 16:08:53','2022-10-29 16:08:53',NULL),(393,'Chemical Bonding and Molecular Structure DPP-7','2022-10-29 21:39:00','question_paper/Chemical Bonding DPP-7.pdf','<p>Chemical Bonding and Molecular Structure DPP-7</p>',NULL,NULL,'chemical-bonding-and-molecular-structure-dpp-7',NULL,NULL,85,27,NULL,NULL,NULL,NULL,NULL,5,1,NULL,'2022-10-29 16:10:00','2022-10-29 16:10:00',NULL),(394,'Permutation and Combination DPP-14','2022-10-29 21:46:00','question_paper/P & C DPP-14.pdf','<p>Permutation and Combination DPP-14</p>',NULL,NULL,'permutation-and-combination-dpp-14',NULL,NULL,85,28,NULL,NULL,NULL,NULL,NULL,5,1,1,'2022-10-29 16:17:13','2022-10-29 16:20:19',NULL),(395,'Permutation and Combination DPP-15','2022-10-29 21:47:00','question_paper/P & C DPP-15.pdf','<p>Permutation and Combination DPP-15</p>',NULL,NULL,'permutation-and-combination-dpp-15',NULL,NULL,85,28,NULL,NULL,NULL,NULL,NULL,5,1,NULL,'2022-10-29 16:19:59','2022-10-29 16:19:59',NULL),(396,'Permutation and Combination DPP-16','2022-10-29 21:50:00','question_paper/P & C DPP-16.pdf','<p>Permutation and Combination DPP-16</p>',NULL,NULL,'permutation-and-combination-dpp-16',NULL,NULL,85,28,NULL,NULL,NULL,NULL,NULL,5,1,NULL,'2022-10-29 16:21:18','2022-10-29 16:21:18',NULL),(397,'Chemical Bonding and Molecular Structure DPP-8','2022-10-31 02:00:00','question_paper/Chemical Bonding DPP-8.pdf','<p>Chemical Bonding and Molecular Structure DPP-8</p>',NULL,NULL,'chemical-bonding-and-molecular-structure-dpp-8',NULL,NULL,85,27,NULL,NULL,NULL,NULL,NULL,5,1,NULL,'2022-10-30 20:30:42','2022-10-30 20:30:42',NULL),(398,'Chemical Bonding and Molecular Structure DPP-9','2022-10-31 02:01:00','question_paper/Chemical Bonding DPP-9.pdf','<p>Chemical Bonding and Molecular Structure DPP-9</p>',NULL,NULL,'chemical-bonding-and-molecular-structure-dpp-9',NULL,NULL,85,27,NULL,NULL,NULL,NULL,NULL,5,1,NULL,'2022-10-30 20:31:41','2022-10-30 20:31:41',NULL),(399,'Chemical Bonding and Molecular Structure DPP-10','2022-10-31 02:02:00','question_paper/Chemical Bonding DPP-10.pdf','<p>Chemical Bonding and Molecular Structure DPP-10</p>',NULL,NULL,'chemical-bonding-and-molecular-structure-dpp-10',NULL,NULL,85,27,NULL,NULL,NULL,NULL,NULL,5,1,NULL,'2022-10-30 20:32:37','2022-10-30 20:32:37',NULL),(400,'Permutation and Combination DPP-17','2022-10-31 02:05:00','question_paper/P & C DPP-17.pdf','<p>Permutation and Combination DPP-17</p>',NULL,NULL,'permutation-and-combination-dpp-17',NULL,NULL,85,28,NULL,NULL,NULL,NULL,NULL,5,1,NULL,'2022-10-30 20:35:38','2022-10-30 20:35:38',NULL),(401,'Permutation and Combination DPP-18','2022-10-31 02:06:00','question_paper/P & C DPP-18.pdf','<p>Permutation and Combination DPP-18</p>',NULL,NULL,'permutation-and-combination-dpp-18',NULL,NULL,85,28,NULL,NULL,NULL,NULL,NULL,5,1,NULL,'2022-10-30 20:36:31','2022-10-30 20:36:31',NULL),(402,'Permutation and Combination DPP-19','2022-10-31 02:07:00','question_paper/P & C DPP-19.pdf','<p>Permutation and Combination DPP-19</p>',NULL,NULL,'permutation-and-combination-dpp-19',NULL,NULL,85,28,NULL,NULL,NULL,NULL,NULL,5,1,NULL,'2022-10-30 20:37:25','2022-10-30 20:37:25',NULL),(403,'Permutation and Combination DPP-20','2022-10-31 02:08:00','question_paper/P & C DPP-20.pdf','<p>Permutation and Combination DPP-20</p>',NULL,NULL,'permutation-and-combination-dpp-20',NULL,NULL,85,28,NULL,NULL,NULL,NULL,NULL,5,1,NULL,'2022-10-30 20:38:15','2022-10-30 20:38:15',NULL),(404,'Co-ordination Compound DPP-1','2022-11-03 21:15:00','question_paper/CC-1.pdf','<p>Co-ordination Compound DPP-1</p>',NULL,NULL,'co-ordination-compound-dpp-1',NULL,NULL,85,27,NULL,NULL,NULL,NULL,NULL,5,1,NULL,'2022-11-03 15:55:59','2022-11-03 15:55:59',NULL),(405,'Co-ordination Compound DPP-2','2022-11-03 21:28:00','question_paper/CC-2.pdf','<p>Co-ordination Compound DPP-2</p>',NULL,NULL,'co-ordination-compound-dpp-2',NULL,NULL,85,27,NULL,NULL,NULL,NULL,NULL,5,1,NULL,'2022-11-03 15:58:20','2022-11-03 15:58:20',NULL),(406,'Co-ordination Compound DPP-3','2022-11-03 21:29:00','question_paper/CC-3.pdf','<p>Co-ordination Compound DPP-3</p>',NULL,NULL,'co-ordination-compound-dpp-3',NULL,NULL,85,27,NULL,NULL,NULL,NULL,NULL,5,1,NULL,'2022-11-03 16:00:03','2022-11-03 16:00:03',NULL),(407,'Co-ordination Compound DPP-4','2022-11-03 21:33:00','question_paper/CC-4.pdf','<p>Co-ordination Compound DPP-4</p>',NULL,NULL,'co-ordination-compound-dpp-4',NULL,NULL,85,27,NULL,NULL,NULL,NULL,NULL,5,1,NULL,'2022-11-03 16:03:43','2022-11-03 16:03:43',NULL),(408,'Co-ordination Compound DPP-5','2022-11-03 21:34:00','question_paper/CC-5.pdf','<p>Co-ordination Compound DPP-5</p>',NULL,NULL,'co-ordination-compound-dpp-5',NULL,NULL,85,27,NULL,NULL,NULL,NULL,NULL,5,1,NULL,'2022-11-03 16:04:32','2022-11-03 16:04:32',NULL),(409,'Binomial Theorem DPP-1','2022-11-04 12:31:00','question_paper/BT DPP - 1.pdf','<p>Binomial Theorem DPP-1</p>',NULL,NULL,'binomial-theorem-dpp-1',NULL,NULL,85,28,NULL,NULL,NULL,NULL,NULL,5,1,1,'2022-11-04 07:01:45','2022-11-04 07:05:58',NULL),(410,'Binomial Theorem DPP-2','2022-11-04 12:32:00','question_paper/BT DPP - 2.pdf','<p>Binomial Theorem DPP-2</p>',NULL,NULL,'binomial-theorem-dpp-2',NULL,NULL,85,28,NULL,NULL,NULL,NULL,NULL,5,1,1,'2022-11-04 07:02:49','2022-11-04 07:06:20',NULL),(411,'Co-ordination Compound DPP-6','2022-11-06 10:14:00','question_paper/CC-6.pdf','<p>Co-ordination Compound DPP-6</p>',NULL,NULL,'co-ordination-compound-dpp-6',NULL,NULL,85,27,NULL,NULL,NULL,NULL,NULL,5,1,NULL,'2022-11-06 04:48:45','2022-11-06 04:48:45',NULL),(412,'Co-ordination Compound DPP-7','2022-11-06 10:25:00','question_paper/CC-7.pdf','<p>Co-ordination Compound DPP-7</p>',NULL,NULL,'co-ordination-compound-dpp-7',NULL,NULL,85,27,NULL,NULL,NULL,NULL,NULL,5,1,NULL,'2022-11-06 04:55:28','2022-11-06 04:55:28',NULL),(413,'Co-ordination Compound DPP-8','2022-11-06 10:26:00','question_paper/CC-8.pdf','<p>Co-ordination Compound DPP-8</p>',NULL,NULL,'co-ordination-compound-dpp-8',NULL,NULL,85,27,NULL,NULL,NULL,NULL,NULL,5,1,NULL,'2022-11-06 04:56:19','2022-11-06 04:56:19',NULL),(414,'Co-ordination Compound DPP-9','2022-11-06 10:31:00','question_paper/CC-9.pdf','<p>Co-ordination Compound DPP-9</p>',NULL,NULL,'co-ordination-compound-dpp-9',NULL,NULL,85,27,NULL,NULL,NULL,NULL,NULL,5,1,NULL,'2022-11-06 05:02:21','2022-11-06 05:02:21',NULL),(415,'Co-ordination Compound DPP-10','2022-11-06 10:34:00','question_paper/CC-10.pdf','<p>Co-ordination Compound DPP-10</p>',NULL,NULL,'co-ordination-compound-dpp-10',NULL,NULL,85,27,NULL,NULL,NULL,NULL,NULL,5,1,NULL,'2022-11-06 05:05:07','2022-11-06 05:05:07',NULL),(416,'Co-ordination Compound DPP-11','2022-11-06 10:36:00','question_paper/CC-11.pdf','<p>Co-ordination Compound DPP-11</p>',NULL,NULL,'co-ordination-compound-dpp-11',NULL,NULL,85,27,NULL,NULL,NULL,NULL,NULL,5,1,NULL,'2022-11-06 05:07:58','2022-11-06 05:07:58',NULL),(417,'State of Matter DPP-1','2022-11-06 10:42:00','question_paper/State of Matter DPP-1.pdf','<p>State of Matter DPP-1</p>',NULL,NULL,'state-of-matter-dpp-1',NULL,NULL,85,27,NULL,NULL,NULL,NULL,NULL,5,1,NULL,'2022-11-06 05:13:15','2022-11-06 05:13:15',NULL),(418,'Matrices and Determinant DPP-1','2022-11-06 11:56:00','question_paper/MD DPP-1.pdf','<p>Matrices and Determinant DPP-1</p>',NULL,NULL,'matrices-and-determinant-dpp-1',NULL,NULL,85,28,NULL,NULL,NULL,NULL,NULL,5,1,1,'2022-11-06 06:26:52','2022-11-06 06:29:26',NULL),(419,'Matrices and Determinant DPP-2','2022-11-06 11:57:00','question_paper/MD DPP-2.pdf','<p>Matrices and Determinant DPP-2</p>',NULL,NULL,'matrices-and-determinant-dpp-2',NULL,NULL,85,28,NULL,NULL,NULL,NULL,NULL,5,1,1,'2022-11-06 06:27:32','2022-11-06 06:29:46',NULL),(420,'Matrices and Determinant DPP-3','2022-11-06 11:58:00','question_paper/MD DPP-3.pdf','<p>Matrices and Determinant DPP-3</p>',NULL,NULL,'matrices-and-determinant-dpp-3',NULL,NULL,85,28,NULL,NULL,NULL,NULL,NULL,5,1,1,'2022-11-06 06:28:17','2022-11-06 06:30:05',NULL),(421,'Matrices and Determinant DPP-4','2022-11-06 12:00:00','question_paper/MD DPP-4.pdf','<p>Matrices and Determinant DPP-4</p>',NULL,NULL,'matrices-and-determinant-dpp-4',NULL,NULL,85,28,NULL,NULL,NULL,NULL,NULL,5,1,NULL,'2022-11-06 06:31:14','2022-11-06 06:31:14',NULL),(422,'Matrices and Determinant DPP-5','2022-11-06 12:01:00','question_paper/MD DPP-5.pdf','<p>Matrices and Determinant DPP-5</p>',NULL,NULL,'matrices-and-determinant-dpp-5',NULL,NULL,85,28,NULL,NULL,NULL,NULL,NULL,5,1,NULL,'2022-11-06 06:32:04','2022-11-06 06:32:04',NULL),(423,'Binomial Theorem DPP-3','2022-11-06 12:02:00','question_paper/BT DPP - 3.pdf','<p>Binomial Theorem DPP-3</p>',NULL,NULL,'binomial-theorem-dpp-3',NULL,NULL,85,28,NULL,NULL,NULL,NULL,NULL,5,1,1,'2022-11-06 06:32:59','2022-11-09 09:38:00',NULL),(424,'Binomial Theorem DPP-4','2022-11-06 12:04:00','question_paper/BT DPP - 4.pdf','<p>Binomial Theorem DPP-4</p>',NULL,NULL,'binomial-theorem-dpp-4',NULL,NULL,85,28,NULL,NULL,NULL,NULL,NULL,5,1,1,'2022-11-06 06:34:30','2022-11-06 06:58:05',NULL),(425,'Differential Equation APW','2022-11-06 12:16:00','question_paper/DIFFERENTIAL EQUATION Final.pdf','<p>Differential Equation APW</p>',NULL,NULL,'differential-equation-apw',NULL,NULL,87,28,NULL,NULL,NULL,NULL,NULL,5,1,1,'2022-11-06 06:52:17','2022-12-15 19:01:33',NULL),(426,'Matrices and Determinant DPP-6','2022-11-07 19:16:00','question_paper/MD DPP-6.pdf','<p>Matrices and Determinant DPP-6</p>',NULL,NULL,'matrices-and-determinant-dpp-6',NULL,NULL,85,28,NULL,NULL,NULL,NULL,NULL,5,1,NULL,'2022-11-07 13:46:49','2022-11-07 13:46:49',NULL),(427,'Matrices and Determinant DPP-7','2022-11-07 19:17:00','question_paper/MD DPP-7.pdf','<p>Matrices and Determinant DPP-7</p>',NULL,NULL,'matrices-and-determinant-dpp-7',NULL,NULL,85,28,NULL,NULL,NULL,NULL,NULL,5,1,NULL,'2022-11-07 13:47:44','2022-11-07 13:47:44',NULL),(428,'Matrices and Determinant DPP-8','2022-11-07 19:18:00','question_paper/MD DPP-8.pdf','<p>Matrices and Determinant DPP-8</p>',NULL,NULL,'matrices-and-determinant-dpp-8',NULL,NULL,85,28,NULL,NULL,NULL,NULL,NULL,5,1,NULL,'2022-11-07 13:48:44','2022-11-07 13:48:44',NULL),(429,'Matrices and Determinant DPP-9','2022-11-07 19:20:00','question_paper/MD DPP-9.pdf','<p>Matrices and Determinant DPP-9</p>',NULL,NULL,'matrices-and-determinant-dpp-9',NULL,NULL,85,28,NULL,NULL,NULL,NULL,NULL,5,1,NULL,'2022-11-07 13:50:39','2022-11-07 13:50:39',NULL),(430,'Matrices and Determinant DPP-10','2022-11-07 19:23:00','question_paper/MD DPP-10.pdf','<p>Matrices and Determinant DPP-10</p>',NULL,NULL,'matrices-and-determinant-dpp-10',NULL,NULL,85,28,NULL,NULL,NULL,NULL,NULL,5,1,NULL,'2022-11-07 13:53:56','2022-11-07 13:53:56',NULL),(431,'KTG-APS-1','2022-11-07 19:34:00','question_paper/KTG - 1.pdf','<p>KTG-1</p>',NULL,NULL,'ktg-aps-1',NULL,NULL,0,26,NULL,NULL,NULL,NULL,NULL,5,1,1,'2022-11-07 14:05:14','2022-11-07 14:06:00',NULL),(432,'KTG APS-2','2022-11-07 19:37:00','question_paper/KTG - 2.pdf','<p>KTG APS-2</p>',NULL,NULL,'ktg-aps-2',NULL,NULL,0,26,NULL,NULL,NULL,NULL,NULL,5,1,NULL,'2022-11-07 14:07:54','2022-11-07 14:07:54',NULL),(436,'Binomial Theorem DPP-5','2022-11-14 01:10:00','question_paper/BT DPP - 5.pdf','<p>Binomial Theorem DPP-5</p>',NULL,NULL,'binomial-theorem-dpp-5',NULL,NULL,85,28,NULL,NULL,NULL,NULL,NULL,5,1,NULL,'2022-11-13 19:40:30','2022-11-13 19:40:30',NULL),(433,'Mechanics APS-1','2022-11-09 00:59:00','question_paper/Mechanics - 1.pdf','<p>Mechanics APS-1</p>',NULL,NULL,'mechanics-aps-1',NULL,NULL,0,26,NULL,NULL,NULL,NULL,NULL,5,1,NULL,'2022-11-08 19:29:52','2022-11-08 19:29:52',NULL),(434,'Modern Physics APS-1','2022-11-09 01:00:00','question_paper/Modern Physics -1.pdf','<p>Modern Physics APS-1</p>',NULL,NULL,'modern-physics-aps-1',NULL,NULL,0,26,NULL,NULL,NULL,NULL,NULL,5,1,NULL,'2022-11-08 19:31:18','2022-11-08 19:31:18',NULL),(435,'Probability Class Patrice Problems','2022-11-09 15:05:00','question_paper/teaching notes prob.pdf','<p>Probability Class Patrice Problems </p>',NULL,NULL,'probability-class-patrice-problems',NULL,NULL,85,28,NULL,NULL,NULL,NULL,NULL,5,1,1,'2022-11-09 09:37:13','2022-11-09 09:38:45',NULL),(437,'Binomial Theorem DPP-6','2022-11-14 01:11:00','question_paper/BT DPP - 6.pdf','<p>Binomial Theorem DPP-6</p>',NULL,NULL,'binomial-theorem-dpp-6',NULL,NULL,85,28,NULL,NULL,NULL,NULL,NULL,5,1,NULL,'2022-11-13 19:41:31','2022-11-13 19:41:31',NULL),(438,'Binomial Theorem DPP-7','2022-11-14 01:11:00','question_paper/BT DPP - 7.pdf','<p>Binomial Theorem DPP-7</p>',NULL,NULL,'binomial-theorem-dpp-7',NULL,NULL,85,28,NULL,NULL,NULL,NULL,NULL,5,1,NULL,'2022-11-13 19:42:12','2022-11-13 19:42:12',NULL),(439,'State of Matter DPP-2','2022-11-16 20:32:00','question_paper/State of Matter DPP-2.pdf','<p>State of Matter DPP-2</p>',NULL,NULL,'state-of-matter-dpp-2',NULL,NULL,85,27,NULL,NULL,NULL,NULL,NULL,5,1,1,'2022-11-16 15:03:01','2022-11-16 15:09:37',NULL),(440,'State of Matter DPP-3','2022-11-16 20:33:00','question_paper/State of Matter DPP-3.pdf','<p>State of Matter DPP-3</p>',NULL,NULL,'state-of-matter-dpp-3',NULL,NULL,85,27,NULL,NULL,NULL,NULL,NULL,5,1,1,'2022-11-16 15:04:06','2022-11-16 15:09:56',NULL),(441,'State of Matter DPP-4','2022-11-16 20:34:00','question_paper/State of Matter DPP-4.pdf','<p>State of Matter DPP-4</p>',NULL,NULL,'state-of-matter-dpp-4',NULL,NULL,85,27,NULL,NULL,NULL,NULL,NULL,5,1,1,'2022-11-16 15:04:50','2022-11-16 15:10:35',NULL),(442,'Oblique Conic APS-1','2022-11-19 15:32:00','question_paper/Oblique Conic -1.pdf','<p>Oblique Conic APS-1</p>',NULL,NULL,'oblique-conic-aps-1',NULL,NULL,0,28,NULL,NULL,NULL,NULL,NULL,5,1,NULL,'2022-11-19 10:03:40','2022-11-19 10:03:40',NULL),(443,'Rectangular System (Centres of triangle) DPP-3','2022-11-19 20:53:00','question_paper/Rectangular System DPP-3.pdf','<p>Rectangular System (Centres of triangle) DPP-3</p>',NULL,NULL,'rectangular-system-centres-of-triangle-dpp-3',NULL,NULL,85,28,NULL,NULL,NULL,NULL,NULL,5,1,1,'2022-11-19 15:24:05','2022-12-21 17:28:34',NULL),(444,'Rectangular System (Locus) DPP-6','2022-11-19 20:55:00','question_paper/Rectangular System DPP-6.pdf','<p>Rectangular System (Locus) DPP-6</p>',NULL,NULL,'rectangular-system-locus-dpp-6',NULL,NULL,85,28,NULL,NULL,NULL,NULL,NULL,5,1,1,'2022-11-19 15:25:53','2022-12-21 17:29:36',NULL),(445,'Binomial Theorem DPP-8','2022-11-19 21:04:00','question_paper/BT DPP - 8.pdf','<p>Binomial Theorem DPP-8</p>',NULL,NULL,'binomial-theorem-dpp-8',NULL,NULL,85,28,NULL,NULL,NULL,NULL,NULL,5,1,1,'2022-11-19 15:34:18','2022-11-19 15:41:19',NULL),(446,'Binomial Theorem DPP-9','2022-11-19 21:04:00','question_paper/BT DPP - 9.pdf','<p>Binomial Theorem DPP-9</p>',NULL,NULL,'binomial-theorem-dpp-9',NULL,NULL,85,28,NULL,NULL,NULL,NULL,NULL,5,1,1,'2022-11-19 15:34:57','2022-12-21 17:33:03',NULL),(447,'Binomial Theorem DPP-10','2022-11-19 21:05:00','question_paper/BT DPP - 10.pdf','<p>Binomial Theorem DPP-10</p>',NULL,NULL,'binomial-theorem-dpp-10',NULL,NULL,85,28,NULL,NULL,NULL,NULL,NULL,5,1,1,'2022-11-19 15:35:47','2022-12-21 17:33:25',NULL),(448,'Binomial Theorem DPP-11','2022-11-19 21:06:00','question_paper/BT DPP - 11.pdf','<p>Binomial Theorem DPP-11</p>',NULL,NULL,'binomial-theorem-dpp-11',NULL,NULL,85,28,NULL,NULL,NULL,NULL,NULL,5,1,1,'2022-11-19 15:37:05','2022-11-19 15:41:37',NULL),(449,'Oblique Conic APS-2','2022-11-21 20:45:00','question_paper/Oblique Conic -2.pdf','<p>Oblique Conic APS-2</p>',NULL,NULL,'oblique-conic-aps-2',NULL,NULL,0,28,NULL,NULL,NULL,NULL,NULL,5,1,NULL,'2022-11-21 15:21:43','2022-11-21 15:21:43',NULL),(450,'State of Matter DPP-5','2022-11-23 21:26:00','question_paper/State of Matter DPP-5.pdf','<p>State of Matter DPP-5</p>',NULL,NULL,'state-of-matter-dpp-5',NULL,NULL,85,27,NULL,NULL,NULL,NULL,NULL,5,1,1,'2022-11-23 15:56:33','2022-11-23 15:59:37',NULL),(451,'State of Matter DPP-6','2022-11-23 21:26:00',NULL,'<p>State of Matter DPP-6</p>',NULL,NULL,'state-of-matter-dpp-6',NULL,NULL,85,27,NULL,NULL,NULL,NULL,NULL,5,1,NULL,'2022-11-23 15:57:42','2022-11-23 15:57:42',NULL),(452,'Sequence and Series DPP-1','2022-12-01 20:37:00','question_paper/Sequence and Series DPP1.pdf','<p>Sequence and Series DPP-1</p>',NULL,NULL,'sequence-and-series-dpp-1',NULL,NULL,85,28,NULL,NULL,NULL,NULL,NULL,5,1,1,'2022-12-01 15:07:19','2022-12-01 15:25:21',NULL),(453,'Sequence and Series DPP-2','2022-12-01 20:37:00','question_paper/Sequence and Series DPP2.pdf','<p>Sequence and Series DPP-2</p>',NULL,NULL,'sequence-and-series-dpp-2',NULL,NULL,85,28,NULL,NULL,NULL,NULL,NULL,5,1,1,'2022-12-01 15:08:05','2022-12-01 15:25:39',NULL),(454,'Sequence and Series DPP-3','2022-12-01 20:38:00','question_paper/Sequence and Series DPP3.pdf','<p>Sequence and Series DPP-3</p>',NULL,NULL,'sequence-and-series-dpp-3',NULL,NULL,85,28,NULL,NULL,NULL,NULL,NULL,5,1,1,'2022-12-01 15:08:55','2022-12-01 15:26:01',NULL),(455,'Properties of Triangle (sin Rule) DPP-1','2022-12-01 20:46:00','question_paper/POT-DPP1.pdf','<p>Properties of Triangle (sin Rule) DPP-1 </p>',NULL,NULL,'properties-of-triangle-sin-rule-dpp-1',NULL,NULL,85,28,NULL,NULL,NULL,NULL,NULL,5,1,1,'2022-12-01 15:16:45','2022-12-01 15:39:12',NULL),(456,'State of Matter DPP-7','2022-12-01 20:51:00','question_paper/State of Matter DPP-7.pdf','<p>State of Matter DPP-7</p>',NULL,NULL,'state-of-matter-dpp-7',NULL,NULL,85,27,NULL,NULL,NULL,NULL,NULL,5,1,NULL,'2022-12-01 15:22:21','2022-12-01 15:22:21',NULL),(457,'Organic Chemistry DPP-1','2022-12-01 20:53:00','question_paper/Organic Chemistry DPP-1.pdf','<p>Organic Chemistry DPP-1</p>',NULL,NULL,'organic-chemistry-dpp-1',NULL,NULL,85,27,NULL,NULL,NULL,NULL,NULL,5,1,NULL,'2022-12-01 15:23:37','2022-12-01 15:23:37',NULL),(458,'Organic Chemistry DPP-2','2022-12-01 20:56:00','question_paper/Organic Chemistry DPP-2.pdf','<p>Organic Chemistry DPP-2</p>',NULL,NULL,'organic-chemistry-dpp-2',NULL,NULL,85,27,NULL,NULL,NULL,NULL,NULL,5,1,NULL,'2022-12-01 15:26:57','2022-12-01 15:26:57',NULL),(459,'Quadratic Equation WRAP UP','2022-12-04 12:41:00','question_paper/Quadratic Equation-WRAP UP.pdf','<p>Quadratic Equation WRAP UP</p>',NULL,NULL,'quadratic-equation-wrap-up',NULL,NULL,0,28,NULL,NULL,NULL,NULL,NULL,5,1,1,'2022-12-04 07:12:52','2022-12-27 19:52:32',NULL),(460,'Sequence and Series DPP-4','2022-12-04 16:05:00','question_paper/Sequence and Series DPP4.pdf','<p>Sequence and Series DPP-4</p>',NULL,NULL,'sequence-and-series-dpp-4',NULL,NULL,85,28,NULL,NULL,NULL,NULL,NULL,5,1,1,'2022-12-04 10:36:32','2022-12-04 10:39:42',NULL),(461,'Sequence and Series DPP-5','2022-12-04 16:07:00','question_paper/Sequence and Series DPP5.pdf','<p>Sequence and Series DPP-5</p>',NULL,NULL,'sequence-and-series-dpp-5',NULL,NULL,85,28,NULL,NULL,NULL,NULL,NULL,5,1,1,'2022-12-04 10:37:22','2022-12-04 10:40:03',NULL),(462,'Properties of Triangle (Projection formula, Tangent Rule) DPP-3','2022-12-04 16:08:00','question_paper/POT-DPP3.pdf','<p>Properties of Triangle (Projection formula, Tangent Rule) DPP-3</p>',NULL,NULL,'properties-of-triangle-projection-formula-tangent-rule-dpp-3',NULL,NULL,85,28,NULL,NULL,NULL,NULL,NULL,5,1,NULL,'2022-12-04 10:38:57','2022-12-04 10:38:57',NULL),(463,'Sequence and Series DPP-6','2022-12-04 16:10:00','question_paper/Sequence and Series DPP6.pdf','<p>Sequence and Series DPP-6</p>',NULL,NULL,'sequence-and-series-dpp-6',NULL,NULL,85,28,NULL,NULL,NULL,NULL,NULL,5,1,1,'2022-12-04 10:41:32','2022-12-06 15:59:23',NULL),(464,'Alkyl Halide WRAP UP-1','2022-12-04 20:51:00','question_paper/2 Alkyl Halide.pdf','<p>Alkyl Halide WRAP UP-1</p>',NULL,NULL,'alkyl-halide-wrap-up-1',NULL,NULL,0,27,NULL,NULL,NULL,NULL,NULL,5,1,NULL,'2022-12-04 15:23:17','2022-12-04 15:23:17',NULL),(465,'Sequence and Series WRAP UP','2022-12-04 20:54:00','question_paper/2 Sequence and Series.pdf','<p>Sequence and Series WRAP UP</p>',NULL,NULL,'sequence-and-series-wrap-up',NULL,NULL,0,28,NULL,NULL,NULL,NULL,NULL,5,1,1,'2022-12-04 15:44:33','2022-12-27 19:54:27',NULL),(466,'Solution and colligative Properties WRAP UP-1','2022-12-06 14:57:00','question_paper/1 Liquid Solution.pdf','<p>Solution and colligative Properties WRAP UP-1</p>',NULL,NULL,'solution-and-colligative-properties-wrap-up-1',NULL,NULL,0,27,NULL,NULL,NULL,NULL,NULL,5,1,NULL,'2022-12-06 09:30:27','2022-12-06 09:30:27',NULL),(467,'3 d & f block element & Chemical Coordination WRAP UP-1','2022-12-06 15:01:00','question_paper/3 d & f block element & Chemical Coordination.pdf','<p>3 d & f block element & Chemical Coordination WRAP UP-1</p>',NULL,NULL,'3-d-f-block-element-chemical-coordination-wrap-up-1',NULL,NULL,0,27,NULL,NULL,NULL,NULL,NULL,5,1,NULL,'2022-12-06 09:31:34','2022-12-06 09:31:34',NULL),(506,'Ellipse and Hyperbola WRAP UP','2022-12-28 18:30:00','question_paper/10 Ellipse and Hyperbola.pdf','<p>Ellipse and Hyperbola WRAP UP</p>',NULL,NULL,'ellipse-and-hyperbola-wrap-up',NULL,NULL,0,28,NULL,NULL,NULL,NULL,NULL,5,1,1,'2022-12-28 13:01:17','2023-01-06 16:43:11',NULL),(468,'Thermochemistry DPP-1','2022-12-06 21:18:00','question_paper/Thermodynamics DPP-1.pdf','<p>Thermochemistry DPP-1</p>',NULL,NULL,'thermochemistry-dpp-1',NULL,NULL,85,27,NULL,NULL,NULL,NULL,NULL,5,1,1,'2022-12-06 15:48:51','2022-12-06 15:54:31',NULL),(469,'Sequence and Series DPP-7','2022-12-06 21:25:00','question_paper/Sequence and Series DPP7.pdf','<p>Sequence and Series DPP-7</p>',NULL,NULL,'sequence-and-series-dpp-7',NULL,NULL,85,28,NULL,NULL,NULL,NULL,NULL,5,1,1,'2022-12-06 15:55:41','2022-12-06 16:04:18',NULL),(470,'Properties of Triangle (Half Angle, Area of Triangle) DPP-4','2022-12-06 21:31:00','question_paper/POT-DPP4.pdf','<p>Properties of Triangle (Half Angle, Area of Triangle) DPP-4</p>',NULL,NULL,'properties-of-triangle-half-angle-area-of-triangle-dpp-4',NULL,NULL,85,28,NULL,NULL,NULL,NULL,NULL,5,1,1,'2022-12-06 16:03:52','2022-12-06 16:08:14',NULL),(471,'Properties of Triangle (cosin Rule) DPP-2','2022-12-07 13:29:00','question_paper/POT-DPP2.pdf','<p>Properties of Triangle (cosin Rule) DPP-2</p>',NULL,NULL,'properties-of-triangle-cosin-rule-dpp-2',NULL,NULL,85,28,NULL,NULL,NULL,NULL,NULL,5,1,NULL,'2022-12-07 07:59:39','2022-12-07 07:59:39',NULL),(472,'Binomial Theorem WRAP UP','2022-12-11 11:30:00','question_paper/3 Binomial Theorem.pdf','<p>Binomial Theorem WRAP UP</p>',NULL,NULL,'binomial-theorem-wrap-up',NULL,NULL,0,28,NULL,NULL,NULL,NULL,NULL,5,1,1,'2022-12-11 06:00:19','2022-12-27 19:54:01',NULL),(473,'Relation and Function WRAP UP','2022-12-11 11:31:00',NULL,'<p>Relation and Function WRAP UP</p>',NULL,NULL,'relation-and-function-wrap-up',NULL,NULL,0,28,NULL,NULL,NULL,NULL,NULL,5,1,1,'2022-12-11 06:01:37','2022-12-27 19:53:17',NULL),(474,'Inverse Trigonometric Function WRAP UP','2022-12-11 11:33:00',NULL,'<p>Inverse Trigonometric Function WRAP UP</p>',NULL,NULL,'inverse-trigonometric-function-wrap-up',NULL,NULL,0,28,NULL,NULL,NULL,NULL,NULL,5,1,1,'2022-12-11 06:03:25','2022-12-27 19:53:41',NULL),(475,'Thermochemistry DPP-2','2022-12-11 18:08:00','question_paper/Thermochemistry DPP-2.pdf','<p>Thermochemistry DPP-2</p>',NULL,NULL,'thermochemistry-dpp-2',NULL,NULL,85,27,NULL,NULL,NULL,NULL,NULL,5,1,NULL,'2022-12-11 12:40:10','2022-12-11 12:40:10',NULL),(476,'Indefinite Integration WRAP UP','2022-12-18 22:32:00','question_paper/Indefinite Integration.pdf','<p>Indefinite Integration WRAP UP</p>',NULL,NULL,'indefinite-integration-wrap-up',NULL,NULL,0,28,NULL,NULL,NULL,NULL,NULL,5,1,1,'2022-12-18 17:03:35','2022-12-27 19:54:47',NULL),(477,'Carbonyl Compounds WRAP UP-1','2022-12-18 22:34:00','question_paper/Carbonyl Compounds.pdf','<p>Carbonyl Compounds WRAP UP-1</p>',NULL,NULL,'carbonyl-compounds-wrap-up-1',NULL,NULL,0,27,NULL,NULL,NULL,NULL,NULL,5,1,NULL,'2022-12-18 17:04:38','2022-12-18 17:04:38',NULL),(478,'Ionic Equilibrium WRAP UP-1','2022-12-18 22:35:00','question_paper/Ionic Equilibrium.pdf','<p>Ionic Equilibrium WRAP UP-1</p>',NULL,NULL,'ionic-equilibrium-wrap-up-1',NULL,NULL,0,27,NULL,NULL,NULL,NULL,NULL,5,1,NULL,'2022-12-18 17:05:54','2022-12-18 17:05:54',NULL),(479,'Magnetic Properties of Material WRAP UP-1','2022-12-18 22:36:00','question_paper/Magnetic Properties of Material.pdf','<p>Magnetic Properties of Material WRAP UP-1</p>',NULL,NULL,'magnetic-properties-of-material-wrap-up-1',NULL,NULL,0,26,NULL,NULL,NULL,NULL,NULL,5,1,NULL,'2022-12-18 17:07:07','2022-12-18 17:07:07',NULL),(480,'Rectangular System (Distance Formula) DPP-1','2022-12-12 15:18:00','question_paper/Rectangular System DPP-1.pdf','<p>Rectangular System (Distance Formula) DPP-1</p>',NULL,NULL,'rectangular-system-distance-formula-dpp-1',NULL,NULL,85,28,NULL,NULL,NULL,NULL,NULL,5,1,1,'2022-12-19 09:48:30','2022-12-21 17:27:23',NULL),(481,'Rectangular System (Section Formula) DPP-2','2022-12-19 15:19:00','question_paper/Rectangular System DPP-2.pdf','<p>Rectangular System (Section Formula) DPP-2</p>',NULL,NULL,'rectangular-system-section-formula-dpp-2',NULL,NULL,85,28,NULL,NULL,NULL,NULL,NULL,5,1,1,'2022-12-19 09:49:28','2022-12-21 17:27:47',NULL),(482,'Rectangular System (Area, Collinearity) DPP-4','2022-12-19 15:21:00','question_paper/Rectangular System DPP-4.pdf','<p>Rectangular System (Area, Collinearity) DPP-4</p>',NULL,NULL,'rectangular-system-area-collinearity-dpp-4',NULL,NULL,85,28,NULL,NULL,NULL,NULL,NULL,5,1,1,'2022-12-19 09:51:45','2022-12-21 17:29:04',NULL),(483,'Rectangular System (Reflection and Transformation) DPP-5','2022-12-19 15:22:00','question_paper/Rectangular System DPP-5.pdf','<p>Rectangular System (Reflection and Transformation) DPP-5</p>',NULL,NULL,'rectangular-system-reflection-and-transformation-dpp-5',NULL,NULL,85,28,NULL,NULL,NULL,NULL,NULL,5,1,1,'2022-12-19 09:52:42','2022-12-21 17:29:22',NULL),(484,'Definite Integration WRAP UP','2022-12-19 20:56:00','question_paper/5 Definite Integration.pdf','<p>Definite Integration WRAP UP</p>',NULL,NULL,'definite-integration-wrap-up',NULL,NULL,0,28,NULL,NULL,NULL,NULL,NULL,5,1,1,'2022-12-19 15:29:05','2022-12-27 19:55:11',NULL),(485,'Polymers & Biomolecules WRAP UP-1','2022-12-19 20:59:00','question_paper/7. Polymers & Biomolecules.pdf','<p>Polymers & Biomolecules WRAP UP-1</p>',NULL,NULL,'polymers-biomolecules-wrap-up-1',NULL,NULL,0,27,NULL,NULL,NULL,NULL,NULL,5,1,NULL,'2022-12-19 15:30:00','2022-12-19 15:30:00',NULL),(486,'Nitrogen Family WRAP UP-1','2022-12-19 21:00:00','question_paper/8. Nitrogen Family.pdf','<p>Nitrogen Family WRAP UP-1</p>',NULL,NULL,'nitrogen-family-wrap-up-1',NULL,NULL,0,27,NULL,NULL,NULL,NULL,NULL,5,1,NULL,'2022-12-19 15:30:52','2022-12-19 15:30:52',NULL),(487,'Electrochemistry WRAP UP-1','2022-12-19 21:01:00','question_paper/9. Electrochemistry.pdf','<p>Electrochemistry WRAP UP-1</p>',NULL,NULL,'electrochemistry-wrap-up-1',NULL,NULL,0,27,NULL,NULL,NULL,NULL,NULL,5,1,NULL,'2022-12-19 15:31:44','2022-12-19 15:31:44',NULL),(488,'Electromagnetic Induction WRAP UP-1','2022-12-19 21:02:00','question_paper/2 Electromagnetic Induction-1.pdf','<p>Electromagnetic Induction WRAP UP-1</p>',NULL,NULL,'electromagnetic-induction-wrap-up-1',NULL,NULL,0,26,NULL,NULL,NULL,NULL,NULL,5,1,NULL,'2022-12-19 15:32:38','2022-12-19 15:32:38',NULL),(489,'Electromagnetic Induction WRAP UP-2','2022-12-19 21:03:00','question_paper/2 Electromagnetic Induction-2.pdf','<p>Electromagnetic Induction WRAP UP-2</p>',NULL,NULL,'electromagnetic-induction-wrap-up-2',NULL,NULL,0,26,NULL,NULL,NULL,NULL,NULL,5,1,1,'2022-12-19 15:33:56','2022-12-21 16:20:25',NULL),(490,'Parabola WRAP UP','2022-12-21 21:44:00','question_paper/6 Parabola.pdf','<p>Parabola WRAP UP</p>',NULL,NULL,'parabola-wrap-up',NULL,NULL,0,28,NULL,NULL,NULL,NULL,NULL,5,1,1,'2022-12-21 16:14:33','2022-12-27 19:55:27',NULL),(491,'Area WRAP UP','2022-12-21 21:45:00','question_paper/7 Area.pdf','<p>Area WRAP UP</p>',NULL,NULL,'area-wrap-up',NULL,NULL,0,28,NULL,NULL,NULL,NULL,NULL,5,1,1,'2022-12-21 16:15:32','2022-12-27 19:55:55',NULL),(492,'Binomial Theorem DPP-12','2022-12-21 23:04:00','question_paper/BT DPP - 12.pdf','<p>Binomial Theorem DPP-12</p>',NULL,NULL,'binomial-theorem-dpp-12',NULL,NULL,85,28,NULL,NULL,NULL,NULL,NULL,5,1,NULL,'2022-12-21 17:34:18','2022-12-21 17:34:18',NULL),(493,'Sequence and Series DPP-8','2022-12-21 23:07:00','question_paper/Sequence and Series DPP8.pdf','<p>Sequence and Series DPP-8</p>',NULL,NULL,'sequence-and-series-dpp-8',NULL,NULL,85,28,NULL,NULL,NULL,NULL,NULL,5,1,1,'2022-12-21 17:37:42','2022-12-21 17:52:35',NULL),(494,'Sequence and Series DPP-9','2022-12-21 23:08:00','question_paper/Sequence and Series DPP9.pdf','<p>Sequence and Series DPP-9</p>',NULL,NULL,'sequence-and-series-dpp-9',NULL,NULL,85,28,NULL,NULL,NULL,NULL,NULL,5,1,1,'2022-12-21 17:38:51','2022-12-21 17:53:02',NULL),(495,'Sequence and Series DPP-10','2022-12-21 23:09:00','question_paper/Sequence and Series DPP10.pdf','<p>Sequence and Series DPP-10</p>',NULL,NULL,'sequence-and-series-dpp-10',NULL,NULL,85,28,NULL,NULL,NULL,NULL,NULL,5,1,1,'2022-12-21 17:39:31','2022-12-21 17:53:27',NULL),(496,'Sequence and Series DPP-11','2022-12-21 23:10:00',NULL,'<p>Sequence and Series DPP-11</p>',NULL,NULL,'sequence-and-series-dpp-11',NULL,NULL,85,28,NULL,NULL,NULL,NULL,NULL,5,1,NULL,'2022-12-21 17:40:36','2022-12-21 17:53:35','2022-12-21 17:53:35'),(497,'Properties of Triangle (Radii) DPP-5','2022-12-21 23:25:00','question_paper/POT-DPP5.pdf','<p>Properties of Triangle (Radii) DPP-5</p>',NULL,NULL,'properties-of-triangle-radii-dpp-5',NULL,NULL,85,28,NULL,NULL,NULL,NULL,NULL,5,1,1,'2022-12-21 17:55:25','2022-12-21 18:14:25',NULL),(498,'Properties of Triangle (Radii) DPP-6','2022-12-21 23:27:00','question_paper/POT-DPP6.pdf','<p>Properties of Triangle (Radii)DPP-6</p>',NULL,NULL,'properties-of-triangle-radii-dpp-6',NULL,NULL,85,28,NULL,NULL,NULL,NULL,NULL,5,1,1,'2022-12-21 17:57:55','2022-12-21 18:14:54',NULL),(499,'Properties of Triangle (Miscellaneous Problems) DPP-7','2022-12-21 23:29:00','question_paper/POT-DPP7.pdf','<p><strong>Properties of Triangle (Miscellaneous Problems) DPP-7</strong></p>',NULL,NULL,'properties-of-triangle-miscellaneous-problems-dpp-7',NULL,NULL,85,28,NULL,NULL,NULL,NULL,NULL,5,1,1,'2022-12-21 17:59:29','2022-12-21 18:15:23',NULL),(500,'Straight Lines WRAP UP','2022-12-25 16:32:00','question_paper/8 STRAIGHT LINES & PAIRS OF LINES.pdf','<p>Straight Lines WRAP UP</p>',NULL,NULL,'straight-lines-wrap-up',NULL,NULL,0,28,NULL,NULL,NULL,NULL,NULL,5,1,1,'2022-12-25 11:04:52','2022-12-27 19:51:53',NULL),(501,'Electromagnetic Wave WRAP UP','2022-12-26 19:07:00','question_paper/Electromagnetic Wave.pdf','<p>Electromagnetic Wave WRAP UP</p>',NULL,NULL,'electromagnetic-wave-wrap-up',NULL,NULL,0,26,NULL,NULL,NULL,NULL,NULL,5,1,NULL,'2022-12-26 13:40:52','2022-12-26 13:40:52',NULL),(502,'Ionic Equilibrium DPP-1','2022-12-26 19:18:00','question_paper/Ionic Equilibrium DPP-1.pdf','<p>Ionic Equilibrium DPP-1</p>',NULL,NULL,'ionic-equilibrium-dpp-1',NULL,NULL,85,27,NULL,NULL,NULL,NULL,NULL,5,1,NULL,'2022-12-26 13:53:52','2022-12-26 13:53:52',NULL),(503,'Circles WRAP UP','2022-12-26 19:34:00','question_paper/8 CIRCLE.pdf','<p>Circles WRAP UP </p>',NULL,NULL,'circles-wrap-up',NULL,NULL,0,28,NULL,NULL,NULL,NULL,NULL,5,1,1,'2022-12-26 14:10:23','2022-12-27 19:51:01',NULL),(504,'Semiconductor WRAP UP','2022-12-26 21:51:00','question_paper/5 Semiconductor.pdf','<p>Semiconductor WRAP UP</p>',NULL,NULL,'semiconductor-wrap-up',NULL,NULL,0,26,NULL,NULL,NULL,NULL,NULL,5,1,NULL,'2022-12-26 16:22:00','2022-12-26 16:22:00',NULL),(505,'Communication WRAP UP','2022-12-26 21:52:00','question_paper/4 Communication.pdf','<p>Communication WRAP UP</p>',NULL,NULL,'communication-wrap-up',NULL,NULL,0,26,NULL,NULL,NULL,NULL,NULL,5,1,NULL,'2022-12-26 16:22:52','2022-12-26 16:22:52',NULL),(507,'Matrix and determinant WRAP UP','2023-01-03 11:09:00','question_paper/11 Matrices and Determinants.pdf','<p>Matrix and determinant WRAP UP</p>',NULL,NULL,'matrix-and-determinant-wrap-up',NULL,NULL,0,28,NULL,NULL,NULL,NULL,NULL,5,1,NULL,'2023-01-03 05:39:21','2023-01-03 05:39:21',NULL),(508,'Trigonometry WRAP UP','2023-01-07 23:09:00','question_paper/12 Trigonometry.pdf','<p>Trigonometry WRAP UP</p>',NULL,NULL,'trigonometry-wrap-up',NULL,NULL,0,28,NULL,NULL,NULL,NULL,NULL,5,1,NULL,'2023-01-07 17:45:27','2023-01-07 17:45:27',NULL),(509,'STRUCTURAL ISOMERISM DPP-1','2023-01-11 15:22:00','question_paper/STRUCTURAL ISOMERISM DPP.pdf','<p>STRUCTURAL ISOMERISM DPP-1</p>',NULL,NULL,'structural-isomerism-dpp-1',NULL,NULL,85,27,NULL,NULL,NULL,NULL,NULL,5,1,NULL,'2023-01-11 09:53:00','2023-01-11 09:53:00',NULL),(510,'Alcohols, Ethers & Phenols WRAP UP','2023-01-12 10:57:00','question_paper/10. Alcohols, Ethers & Phenols.pdf','<p>Alcohols, Ethers & Phenols WRAP UP</p>',NULL,NULL,'alcohols-ethers-phenols-wrap-up',NULL,NULL,0,27,NULL,NULL,NULL,NULL,NULL,5,1,NULL,'2023-01-12 05:27:26','2023-01-12 05:27:26',NULL),(511,'Atomic Structure WRAP UP','2023-01-12 10:58:00','question_paper/11. ATOMIC STRUCTURE.pdf','<p>Atomic Structure WRAP UP</p>',NULL,NULL,'atomic-structure-wrap-up',NULL,NULL,0,27,NULL,NULL,NULL,NULL,NULL,5,1,1,'2023-01-12 05:29:07','2023-01-13 10:39:32',NULL),(512,'Carboxylic Acids and its derivatives WRAP UP','2023-01-12 11:00:00','question_paper/12. Carboxylic Acids and its derivatives.pdf','<p>Carboxylic Acids and its derivatives WRAP UP</p>',NULL,NULL,'carboxylic-acids-and-its-derivatives-wrap-up',NULL,NULL,0,27,NULL,NULL,NULL,NULL,NULL,5,1,NULL,'2023-01-12 05:30:13','2023-01-12 05:30:13',NULL),(513,'Chemical Kinetics WRAP UP','2023-01-12 11:00:00','question_paper/13. Chemical Kinetics.pdf','<p>Chemical Kinetics WRAP UP</p>',NULL,NULL,'chemical-kinetics-wrap-up',NULL,NULL,0,27,NULL,NULL,NULL,NULL,NULL,5,1,NULL,'2023-01-12 05:31:07','2023-01-12 05:31:07',NULL),(514,'Chemistry in Everyday Life WRAP UP','2023-01-12 11:02:00','question_paper/14. Chemistry in Everyday Life.pdf','<p>Chemistry in Everyday Life WRAP UP</p>',NULL,NULL,'chemistry-in-everyday-life-wrap-up',NULL,NULL,0,27,NULL,NULL,NULL,NULL,NULL,5,1,NULL,'2023-01-12 05:32:20','2023-01-12 05:32:20',NULL),(515,'Environmental Chemistry WRAP UP','2023-01-12 11:02:00','question_paper/15. Environmental Chemistry.pdf','<p>Environmental Chemistry WRAP UP</p>',NULL,NULL,'environmental-chemistry-wrap-up',NULL,NULL,0,27,NULL,NULL,NULL,NULL,NULL,5,1,NULL,'2023-01-12 05:33:32','2023-01-12 05:33:32',NULL),(516,'Fluid DPP-1','2023-01-13 16:07:00','question_paper/Fluids.pdf','<p>Fluid DPP-1</p>',NULL,NULL,'fluid-dpp-1',NULL,NULL,85,26,NULL,NULL,NULL,NULL,NULL,5,1,NULL,'2023-01-13 10:38:07','2023-01-13 10:38:07',NULL),(517,'Hydrocarbon WRAP UP','2023-01-13 16:11:00','question_paper/16. Hydrocarbon.pdf','<p>Hydrocarbon WRAP UP</p>',NULL,NULL,'hydrocarbon-wrap-up',NULL,NULL,0,27,NULL,NULL,NULL,NULL,NULL,5,1,NULL,'2023-01-13 10:41:18','2023-01-13 10:41:18',NULL),(518,'Hydrogen and Its compounds WRAP UP','2023-01-13 16:13:00','question_paper/17. Hydrogen and Its compounds.pdf','<p>Hydrogen and Its compounds WRAP UP</p>',NULL,NULL,'hydrogen-and-its-compounds-wrap-up',NULL,NULL,0,27,NULL,NULL,NULL,NULL,NULL,5,1,NULL,'2023-01-13 10:43:30','2023-01-13 10:43:30',NULL),(519,'Resonance, Mesomerif Effect Concept of Aromaticity DPP-1','2023-01-17 16:42:00','question_paper/Resonance, Mesomerif Effect Concept of Aromaticity.pdf','<p>Resonance, Mesomerif Effect Concept of Aromaticity DPP-1</p>',NULL,NULL,'resonance-mesomerif-effect-concept-of-aromaticity-dpp-1',NULL,NULL,85,27,NULL,NULL,NULL,NULL,NULL,5,1,NULL,'2023-01-17 11:13:25','2023-01-17 11:13:25',NULL),(520,'Complex number DPP-1','2023-02-18 13:55:00','question_paper/Complex No. 1.pdf','<p>Complex number DPP-1</p>',NULL,NULL,'complex-number-dpp-1',NULL,NULL,85,28,NULL,NULL,NULL,NULL,NULL,5,1,NULL,'2023-02-18 08:25:43','2023-02-18 08:25:43',NULL),(521,'Complex number DPP-2','2023-02-18 13:56:00','question_paper/Complex No. 2.pdf','<p>Complex number DPP-2</p>',NULL,NULL,'complex-number-dpp-2',NULL,NULL,85,28,NULL,NULL,NULL,NULL,NULL,5,1,NULL,'2023-02-18 08:26:46','2023-02-18 08:26:46',NULL),(522,'Complex number DPP-3','2023-02-24 17:41:00','question_paper/Complex No. 3.pdf','<p>Complex number DPP-3</p>',NULL,NULL,'complex-number-dpp-3',NULL,NULL,85,28,NULL,NULL,NULL,NULL,NULL,5,1,NULL,'2023-02-24 12:12:03','2023-02-24 12:12:03',NULL),(523,'Complex number DPP-4','2023-02-24 17:42:00','question_paper/Complex No. 4.pdf','<p>Complex number DPP-4</p>',NULL,NULL,'complex-number-dpp-4',NULL,NULL,85,28,NULL,NULL,NULL,NULL,NULL,5,1,NULL,'2023-02-24 12:13:37','2023-02-24 12:13:37',NULL),(524,'Complex number DPP-5','2023-02-24 17:46:00',NULL,'<p>Complex number DPP-5</p>',NULL,NULL,'complex-number-dpp-5',NULL,NULL,85,28,NULL,NULL,NULL,NULL,NULL,5,1,NULL,'2023-02-24 12:16:27','2023-02-24 12:16:27',NULL),(525,'Complex number DPP-6','2023-02-24 17:47:00',NULL,'<p>Complex number DPP-6</p>',NULL,NULL,'complex-number-dpp-6',NULL,NULL,85,28,NULL,NULL,NULL,NULL,NULL,5,1,NULL,'2023-02-24 12:17:20','2023-02-24 12:17:20',NULL),(526,'Complex number DPP-7','2023-02-24 17:47:00',NULL,'<p>Complex number DPP-7</p>',NULL,NULL,'complex-number-dpp-7',NULL,NULL,85,28,NULL,NULL,NULL,NULL,NULL,5,1,NULL,'2023-02-24 12:18:04','2023-02-24 12:18:04',NULL),(527,'Complex number DPP-8','2023-02-24 17:48:00','question_paper/Complex No. 8.pdf','<p>Complex number DPP-8</p>',NULL,NULL,'complex-number-dpp-8',NULL,NULL,85,28,NULL,NULL,NULL,NULL,NULL,5,1,NULL,'2023-02-24 12:19:03','2023-02-24 12:19:03',NULL);
/*!40000 ALTER TABLE `blogs` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `cache`
--
DROP TABLE IF EXISTS `cache`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `cache` (
`key` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`value` text COLLATE utf8mb4_unicode_ci NOT NULL,
`expiration` int(11) NOT NULL,
UNIQUE KEY `cache_key_unique` (`key`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `cache`
--
LOCK TABLES `cache` WRITE;
/*!40000 ALTER TABLE `cache` DISABLE KEYS */;
/*!40000 ALTER TABLE `cache` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `email_templates`
--
DROP TABLE IF EXISTS `email_templates`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `email_templates` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`title` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`slug` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`content` text COLLATE utf8mb4_unicode_ci NOT NULL,
`status` tinyint(1) NOT NULL DEFAULT '1',
`created_by` int(10) unsigned NOT NULL,
`updated_by` int(10) unsigned DEFAULT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL,
`deleted_at` timestamp NULL DEFAULT NULL,
PRIMARY KEY (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=51 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `email_templates`
--
LOCK TABLES `email_templates` WRITE;
/*!40000 ALTER TABLE `email_templates` DISABLE KEYS */;
INSERT INTO `email_templates` (`id`, `title`, `slug`, `content`, `status`, `created_by`, `updated_by`, `created_at`, `updated_at`, `deleted_at`) VALUES (1,'Et vel ea similique eligendi.','et-vel-ea-similique-eligendi','Non dicta consequatur esse sit. Consectetur unde sapiente aspernatur ad officia iusto odit. Nostrum minus deleniti ut iure voluptatum.',1,1,NULL,'2021-06-07 17:56:15',NULL,NULL),(2,'Dolorem odio repellat.','dolorem-odio-repellat','Ut perspiciatis non itaque repellat cum. Voluptatem ipsum quia tempore voluptates. Natus mollitia corporis reiciendis fugiat quaerat assumenda.',0,1,NULL,'2021-06-04 21:15:11',NULL,NULL),(3,'Qui similique quasi ut nostrum id.','qui-similique-quasi-ut-nostrum-id','Labore sed praesentium eos. Consequatur incidunt id rerum fuga est. Est sapiente et velit vero nam harum enim. Iste est corporis omnis mollitia. Dolor autem qui aut non iste aut.',1,2,NULL,'2021-06-14 10:10:17',NULL,NULL),(4,'Voluptates quisquam quam non soluta aut.','voluptates-quisquam-quam-non-soluta-aut','Qui labore magnam nobis deleniti. Voluptas unde eveniet a aliquam officiis qui et. Illum ad atque enim quibusdam quia dolorem id.',1,2,NULL,'2021-06-05 02:48:07',NULL,NULL),(5,'Ad ipsam aut aliquam et.','ad-ipsam-aut-aliquam-et','Minima dolores sit delectus assumenda reiciendis recusandae nemo dolor. Voluptatem blanditiis iusto magni voluptatem. Sit et nisi qui voluptatum aut voluptate. Officia asperiores sit saepe laudantium. Itaque id repellendus eligendi officia.',0,1,NULL,'2021-06-05 00:10:04',NULL,NULL),(6,'Quas nisi in.','quas-nisi-in','Quas adipisci veniam exercitationem praesentium non rerum. Minus quos delectus molestiae fuga sapiente nam adipisci. Consequatur a voluptas eius sed velit assumenda perferendis architecto.',0,2,NULL,'2021-06-08 01:21:44',NULL,NULL),(7,'Eum omnis libero distinctio.','eum-omnis-libero-distinctio','Qui sed quo natus. Omnis ducimus sit dicta qui quibusdam. Ducimus dolor saepe sint. Ut quia laborum incidunt optio.',1,1,NULL,'2021-06-06 20:24:21',NULL,NULL),(8,'Eaque commodi quia.','eaque-commodi-quia','Et voluptatem quibusdam repellat modi. Alias aut voluptatem provident error a eos. Aut qui quod natus ut ea facilis. Harum quo odit quo non magni.',0,2,NULL,'2021-06-14 07:38:29',NULL,NULL),(9,'Quis architecto ullam doloremque placeat.','quis-architecto-ullam-doloremque-placeat','Commodi voluptas molestias natus enim exercitationem incidunt. Commodi inventore laudantium sed aut. Nobis laboriosam molestiae dolores officiis asperiores et.',0,2,NULL,'2021-06-14 08:00:24',NULL,NULL),(10,'Non aliquam libero voluptatem.','non-aliquam-libero-voluptatem','Magni voluptas saepe commodi laborum fugiat omnis debitis. Illum eos facilis minus sit fugit sunt ut. Suscipit cum expedita qui aut. Sequi autem et vitae.',0,2,NULL,'2021-06-12 21:22:59',NULL,NULL),(11,'Deserunt quidem quod voluptatem non et.','deserunt-quidem-quod-voluptatem-non-et','Asperiores cumque omnis nulla. Sed eaque voluptates dolores incidunt molestias. Qui porro ipsam vitae illum rerum. Ut quo cupiditate aut iste.',1,1,NULL,'2021-06-11 15:04:57',NULL,NULL),(12,'Nulla iusto repellendus consequatur consequatur deserunt.','nulla-iusto-repellendus-consequatur-consequatur-deserunt','Molestias libero quis qui libero dolor deserunt cupiditate. Nulla voluptas ducimus nihil iusto. Cupiditate sequi sit nam enim doloribus quia omnis. Perferendis fuga at eos sint et vero molestiae.',1,1,NULL,'2021-06-11 12:55:05',NULL,NULL),(13,'Quis esse eius animi.','quis-esse-eius-animi','Modi est ut sed enim possimus adipisci. Aut commodi ea dolores dolores a. Consequatur et est expedita enim laboriosam maiores aspernatur ut. Autem odit qui voluptate quia at mollitia.',0,1,NULL,'2021-06-08 22:11:53',NULL,NULL),(14,'Ut autem itaque earum expedita dolore.','ut-autem-itaque-earum-expedita-dolore','Ad aliquam tenetur odit sit occaecati. Beatae esse fugiat accusantium quae. Rerum animi ab occaecati voluptatem non doloribus.',0,1,NULL,'2021-06-14 03:20:53',NULL,NULL),(15,'Fugit ipsam ea repellendus consequatur.','fugit-ipsam-ea-repellendus-consequatur','Pariatur odit labore qui ea voluptate neque distinctio. Adipisci minima cupiditate autem ipsum. Enim consequatur alias atque et totam.',1,2,NULL,'2021-06-11 11:13:28',NULL,NULL),(16,'Quis enim ut magnam est.','quis-enim-ut-magnam-est','Hic aut consequatur quidem voluptatem et iste magnam. Perferendis eum et aperiam ipsum accusamus corporis. Iste dolore nihil omnis facere consequuntur est voluptatem.',0,1,NULL,'2021-06-10 14:29:27',NULL,NULL),(17,'Voluptas adipisci soluta voluptatem nesciunt unde.','voluptas-adipisci-soluta-voluptatem-nesciunt-unde','Inventore eum cum consequatur quam distinctio. Qui sit esse alias excepturi in quis. Eius praesentium voluptates consequatur. Ut aut veritatis repellendus reprehenderit sed sed repellat.',1,1,NULL,'2021-06-06 17:32:05',NULL,NULL),(18,'Ipsam eaque sit dolorum aperiam.','ipsam-eaque-sit-dolorum-aperiam','Cupiditate quos excepturi eligendi tempora quidem et veritatis. Velit tempora non non dignissimos repudiandae. Corporis explicabo qui odio minima repudiandae ullam tempore. Voluptatibus rerum id reprehenderit nihil.',0,1,NULL,'2021-06-10 05:19:00',NULL,NULL),(19,'Velit ipsum labore nihil.','velit-ipsum-labore-nihil','Quibusdam ut dolor error quia nostrum ullam. Atque quam eos iure amet enim. Vitae nemo minima vero optio rerum magnam. Sed quae voluptatem itaque dolorem ea repudiandae possimus.',0,2,NULL,'2021-06-13 21:30:37',NULL,NULL),(20,'Iure sunt quasi blanditiis.','iure-sunt-quasi-blanditiis','Et deleniti cupiditate perferendis dolores modi. Perspiciatis commodi sed quam possimus earum magnam labore nemo.',1,2,NULL,'2021-06-10 13:08:20',NULL,NULL),(21,'Occaecati quia qui molestias cupiditate id.','occaecati-quia-qui-molestias-cupiditate-id','Placeat facere quia molestiae reiciendis aut. Temporibus qui odio quia. Non labore ratione ab et labore voluptatum modi.',1,2,NULL,'2021-06-13 11:50:22',NULL,NULL),(22,'Repellendus voluptatem laborum et voluptatum.','repellendus-voluptatem-laborum-et-voluptatum','Quibusdam ut aut modi corporis maxime. Et qui architecto magni ducimus qui quo. Consectetur voluptatem voluptatem sunt tenetur veritatis reprehenderit aut molestiae.',0,2,NULL,'2021-06-07 20:42:49',NULL,NULL),(23,'Recusandae eos velit ratione occaecati.','recusandae-eos-velit-ratione-occaecati','Est occaecati dolore delectus quasi. Sit reiciendis occaecati ab. Atque quidem tempora ut qui ex aut quis nam. Sed nemo molestias doloribus ipsum. Eos assumenda vel omnis autem voluptatem labore voluptatem.',0,2,NULL,'2021-06-12 05:57:56',NULL,NULL),(24,'Veniam commodi nulla.','veniam-commodi-nulla','Tempore possimus hic qui dolorem consequatur est exercitationem sunt. Harum voluptatibus officia nam accusantium ut. Provident est ullam rerum quia provident.',0,1,NULL,'2021-06-10 11:40:00',NULL,NULL),(25,'Unde nulla vel amet.','unde-nulla-vel-amet','Omnis molestiae harum cupiditate in dolores aperiam ea quis. Quis praesentium id magni impedit. Fugit sit cumque quo non aliquid. Animi placeat nulla voluptatem ea.',0,2,NULL,'2021-06-06 22:53:24',NULL,NULL),(26,'Architecto nihil recusandae harum et.','architecto-nihil-recusandae-harum-et','Amet praesentium ea ipsa repellat iste. Velit quae debitis repellat quo explicabo quia. Vel iure provident asperiores quasi nihil ut eos. Rem impedit aut sit.',1,2,NULL,'2021-06-04 18:11:06',NULL,NULL),(27,'Exercitationem ullam ipsum est ut est.','exercitationem-ullam-ipsum-est-ut-est','Cum illo voluptatem consequatur similique non doloremque. Culpa ut et reprehenderit aut ea.',0,2,NULL,'2021-06-07 16:27:17',NULL,NULL),(28,'Nisi incidunt recusandae sit fugiat.','nisi-incidunt-recusandae-sit-fugiat','Aut officiis ea quisquam voluptatum dolores officiis nisi. Cumque velit quo et nobis. Impedit quod in assumenda. Quia asperiores ut voluptatem deserunt praesentium optio.',0,2,NULL,'2021-06-10 16:14:40',NULL,NULL),(29,'Quia architecto non.','quia-architecto-non','Adipisci neque voluptatem quasi vero nihil. Eligendi occaecati perspiciatis id. Ullam vel voluptas pariatur.',0,1,NULL,'2021-06-08 19:15:27',NULL,NULL),(30,'Adipisci et repellat delectus blanditiis.','adipisci-et-repellat-delectus-blanditiis','Error magni quia voluptatem reprehenderit officia assumenda et possimus. Minima ipsa quidem occaecati velit. Quod vitae ut temporibus et.',1,1,NULL,'2021-06-07 18:03:03',NULL,NULL),(31,'Soluta dolorem non ut rerum.','soluta-dolorem-non-ut-rerum','Tenetur ratione perferendis cupiditate possimus. Consequuntur ab consequatur alias voluptatem qui aliquam. Aut mollitia et eligendi et sed eum.',0,1,NULL,'2021-06-12 16:35:31',NULL,NULL),(32,'Porro quia delectus exercitationem quidem ducimus.','porro-quia-delectus-exercitationem-quidem-ducimus','Praesentium porro quia cum. Consequatur rerum doloremque esse perferendis placeat est cumque. Modi suscipit provident distinctio distinctio et.',0,2,NULL,'2021-06-07 10:43:15',NULL,NULL),(33,'Recusandae quas consequatur nihil quam.','recusandae-quas-consequatur-nihil-quam','Recusandae dignissimos accusantium quibusdam. Ut sunt ad incidunt quo esse impedit ab quae. Aut repudiandae quam dolores voluptas. Et nesciunt aut id cum ea.',0,2,NULL,'2021-06-08 20:07:47',NULL,NULL),(34,'Reiciendis esse dolores labore at incidunt.','reiciendis-esse-dolores-labore-at-incidunt','Doloremque vel non aut voluptas quaerat velit amet necessitatibus. Odio repellendus quo accusamus fuga expedita numquam. Omnis quaerat sequi non voluptatem quas ut facere. Dignissimos deserunt ut qui ratione quam. Sed aut corporis vel saepe minima distinctio pariatur.',0,2,NULL,'2021-06-06 15:32:31',NULL,NULL),(35,'Quia consequatur deserunt natus sint ut.','quia-consequatur-deserunt-natus-sint-ut','Esse quaerat laborum qui deleniti eius nesciunt dolorem. Sint et impedit non voluptas similique voluptas. Suscipit exercitationem quaerat deleniti laborum tempora officia totam.',0,2,NULL,'2021-06-12 23:58:04',NULL,NULL),(36,'Est omnis dolores cupiditate aliquid.','est-omnis-dolores-cupiditate-aliquid','Qui omnis facilis praesentium quis id. Quisquam magni vel est molestiae ducimus. Quia est iure impedit. Ullam est temporibus pariatur distinctio perferendis perspiciatis eum.',1,2,NULL,'2021-06-12 22:48:50',NULL,NULL),(37,'Maiores delectus fugiat rerum eveniet.','maiores-delectus-fugiat-rerum-eveniet','Id quae totam voluptas vero aut sint veritatis. Adipisci recusandae quam esse quo et dolores. Odio est dignissimos ut quis et.',0,1,NULL,'2021-06-09 02:12:33',NULL,NULL),(38,'Dolor iste et.','dolor-iste-et','Omnis sit autem ea voluptatibus aliquid velit nisi dolorum. Odio aperiam dolores repudiandae ducimus voluptate. Unde voluptatem sed nihil nihil.',1,1,NULL,'2021-06-06 06:35:42',NULL,NULL),(39,'Id ab voluptas id voluptas.','id-ab-voluptas-id-voluptas','Omnis veniam quisquam exercitationem. Aliquid est accusamus quia et qui voluptatem. Animi rerum inventore autem aut saepe. Ut sint numquam aspernatur perferendis vel dolor officia.',0,1,NULL,'2021-06-04 16:58:27',NULL,NULL),(40,'Sequi itaque totam.','sequi-itaque-totam','Unde incidunt explicabo earum eius quo. Temporibus corporis quia totam cumque excepturi. Repudiandae deleniti non qui rem commodi quia laudantium. Consequuntur sed dolore omnis est laudantium et qui aliquid. Assumenda nobis temporibus et molestiae voluptatem voluptas.',1,1,NULL,'2021-06-04 19:24:22',NULL,NULL),(41,'Id a ut dignissimos.','id-a-ut-dignissimos','Sed hic molestiae vel ut rerum. Commodi dolorem sapiente autem quia id dolor praesentium. At sit blanditiis optio sit qui adipisci. Maiores qui corporis at vel eius veritatis.',1,1,NULL,'2021-06-10 06:37:48',NULL,NULL),(42,'Adipisci cum consequuntur.','adipisci-cum-consequuntur','Aut quo neque est et rem impedit optio. Eligendi delectus pariatur vero illo accusantium. Eius soluta nam iusto quae. Placeat facere qui quo et magnam ut repellat.',0,1,NULL,'2021-06-12 22:23:33',NULL,NULL),(43,'Provident sequi quia.','provident-sequi-quia','Placeat excepturi eius qui ea et. Est tenetur excepturi aut rerum molestiae delectus. Libero recusandae voluptate ducimus ipsum molestiae et sit.',0,2,NULL,'2021-06-14 07:42:55',NULL,NULL),(44,'Labore velit iure qui.','labore-velit-iure-qui','Quaerat nostrum veritatis dolor. Dolores nostrum vitae molestiae ratione quia quidem. Voluptates molestiae in et modi temporibus possimus cupiditate. Voluptates eius vero suscipit omnis.',0,1,NULL,'2021-06-14 09:24:04',NULL,NULL),(45,'Voluptatum nulla aut non sint tempore.','voluptatum-nulla-aut-non-sint-tempore','Ut pariatur non nulla officia autem eaque. Facilis iure id soluta magni aliquid voluptatum. Nemo vitae quia recusandae voluptatem aliquam consequatur.',1,2,NULL,'2021-06-08 23:15:37',NULL,NULL),(46,'Quaerat voluptatem sunt unde minima.','quaerat-voluptatem-sunt-unde-minima','Dolor voluptatem dicta officia accusantium quae laborum. Quam et recusandae omnis dolor impedit ipsum aut. Quia sit vel a. Ex blanditiis saepe ipsam possimus iste voluptas voluptas nemo.',1,1,NULL,'2021-06-10 07:40:39',NULL,NULL),(47,'Nostrum illo iusto est.','nostrum-illo-iusto-est','Velit sunt accusantium qui enim aliquid accusamus dolorem est. At assumenda iste provident explicabo mollitia id. Voluptate modi molestias explicabo libero.',0,2,NULL,'2021-06-07 03:35:47',NULL,NULL),(48,'Quia a et aut.','quia-a-et-aut','Ratione dolorem non accusantium expedita dicta quia similique est. Tempora et praesentium enim illum dignissimos nulla odio. Corrupti et voluptas ea qui ea accusantium repudiandae. Saepe debitis saepe asperiores iste.',1,1,NULL,'2021-06-06 23:35:39',NULL,NULL),(49,'Sapiente asperiores sit harum voluptatum excepturi.','sapiente-asperiores-sit-harum-voluptatum-excepturi','Fuga quo nihil quis accusantium fugit aut voluptatem iusto. Dolore aut magni totam. Velit debitis unde quia accusantium. Consequatur qui blanditiis ipsum architecto quam.',0,1,NULL,'2021-06-06 04:46:21',NULL,NULL),(50,'Dolorem est error vero.','dolorem-est-error-vero','Consequatur voluptas ratione et quis voluptatem. Animi et sapiente autem aut corrupti. Assumenda exercitationem quaerat quia.',1,1,NULL,'2021-06-07 05:22:41',NULL,NULL);
/*!40000 ALTER TABLE `email_templates` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `failed_jobs`
--
DROP TABLE IF EXISTS `failed_jobs`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `failed_jobs` (
`id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`connection` text COLLATE utf8mb4_unicode_ci NOT NULL,
`queue` text COLLATE utf8mb4_unicode_ci NOT NULL,
`payload` longtext COLLATE utf8mb4_unicode_ci NOT NULL,
`exception` longtext COLLATE utf8mb4_unicode_ci NOT NULL,
`failed_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `failed_jobs`
--
LOCK TABLES `failed_jobs` WRITE;
/*!40000 ALTER TABLE `failed_jobs` DISABLE KEYS */;
/*!40000 ALTER TABLE `failed_jobs` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `faqs`
--
DROP TABLE IF EXISTS `faqs`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `faqs` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`question` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`answer` text COLLATE utf8mb4_unicode_ci NOT NULL,
`status` tinyint(1) NOT NULL DEFAULT '0',
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL,
`deleted_at` timestamp NULL DEFAULT NULL,
PRIMARY KEY (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=11 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `faqs`
--
LOCK TABLES `faqs` WRITE;
/*!40000 ALTER TABLE `faqs` DISABLE KEYS */;
INSERT INTO `faqs` (`id`, `question`, `answer`, `status`, `created_at`, `updated_at`, `deleted_at`) VALUES (1,'Aut aspernatur eos sed.','Nobis quos et sit illum. Dicta corrupti ut distinctio fugit dicta quisquam. Est vero alias perferendis est nesciunt sit ab. Voluptatem aperiam ullam minus sunt aut dicta qui.',0,'2021-06-14 12:03:39','2021-06-14 12:03:39',NULL),(2,'Eos enim ex qui eligendi voluptatibus ipsa.','Et autem quia beatae. Nihil nihil accusantium inventore maiores sed aut. Ratione vitae quia voluptatum odit autem laudantium. Dolores labore voluptatibus non ut sit maxime.',0,'2021-06-14 12:03:39','2021-06-14 12:03:39',NULL),(3,'Nobis illum impedit aliquam voluptate.','Fuga error necessitatibus eaque sunt accusantium non error qui. Eveniet tempore cumque et non earum eos. Perferendis omnis et magni ducimus. Dolorum molestias odit incidunt quia.',1,'2021-06-14 12:03:39','2021-06-14 12:03:39',NULL),(4,'Tempora sequi provident earum labore quidem.','Voluptatem in a atque voluptas aut quisquam libero. Ipsa itaque debitis ut dolores ut est et. Sit in aspernatur porro assumenda. Fugit beatae atque ut magni autem aut.',1,'2021-06-14 12:03:39','2021-06-14 12:03:39',NULL),(5,'Repellendus quos qui molestias qui cumque.','Occaecati non pariatur velit nisi aliquam dolores aliquam. Nesciunt ipsam laudantium ea non voluptatum quis. Quis a assumenda animi cumque. Quae consequatur pariatur quidem ducimus sit.',0,'2021-06-14 12:03:39','2021-06-14 12:03:39',NULL),(6,'Non cupiditate eos perspiciatis aspernatur quia vero.','Alias ea illo suscipit laudantium vel. Voluptatem porro officiis et aut aut et nihil repellendus. Sit dolore qui quaerat iste voluptate aliquid commodi. Veniam dolores quod et est aperiam.',0,'2021-06-14 12:03:39','2021-06-14 12:03:39',NULL),(7,'Ut consectetur praesentium voluptates et quia rerum.','Perspiciatis enim distinctio tempora dolor quia repudiandae enim voluptates. Id deserunt est quia. Repellendus rerum tempore sed qui ea consequuntur.',1,'2021-06-14 12:03:39','2021-06-14 12:03:39',NULL),(8,'Distinctio culpa est sit ea aut atque.','Modi itaque rerum non aut officiis. Animi quae itaque dignissimos aut et. Vel error omnis aut rerum ut minus et quas. Perspiciatis incidunt tempore recusandae vero.',0,'2021-06-14 12:03:39','2021-06-14 12:03:39',NULL),(9,'Deleniti repudiandae est veritatis laudantium voluptatibus.','Suscipit vitae vitae suscipit earum quos. Magni inventore eos et quidem aut. Quidem reprehenderit tenetur labore autem impedit atque minus. Incidunt ab ad necessitatibus quaerat.',0,'2021-06-14 12:03:39','2021-06-14 12:03:39',NULL),(10,'Illo dolorem facilis ab omnis nesciunt.','Omnis neque neque deserunt nostrum cupiditate. Molestias non architecto qui sed error quaerat corporis. Officiis dolores dolores eius nisi voluptas quae. Est tenetur eos reiciendis eum ut nisi.',0,'2021-06-14 12:03:39','2021-06-14 12:03:39',NULL);
/*!40000 ALTER TABLE `faqs` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `jobs`
--
DROP TABLE IF EXISTS `jobs`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `jobs` (
`id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`queue` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`payload` longtext COLLATE utf8mb4_unicode_ci NOT NULL,
`attempts` tinyint(3) unsigned NOT NULL,
`reserved_at` int(10) unsigned DEFAULT NULL,
`available_at` int(10) unsigned NOT NULL,
`created_at` int(10) unsigned NOT NULL,
PRIMARY KEY (`id`),
KEY `jobs_queue_index` (`queue`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `jobs`
--
LOCK TABLES `jobs` WRITE;
/*!40000 ALTER TABLE `jobs` DISABLE KEYS */;
/*!40000 ALTER TABLE `jobs` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `ledgers`
--
DROP TABLE IF EXISTS `ledgers`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `ledgers` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`user_type` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`user_id` bigint(20) unsigned DEFAULT NULL,
`recordable_type` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`recordable_id` bigint(20) unsigned NOT NULL,
`context` tinyint(3) unsigned NOT NULL,
`event` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`properties` text COLLATE utf8mb4_unicode_ci NOT NULL,
`modified` text COLLATE utf8mb4_unicode_ci NOT NULL,
`pivot` text COLLATE utf8mb4_unicode_ci NOT NULL,
`extra` text COLLATE utf8mb4_unicode_ci NOT NULL,
`url` text COLLATE utf8mb4_unicode_ci,
`ip_address` varchar(45) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`user_agent` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`signature` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL,
PRIMARY KEY (`id`),
KEY `ledgers_recordable_type_recordable_id_index` (`recordable_type`,`recordable_id`),
KEY `ledgers_user_id_user_type_index` (`user_id`,`user_type`)
) ENGINE=MyISAM AUTO_INCREMENT=48 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `ledgers`
--
LOCK TABLES `ledgers` WRITE;
/*!40000 ALTER TABLE `ledgers` DISABLE KEYS */;
INSERT INTO `ledgers` (`id`, `user_type`, `user_id`, `recordable_type`, `recordable_id`, `context`, `event`, `properties`, `modified`, `pivot`, `extra`, `url`, `ip_address`, `user_agent`, `signature`, `created_at`, `updated_at`) VALUES (1,'App\\Models\\Auth\\User',1,'App\\Models\\Auth\\User',1,4,'updated','{\"id\":1,\"uuid\":\"84bcd9f2-27c2-4c1b-a6e0-9f01846fcdf7\",\"first_name\":\"Alan\",\"last_name\":\"Whitmore\",\"email\":\"admin@admin.com\",\"avatar_type\":\"gravatar\",\"avatar_location\":null,\"password\":\"$2y$10$OrxyKtMfhcc5O6hsM5rcvuraXq37sM8GGY1yVfeDDn6Zlm2DwAeZS\",\"password_changed_at\":null,\"active\":1,\"confirmation_code\":\"b67f6c5addc4afd018edcdb3472d79a3\",\"confirmed\":1,\"timezone\":null,\"last_login_at\":null,\"last_login_ip\":null,\"to_be_logged_out\":0,\"status\":1,\"created_by\":1,\"updated_by\":null,\"is_term_accept\":0,\"remember_token\":\"QKTq3c5Jd7yuzaa2NKPo3Tn9KpXLgtD8hSSpWrpk6E8aCFkQhdc2LMePH0PF\",\"created_at\":\"2021-06-14 17:33:39\",\"updated_at\":\"2021-06-14 17:33:39\",\"deleted_at\":null}','[\"remember_token\"]','[]','[]','http://127.0.0.1:8000/login','127.0.0.1','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0','2d0dc912ed1432e15a3083a99e19f62cc7058f131a6a29f5a567d6b190ed3e497a7a15b59d317f24caca9d27ad150d0aba2d746568d9c683b99ac97232077c7d','2021-06-14 12:07:33','2021-06-14 12:07:33'),(2,'App\\Models\\Auth\\User',1,'App\\Models\\Auth\\User',1,4,'updated','{\"id\":1,\"uuid\":\"84bcd9f2-27c2-4c1b-a6e0-9f01846fcdf7\",\"first_name\":\"Alan\",\"last_name\":\"Whitmore\",\"email\":\"admin@admin.com\",\"avatar_type\":\"gravatar\",\"avatar_location\":null,\"password\":\"$2y$10$OrxyKtMfhcc5O6hsM5rcvuraXq37sM8GGY1yVfeDDn6Zlm2DwAeZS\",\"password_changed_at\":null,\"active\":1,\"confirmation_code\":\"b67f6c5addc4afd018edcdb3472d79a3\",\"confirmed\":1,\"timezone\":\"America\\/New_York\",\"last_login_at\":\"2021-06-14 17:37:33\",\"last_login_ip\":\"127.0.0.1\",\"to_be_logged_out\":0,\"status\":1,\"created_by\":1,\"updated_by\":null,\"is_term_accept\":0,\"remember_token\":\"QKTq3c5Jd7yuzaa2NKPo3Tn9KpXLgtD8hSSpWrpk6E8aCFkQhdc2LMePH0PF\",\"created_at\":\"2021-06-14 17:33:39\",\"updated_at\":\"2021-06-14 17:37:33\",\"deleted_at\":null}','[\"timezone\",\"last_login_at\",\"last_login_ip\",\"updated_at\"]','[]','[]','http://127.0.0.1:8000/login','127.0.0.1','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0','0475d3d8577d20d1c493719e102002ba110e8dac1cc2f8e30f8d3a7f9c67802dd97aa15aefd50e2bf3cf9a376c6c92854b40a7058f63cb8307dd815e333880b2','2021-06-14 12:07:33','2021-06-14 12:07:33'),(3,'App\\Models\\Auth\\User',1,'App\\Models\\Auth\\User',1,4,'updated','{\"id\":1,\"uuid\":\"84bcd9f2-27c2-4c1b-a6e0-9f01846fcdf7\",\"first_name\":\"Alan\",\"last_name\":\"Whitmore\",\"email\":\"admin@admin.com\",\"avatar_type\":\"gravatar\",\"avatar_location\":null,\"password\":\"$2y$10$OrxyKtMfhcc5O6hsM5rcvuraXq37sM8GGY1yVfeDDn6Zlm2DwAeZS\",\"password_changed_at\":null,\"active\":1,\"confirmation_code\":\"b67f6c5addc4afd018edcdb3472d79a3\",\"confirmed\":1,\"timezone\":\"America\\/New_York\",\"last_login_at\":\"2021-06-14 17:37:33\",\"last_login_ip\":\"127.0.0.1\",\"to_be_logged_out\":0,\"status\":1,\"created_by\":1,\"updated_by\":null,\"is_term_accept\":0,\"remember_token\":\"dgv6yE4sqNkDElqwPqNMT9WSV3jc5PsmsMzwf1scPV0CC7qH9Iv6tDbMpyqm\",\"created_at\":\"2021-06-14 17:33:39\",\"updated_at\":\"2021-06-14 17:37:33\",\"deleted_at\":null}','[\"remember_token\"]','[]','[]','http://127.0.0.1:8000/logout','127.0.0.1','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0','b9f6a464338602a044af917881a6856a0139aa7da137466e9389dd0ebc46187f17b6a0d68ed75702616784c5729faafbf2fcffb54e2bd58b4662f127e3cda62f','2021-06-14 12:08:39','2021-06-14 12:08:39'),(4,'App\\Models\\Auth\\User',1,'App\\Models\\Auth\\User',1,4,'updated','{\"id\":1,\"uuid\":\"84bcd9f2-27c2-4c1b-a6e0-9f01846fcdf7\",\"first_name\":\"Alan\",\"last_name\":\"Whitmore\",\"email\":\"admin@admin.com\",\"avatar_type\":\"gravatar\",\"avatar_location\":null,\"password\":\"$2y$10$OrxyKtMfhcc5O6hsM5rcvuraXq37sM8GGY1yVfeDDn6Zlm2DwAeZS\",\"password_changed_at\":null,\"active\":1,\"confirmation_code\":\"b67f6c5addc4afd018edcdb3472d79a3\",\"confirmed\":1,\"timezone\":\"America\\/New_York\",\"last_login_at\":\"2021-06-14 17:51:58\",\"last_login_ip\":\"127.0.0.1\",\"to_be_logged_out\":0,\"status\":1,\"created_by\":1,\"updated_by\":null,\"is_term_accept\":0,\"remember_token\":\"dgv6yE4sqNkDElqwPqNMT9WSV3jc5PsmsMzwf1scPV0CC7qH9Iv6tDbMpyqm\",\"created_at\":\"2021-06-14 17:33:39\",\"updated_at\":\"2021-06-14 17:51:58\",\"deleted_at\":null}','[\"last_login_at\",\"updated_at\"]','[]','[]','http://127.0.0.1:8000/login','127.0.0.1','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0','167b1f2e293588ab42636e9d4b58ea1f89e3c66401b85d329da136059cd58053e7e9e753a00b430346e89862b32e393eb994d7273b7f80821e7b3e77a6c2decd','2021-06-14 12:21:58','2021-06-14 12:21:58'),(5,'App\\Models\\Auth\\User',1,'App\\Models\\Auth\\User',1,4,'updated','{\"id\":1,\"uuid\":\"84bcd9f2-27c2-4c1b-a6e0-9f01846fcdf7\",\"first_name\":\"Alan\",\"last_name\":\"Whitmore\",\"email\":\"admin@admin.com\",\"avatar_type\":\"gravatar\",\"avatar_location\":null,\"password\":\"$2y$10$OrxyKtMfhcc5O6hsM5rcvuraXq37sM8GGY1yVfeDDn6Zlm2DwAeZS\",\"password_changed_at\":null,\"active\":1,\"confirmation_code\":\"b67f6c5addc4afd018edcdb3472d79a3\",\"confirmed\":1,\"timezone\":\"America\\/New_York\",\"last_login_at\":\"2021-06-14 17:51:58\",\"last_login_ip\":\"127.0.0.1\",\"to_be_logged_out\":0,\"status\":1,\"created_by\":1,\"updated_by\":null,\"is_term_accept\":0,\"remember_token\":\"4gNQMIjUpX4yxLMdnevZm5A0JAZToqE51UyGm4SaRj0TYA8lWM2fV8TsSNxX\",\"created_at\":\"2021-06-14 17:33:39\",\"updated_at\":\"2021-06-14 17:51:58\",\"deleted_at\":null}','[\"remember_token\"]','[]','[]','http://127.0.0.1:8000/logout','127.0.0.1','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0','a5e2324cb99dd822bf4eb33fc64c34523bd5cd6c1c707e1ac47845aaa2a62598fd2d1d7b65b6f75a207a0792036a26f050667346f85c6c95340ffc7089d886df','2021-06-14 12:22:17','2021-06-14 12:22:17'),(6,'App\\Models\\Auth\\User',1,'App\\Models\\Auth\\User',1,4,'updated','{\"id\":1,\"uuid\":\"84bcd9f2-27c2-4c1b-a6e0-9f01846fcdf7\",\"first_name\":\"Alan\",\"last_name\":\"Whitmore\",\"email\":\"admin@admin.com\",\"avatar_type\":\"gravatar\",\"avatar_location\":null,\"password\":\"$2y$10$OrxyKtMfhcc5O6hsM5rcvuraXq37sM8GGY1yVfeDDn6Zlm2DwAeZS\",\"password_changed_at\":null,\"active\":1,\"confirmation_code\":\"b67f6c5addc4afd018edcdb3472d79a3\",\"confirmed\":1,\"timezone\":\"America\\/New_York\",\"last_login_at\":\"2021-06-15 14:52:13\",\"last_login_ip\":\"127.0.0.1\",\"to_be_logged_out\":0,\"status\":1,\"created_by\":1,\"updated_by\":null,\"is_term_accept\":0,\"remember_token\":\"4gNQMIjUpX4yxLMdnevZm5A0JAZToqE51UyGm4SaRj0TYA8lWM2fV8TsSNxX\",\"created_at\":\"2021-06-14 17:33:39\",\"updated_at\":\"2021-06-15 14:52:13\",\"deleted_at\":null}','[\"last_login_at\",\"updated_at\"]','[]','[]','http://127.0.0.1:8000/login','127.0.0.1','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0','937b06211fefe7ebd8d36b897d2268b2d5d93f99afc085bb9f8c2b71710243e4a016a6a4059bc503a832af1a7e70e74d42d548a77c8d2029785ff7efcb865358','2021-06-15 09:22:14','2021-06-15 09:22:14'),(7,'App\\Models\\Auth\\User',1,'App\\Models\\Auth\\User',1,4,'updated','{\"id\":1,\"uuid\":\"84bcd9f2-27c2-4c1b-a6e0-9f01846fcdf7\",\"first_name\":\"Alan\",\"last_name\":\"Whitmore\",\"email\":\"admin@admin.com\",\"avatar_type\":\"gravatar\",\"avatar_location\":null,\"password\":\"$2y$10$OrxyKtMfhcc5O6hsM5rcvuraXq37sM8GGY1yVfeDDn6Zlm2DwAeZS\",\"password_changed_at\":null,\"active\":1,\"confirmation_code\":\"b67f6c5addc4afd018edcdb3472d79a3\",\"confirmed\":1,\"timezone\":\"America\\/New_York\",\"last_login_at\":\"2021-06-15 14:52:13\",\"last_login_ip\":\"127.0.0.1\",\"to_be_logged_out\":0,\"status\":1,\"created_by\":1,\"updated_by\":null,\"is_term_accept\":0,\"remember_token\":\"K48KJ4g7Ajcrxe9XuT8BSixeJP7eawMXjjKblyAkpRnAOEiPEU4lMrtIjVr2\",\"created_at\":\"2021-06-14 17:33:39\",\"updated_at\":\"2021-06-15 14:52:13\",\"deleted_at\":null}','[\"remember_token\"]','[]','[]','http://127.0.0.1:8000/logout','127.0.0.1','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0','b2f3b730a483ab8d77b76ea9131d549b64cc0447a4e0ec007cd3f394a6f3dca3ad6261adfcd653cd9a6492f0f9214129b4d70d001c000cc7dd4f96dee55f4294','2021-06-16 08:58:35','2021-06-16 08:58:35'),(8,'App\\Models\\Auth\\User',1,'App\\Models\\Auth\\User',1,4,'updated','{\"id\":1,\"uuid\":\"84bcd9f2-27c2-4c1b-a6e0-9f01846fcdf7\",\"first_name\":\"Alan\",\"last_name\":\"Whitmore\",\"email\":\"admin@admin.com\",\"avatar_type\":\"gravatar\",\"avatar_location\":null,\"password\":\"$2y$10$OrxyKtMfhcc5O6hsM5rcvuraXq37sM8GGY1yVfeDDn6Zlm2DwAeZS\",\"password_changed_at\":null,\"active\":1,\"confirmation_code\":\"b67f6c5addc4afd018edcdb3472d79a3\",\"confirmed\":1,\"timezone\":\"America\\/New_York\",\"last_login_at\":\"2021-06-16 14:28:48\",\"last_login_ip\":\"127.0.0.1\",\"to_be_logged_out\":0,\"status\":1,\"created_by\":1,\"updated_by\":null,\"is_term_accept\":0,\"remember_token\":\"K48KJ4g7Ajcrxe9XuT8BSixeJP7eawMXjjKblyAkpRnAOEiPEU4lMrtIjVr2\",\"created_at\":\"2021-06-14 17:33:39\",\"updated_at\":\"2021-06-16 14:28:48\",\"deleted_at\":null}','[\"last_login_at\",\"updated_at\"]','[]','[]','http://127.0.0.1:8000/login','127.0.0.1','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0','f092a4023f8cd8b55895ca54c36d83ffc7c60151271fee5fb6b5521759d727f2f2c62a621cc7252cd0fad6b21fad3fa68f29cced0b1b9838bb953d8ce2bedc70','2021-06-16 08:58:48','2021-06-16 08:58:48'),(9,'App\\Models\\Auth\\User',1,'App\\Models\\Auth\\User',1,4,'updated','{\"id\":1,\"uuid\":\"84bcd9f2-27c2-4c1b-a6e0-9f01846fcdf7\",\"first_name\":\"Alan\",\"last_name\":\"Whitmore\",\"email\":\"admin@admin.com\",\"avatar_type\":\"gravatar\",\"avatar_location\":null,\"password\":\"$2y$10$OrxyKtMfhcc5O6hsM5rcvuraXq37sM8GGY1yVfeDDn6Zlm2DwAeZS\",\"password_changed_at\":null,\"active\":1,\"confirmation_code\":\"b67f6c5addc4afd018edcdb3472d79a3\",\"confirmed\":1,\"timezone\":\"America\\/New_York\",\"last_login_at\":\"2021-06-16 14:28:48\",\"last_login_ip\":\"127.0.0.1\",\"to_be_logged_out\":0,\"status\":1,\"created_by\":1,\"updated_by\":null,\"is_term_accept\":0,\"remember_token\":\"C7PkO17xCljqXn0uNiod69gdztWM3Cff9946gKZZGzNAQebSVEGQI3Us9ThR\",\"created_at\":\"2021-06-14 17:33:39\",\"updated_at\":\"2021-06-16 14:28:48\",\"deleted_at\":null}','[\"remember_token\"]','[]','[]','http://127.0.0.1:8000/logout','127.0.0.1','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0','497bdbd0b8d3d02f2738b2ed0f2e59a050d19757bd56b367c4b491d9ceb1c460003115f8f9b00153f8b13a59ed63715c8a3ac178bcbbb5cba51c6743c0934e5b','2021-06-27 21:39:11','2021-06-27 21:39:11'),(10,'App\\Models\\Auth\\User',1,'App\\Models\\Auth\\User',1,4,'updated','{\"id\":1,\"uuid\":\"84bcd9f2-27c2-4c1b-a6e0-9f01846fcdf7\",\"first_name\":\"Alan\",\"last_name\":\"Whitmore\",\"email\":\"admin@admin.com\",\"avatar_type\":\"gravatar\",\"avatar_location\":null,\"password\":\"$2y$10$OrxyKtMfhcc5O6hsM5rcvuraXq37sM8GGY1yVfeDDn6Zlm2DwAeZS\",\"password_changed_at\":null,\"active\":1,\"confirmation_code\":\"b67f6c5addc4afd018edcdb3472d79a3\",\"confirmed\":1,\"timezone\":\"America\\/New_York\",\"last_login_at\":\"2021-06-28 03:13:46\",\"last_login_ip\":\"127.0.0.1\",\"to_be_logged_out\":0,\"status\":1,\"created_by\":1,\"updated_by\":null,\"is_term_accept\":0,\"remember_token\":\"C7PkO17xCljqXn0uNiod69gdztWM3Cff9946gKZZGzNAQebSVEGQI3Us9ThR\",\"created_at\":\"2021-06-14 17:33:39\",\"updated_at\":\"2021-06-28 03:13:47\",\"deleted_at\":null}','[\"last_login_at\",\"updated_at\"]','[]','[]','http://127.0.0.1:8000/login','127.0.0.1','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0','eb578681a312610fb4f2a45b6ce67280ae7fb5179bf4d769b90717eacb67b11f3f3d9b33d0142dd6e4e59d14f831cf302b5ba391306a09b8a00d81066053b56a','2021-06-27 21:43:47','2021-06-27 21:43:47'),(11,'App\\Models\\Auth\\User',1,'App\\Models\\Auth\\User',1,4,'updated','{\"id\":1,\"uuid\":\"84bcd9f2-27c2-4c1b-a6e0-9f01846fcdf7\",\"first_name\":\"Alan\",\"last_name\":\"Whitmore\",\"email\":\"admin@admin.com\",\"avatar_type\":\"gravatar\",\"avatar_location\":null,\"password\":\"$2y$10$OrxyKtMfhcc5O6hsM5rcvuraXq37sM8GGY1yVfeDDn6Zlm2DwAeZS\",\"password_changed_at\":null,\"active\":1,\"confirmation_code\":\"b67f6c5addc4afd018edcdb3472d79a3\",\"confirmed\":1,\"timezone\":\"America\\/New_York\",\"last_login_at\":\"2021-06-28 03:13:46\",\"last_login_ip\":\"127.0.0.1\",\"to_be_logged_out\":0,\"status\":1,\"created_by\":1,\"updated_by\":null,\"is_term_accept\":0,\"remember_token\":\"njZifuuogT8YxAyoNicXuSS3Nnjpu3t05sMpvns3t0HDRe4NrFGWzkCddLYG\",\"created_at\":\"2021-06-14 17:33:39\",\"updated_at\":\"2021-06-28 03:13:47\",\"deleted_at\":null}','[\"remember_token\"]','[]','[]','http://127.0.0.1:8000/logout','127.0.0.1','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0','795e8c01af04c07a3f59e8523a3e525fea7f3c4a893df068b1dc720a3a63cdc24e658038a5538700445f45fd6866e2715e0e1fbc3bd108def30737990659838c','2021-06-27 21:43:54','2021-06-27 21:43:54'),(12,'App\\Models\\Auth\\User',1,'App\\Models\\Auth\\User',1,4,'updated','{\"id\":1,\"uuid\":\"84bcd9f2-27c2-4c1b-a6e0-9f01846fcdf7\",\"first_name\":\"Alan\",\"last_name\":\"Whitmore\",\"email\":\"admin@admin.com\",\"avatar_type\":\"gravatar\",\"avatar_location\":null,\"password\":\"$2y$10$OrxyKtMfhcc5O6hsM5rcvuraXq37sM8GGY1yVfeDDn6Zlm2DwAeZS\",\"password_changed_at\":null,\"active\":1,\"confirmation_code\":\"b67f6c5addc4afd018edcdb3472d79a3\",\"confirmed\":1,\"timezone\":\"America\\/New_York\",\"last_login_at\":\"2021-07-24 07:36:06\",\"last_login_ip\":\"127.0.0.1\",\"to_be_logged_out\":0,\"status\":1,\"created_by\":1,\"updated_by\":null,\"is_term_accept\":0,\"remember_token\":\"njZifuuogT8YxAyoNicXuSS3Nnjpu3t05sMpvns3t0HDRe4NrFGWzkCddLYG\",\"created_at\":\"2021-06-14 17:33:39\",\"updated_at\":\"2021-07-24 07:36:06\",\"deleted_at\":null}','[\"last_login_at\",\"updated_at\"]','[]','[]','http://127.0.0.1:8000/login','127.0.0.1','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:90.0) Gecko/20100101 Firefox/90.0','2ed42300bd11e2b5a1acfe9532623e9b2e47d0854d5268f9363a6d1061dcfe6aa0f316e6df082803fcc5fafac44e3b4f84ddeadc3441a2ea793d381fa539d1dc','2021-07-24 02:06:07','2021-07-24 02:06:07'),(13,'App\\Models\\Auth\\User',1,'App\\Models\\Auth\\User',1,4,'updated','{\"id\":1,\"uuid\":\"84bcd9f2-27c2-4c1b-a6e0-9f01846fcdf7\",\"first_name\":\"Alan\",\"last_name\":\"Whitmore\",\"email\":\"admin@admin.com\",\"avatar_type\":\"gravatar\",\"avatar_location\":null,\"password\":\"$2y$10$OrxyKtMfhcc5O6hsM5rcvuraXq37sM8GGY1yVfeDDn6Zlm2DwAeZS\",\"password_changed_at\":null,\"active\":1,\"confirmation_code\":\"b67f6c5addc4afd018edcdb3472d79a3\",\"confirmed\":1,\"timezone\":\"Asia\\/Kolkata\",\"last_login_at\":\"2021-08-31 15:00:33\",\"last_login_ip\":\"103.163.63.198\",\"to_be_logged_out\":0,\"status\":1,\"created_by\":1,\"updated_by\":null,\"is_term_accept\":0,\"remember_token\":\"njZifuuogT8YxAyoNicXuSS3Nnjpu3t05sMpvns3t0HDRe4NrFGWzkCddLYG\",\"created_at\":\"2021-06-14 12:03:39\",\"updated_at\":\"2021-08-31 15:00:33\",\"deleted_at\":null}','[\"timezone\",\"last_login_at\",\"last_login_ip\",\"updated_at\"]','[]','[]','https://www.padhloji.com/login','103.163.63.198','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:91.0) Gecko/20100101 Firefox/91.0','b4194fd5cdf5be6d2bfb1d175522a09107f928ad4585365e9852f179c04ae15a4deddaf043a7a592d5f29853bdd83f3758cda060c4f0f51034ad8aa27a46dfd7','2021-08-31 15:00:33','2021-08-31 15:00:33'),(14,'App\\Models\\Auth\\User',1,'App\\Models\\Auth\\User',1,4,'updated','{\"id\":1,\"uuid\":\"84bcd9f2-27c2-4c1b-a6e0-9f01846fcdf7\",\"first_name\":\"Alan\",\"last_name\":\"Whitmore\",\"email\":\"admin@admin.com\",\"avatar_type\":\"gravatar\",\"avatar_location\":null,\"password\":\"$2y$10$OrxyKtMfhcc5O6hsM5rcvuraXq37sM8GGY1yVfeDDn6Zlm2DwAeZS\",\"password_changed_at\":null,\"active\":1,\"confirmation_code\":\"b67f6c5addc4afd018edcdb3472d79a3\",\"confirmed\":1,\"timezone\":\"Asia\\/Kolkata\",\"last_login_at\":\"2021-09-02 15:38:57\",\"last_login_ip\":\"103.92.43.231\",\"to_be_logged_out\":0,\"status\":1,\"created_by\":1,\"updated_by\":null,\"is_term_accept\":0,\"remember_token\":\"njZifuuogT8YxAyoNicXuSS3Nnjpu3t05sMpvns3t0HDRe4NrFGWzkCddLYG\",\"created_at\":\"2021-06-14 12:03:39\",\"updated_at\":\"2021-09-02 15:38:57\",\"deleted_at\":null}','[\"last_login_at\",\"last_login_ip\",\"updated_at\"]','[]','[]','https://www.padhloji.com/login','103.92.43.231','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36','802a8df579f10c24b015b45cfaba8b98609b2f43bd6e185f227707eef36f5101d0f4ea5ff6436c56baf7b310b95163c0d17078461bf01383d6214b6779a21bbe','2021-09-02 15:38:57','2021-09-02 15:38:57'),(15,'App\\Models\\Auth\\User',1,'App\\Models\\Auth\\User',1,4,'updated','{\"id\":1,\"uuid\":\"84bcd9f2-27c2-4c1b-a6e0-9f01846fcdf7\",\"first_name\":\"Alan\",\"last_name\":\"Whitmore\",\"email\":\"admin@admin.com\",\"avatar_type\":\"gravatar\",\"avatar_location\":null,\"password\":\"$2y$10$OrxyKtMfhcc5O6hsM5rcvuraXq37sM8GGY1yVfeDDn6Zlm2DwAeZS\",\"password_changed_at\":null,\"active\":1,\"confirmation_code\":\"b67f6c5addc4afd018edcdb3472d79a3\",\"confirmed\":1,\"timezone\":\"Asia\\/Kolkata\",\"last_login_at\":\"2021-09-03 08:46:59\",\"last_login_ip\":\"139.5.242.68\",\"to_be_logged_out\":0,\"status\":1,\"created_by\":1,\"updated_by\":null,\"is_term_accept\":0,\"remember_token\":\"njZifuuogT8YxAyoNicXuSS3Nnjpu3t05sMpvns3t0HDRe4NrFGWzkCddLYG\",\"created_at\":\"2021-06-14 12:03:39\",\"updated_at\":\"2021-09-03 08:46:59\",\"deleted_at\":null}','[\"last_login_at\",\"last_login_ip\",\"updated_at\"]','[]','[]','https://www.padhloji.com/login','139.5.242.68','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.131 Safari/537.36','c579ac8b9d6d94384e5b9bf33d8757869a490ff6bea0bd667c2c11a0cdff513379baa1a1ec78364111c988c991bd0f5b76fe0b11cf6bf530bdfc71f5369b184c','2021-09-03 08:46:59','2021-09-03 08:46:59'),(16,'App\\Models\\Auth\\User',1,'App\\Models\\Auth\\User',1,4,'updated','{\"id\":1,\"uuid\":\"84bcd9f2-27c2-4c1b-a6e0-9f01846fcdf7\",\"first_name\":\"Alan\",\"last_name\":\"Whitmore\",\"email\":\"admin@admin.com\",\"avatar_type\":\"gravatar\",\"avatar_location\":null,\"password\":\"$2y$10$OrxyKtMfhcc5O6hsM5rcvuraXq37sM8GGY1yVfeDDn6Zlm2DwAeZS\",\"password_changed_at\":null,\"active\":1,\"confirmation_code\":\"b67f6c5addc4afd018edcdb3472d79a3\",\"confirmed\":1,\"timezone\":\"Asia\\/Kolkata\",\"last_login_at\":\"2021-09-12 16:45:40\",\"last_login_ip\":\"49.36.184.112\",\"to_be_logged_out\":0,\"status\":1,\"created_by\":1,\"updated_by\":null,\"is_term_accept\":0,\"remember_token\":\"njZifuuogT8YxAyoNicXuSS3Nnjpu3t05sMpvns3t0HDRe4NrFGWzkCddLYG\",\"created_at\":\"2021-06-14 12:03:39\",\"updated_at\":\"2021-09-12 16:45:40\",\"deleted_at\":null}','[\"last_login_at\",\"last_login_ip\",\"updated_at\"]','[]','[]','https://www.padhloji.com/login','49.36.184.112','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/93.0.4577.63 Safari/537.36','db49d6d749181e85e92ea8c50e8fd57b58507db8f1f8341dee49519b169753cfe62448d579657e727ca7843510614d22dbb18090d73b99742ed36cf1d8834171','2021-09-12 16:45:40','2021-09-12 16:45:40'),(17,'App\\Models\\Auth\\User',1,'App\\Models\\Auth\\User',1,4,'updated','{\"id\":1,\"uuid\":\"84bcd9f2-27c2-4c1b-a6e0-9f01846fcdf7\",\"first_name\":\"Alan\",\"last_name\":\"Whitmore\",\"email\":\"admin@admin.com\",\"avatar_type\":\"gravatar\",\"avatar_location\":null,\"password\":\"$2y$10$OrxyKtMfhcc5O6hsM5rcvuraXq37sM8GGY1yVfeDDn6Zlm2DwAeZS\",\"password_changed_at\":null,\"active\":1,\"confirmation_code\":\"b67f6c5addc4afd018edcdb3472d79a3\",\"confirmed\":1,\"timezone\":\"Asia\\/Kolkata\",\"last_login_at\":\"2021-09-25 17:44:08\",\"last_login_ip\":\"110.235.239.175\",\"to_be_logged_out\":0,\"status\":1,\"created_by\":1,\"updated_by\":null,\"is_term_accept\":0,\"remember_token\":\"njZifuuogT8YxAyoNicXuSS3Nnjpu3t05sMpvns3t0HDRe4NrFGWzkCddLYG\",\"created_at\":\"2021-06-14 12:03:39\",\"updated_at\":\"2021-09-25 17:44:08\",\"deleted_at\":null}','[\"last_login_at\",\"last_login_ip\",\"updated_at\"]','[]','[]','https://www.padhloji.com/login','110.235.239.175','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.131 Safari/537.36','30487585591acb89b78de47bdc26ef05e0a741f8ad3c2bb37314b7a696b98fc95c1cd653dcb58ab29dc15f8d8c1d73a56ec947611e45b4cbe3bc043cb58bc405','2021-09-25 17:44:08','2021-09-25 17:44:08'),(18,'App\\Models\\Auth\\User',1,'App\\Models\\Auth\\User',1,4,'updated','{\"id\":1,\"uuid\":\"84bcd9f2-27c2-4c1b-a6e0-9f01846fcdf7\",\"first_name\":\"Alan\",\"last_name\":\"Whitmore\",\"email\":\"admin@admin.com\",\"avatar_type\":\"gravatar\",\"avatar_location\":null,\"password\":\"$2y$10$OrxyKtMfhcc5O6hsM5rcvuraXq37sM8GGY1yVfeDDn6Zlm2DwAeZS\",\"password_changed_at\":null,\"active\":1,\"confirmation_code\":\"b67f6c5addc4afd018edcdb3472d79a3\",\"confirmed\":1,\"timezone\":\"Asia\\/Kolkata\",\"last_login_at\":\"2021-09-25 17:44:08\",\"last_login_ip\":\"110.235.239.175\",\"to_be_logged_out\":0,\"status\":1,\"created_by\":1,\"updated_by\":null,\"is_term_accept\":0,\"remember_token\":\"uv0dW7WL8GQTjzV3Cz2xQcFilvD1MiHDFuLdgdguqhixGlQFEIeBJtAuz0Mm\",\"created_at\":\"2021-06-14 12:03:39\",\"updated_at\":\"2021-09-25 17:44:08\",\"deleted_at\":null}','[\"remember_token\"]','[]','[]','https://www.padhloji.com/logout','103.163.63.249','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:92.0) Gecko/20100101 Firefox/92.0','0b62dc6451f0b5a3de2f368bc68cb5d3f9a0a920df81b0a736c23b3e00e0c1046089c80488986227ce8e0a0152ba1365f5c343524590590a65ba5439035d2928','2021-09-27 15:50:09','2021-09-27 15:50:09'),(19,'App\\Models\\Auth\\User',1,'App\\Models\\Auth\\User',1,4,'updated','{\"id\":1,\"uuid\":\"84bcd9f2-27c2-4c1b-a6e0-9f01846fcdf7\",\"first_name\":\"Alan\",\"last_name\":\"Whitmore\",\"email\":\"admin@admin.com\",\"avatar_type\":\"gravatar\",\"avatar_location\":null,\"password\":\"$2y$10$OrxyKtMfhcc5O6hsM5rcvuraXq37sM8GGY1yVfeDDn6Zlm2DwAeZS\",\"password_changed_at\":null,\"active\":1,\"confirmation_code\":\"b67f6c5addc4afd018edcdb3472d79a3\",\"confirmed\":1,\"timezone\":\"Asia\\/Kolkata\",\"last_login_at\":\"2021-09-27 15:50:33\",\"last_login_ip\":\"103.163.63.249\",\"to_be_logged_out\":0,\"status\":1,\"created_by\":1,\"updated_by\":null,\"is_term_accept\":0,\"remember_token\":\"uv0dW7WL8GQTjzV3Cz2xQcFilvD1MiHDFuLdgdguqhixGlQFEIeBJtAuz0Mm\",\"created_at\":\"2021-06-14 12:03:39\",\"updated_at\":\"2021-09-27 15:50:33\",\"deleted_at\":null}','[\"last_login_at\",\"last_login_ip\",\"updated_at\"]','[]','[]','https://www.padhloji.com/login','103.163.63.249','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:92.0) Gecko/20100101 Firefox/92.0','3bc76972f5dead8b9f271f77b1a52f7d4e0d651c57456201c372368928349f1aea6a6760aa9d028da057120dae2e55381900cf79a018ef02f036480129eb1ac8','2021-09-27 15:50:33','2021-09-27 15:50:33'),(20,'App\\Models\\Auth\\User',1,'App\\Models\\Auth\\User',1,4,'updated','{\"id\":1,\"uuid\":\"84bcd9f2-27c2-4c1b-a6e0-9f01846fcdf7\",\"first_name\":\"Alan\",\"last_name\":\"Whitmore\",\"email\":\"admin@admin.com\",\"avatar_type\":\"gravatar\",\"avatar_location\":null,\"password\":\"$2y$10$OrxyKtMfhcc5O6hsM5rcvuraXq37sM8GGY1yVfeDDn6Zlm2DwAeZS\",\"password_changed_at\":null,\"active\":1,\"confirmation_code\":\"b67f6c5addc4afd018edcdb3472d79a3\",\"confirmed\":1,\"timezone\":\"Asia\\/Kolkata\",\"last_login_at\":\"2021-09-27 15:50:33\",\"last_login_ip\":\"103.163.63.249\",\"to_be_logged_out\":0,\"status\":1,\"created_by\":1,\"updated_by\":null,\"is_term_accept\":0,\"remember_token\":\"ndJvwWl6jpUeExqqeAgAWN6ahQQvP2CV6JlMoJh77xLT6QW0JG42OInIclIq\",\"created_at\":\"2021-06-14 12:03:39\",\"updated_at\":\"2021-09-27 15:50:33\",\"deleted_at\":null}','[\"remember_token\"]','[]','[]','https://www.padhloji.com/logout','103.163.63.249','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:92.0) Gecko/20100101 Firefox/92.0','69d61e938869833eec344ab384f16f61cea4d5c2c870ad6a9ddac710006650c7f89595cb93899aa66343806f6aef70212d056f787a69e1a079084800a903a97a','2021-09-27 15:50:49','2021-09-27 15:50:49'),(21,'App\\Models\\Auth\\User',1,'App\\Models\\Auth\\User',1,4,'updated','{\"id\":1,\"uuid\":\"84bcd9f2-27c2-4c1b-a6e0-9f01846fcdf7\",\"first_name\":\"Alan\",\"last_name\":\"Whitmore\",\"email\":\"admin@admin.com\",\"avatar_type\":\"gravatar\",\"avatar_location\":null,\"password\":\"$2y$10$OrxyKtMfhcc5O6hsM5rcvuraXq37sM8GGY1yVfeDDn6Zlm2DwAeZS\",\"password_changed_at\":null,\"active\":1,\"confirmation_code\":\"b67f6c5addc4afd018edcdb3472d79a3\",\"confirmed\":1,\"timezone\":\"Asia\\/Kolkata\",\"last_login_at\":\"2021-09-27 16:04:16\",\"last_login_ip\":\"103.163.63.249\",\"to_be_logged_out\":0,\"status\":1,\"created_by\":1,\"updated_by\":null,\"is_term_accept\":0,\"remember_token\":\"ndJvwWl6jpUeExqqeAgAWN6ahQQvP2CV6JlMoJh77xLT6QW0JG42OInIclIq\",\"created_at\":\"2021-06-14 12:03:39\",\"updated_at\":\"2021-09-27 16:04:16\",\"deleted_at\":null}','[\"last_login_at\",\"updated_at\"]','[]','[]','https://www.padhloji.com/login','103.163.63.249','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:92.0) Gecko/20100101 Firefox/92.0','af82c14c0bdf52d26a7ddfebdf826cd12c67cbece38916724358f412a697f1c40ecba2e920570bcd3c13554b341c50c5e32f86ddb1d754f1842a625a52d2c8c0','2021-09-27 16:04:16','2021-09-27 16:04:16'),(22,'App\\Models\\Auth\\User',1,'App\\Models\\Auth\\User',1,4,'updated','{\"id\":1,\"uuid\":\"84bcd9f2-27c2-4c1b-a6e0-9f01846fcdf7\",\"first_name\":\"Alan\",\"last_name\":\"Whitmore\",\"email\":\"admin@admin.com\",\"avatar_type\":\"gravatar\",\"avatar_location\":null,\"password\":\"$2y$10$OrxyKtMfhcc5O6hsM5rcvuraXq37sM8GGY1yVfeDDn6Zlm2DwAeZS\",\"password_changed_at\":null,\"active\":1,\"confirmation_code\":\"b67f6c5addc4afd018edcdb3472d79a3\",\"confirmed\":1,\"timezone\":\"Asia\\/Kolkata\",\"last_login_at\":\"2021-09-27 16:04:16\",\"last_login_ip\":\"103.163.63.249\",\"to_be_logged_out\":0,\"status\":1,\"created_by\":1,\"updated_by\":null,\"is_term_accept\":0,\"remember_token\":\"GVEfpV1Low6zAGylY50IpNrthEBcLunTeMiMfYM8ipQpMwyj3gp3ouBTuY9H\",\"created_at\":\"2021-06-14 12:03:39\",\"updated_at\":\"2021-09-27 16:04:16\",\"deleted_at\":null}','[\"remember_token\"]','[]','[]','https://www.padhloji.com/logout','103.163.63.249','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:92.0) Gecko/20100101 Firefox/92.0','6fec73c3b4d9207443b0b791e96cad6e100a8ed4832c86c9d7b924540080c6c810c8198e0b3c8f28c00c5564d7d48d5655d2c55c99b45d0c977d1fd4b7863f54','2021-09-27 16:04:17','2021-09-27 16:04:17'),(23,'App\\Models\\Auth\\User',1,'App\\Models\\Auth\\User',1,4,'updated','{\"id\":1,\"uuid\":\"84bcd9f2-27c2-4c1b-a6e0-9f01846fcdf7\",\"first_name\":\"Alan\",\"last_name\":\"Whitmore\",\"email\":\"admin@admin.com\",\"avatar_type\":\"gravatar\",\"avatar_location\":null,\"password\":\"$2y$10$OrxyKtMfhcc5O6hsM5rcvuraXq37sM8GGY1yVfeDDn6Zlm2DwAeZS\",\"password_changed_at\":null,\"active\":1,\"confirmation_code\":\"b67f6c5addc4afd018edcdb3472d79a3\",\"confirmed\":1,\"timezone\":\"Asia\\/Kolkata\",\"last_login_at\":\"2021-09-27 16:04:20\",\"last_login_ip\":\"103.163.63.249\",\"to_be_logged_out\":0,\"status\":1,\"created_by\":1,\"updated_by\":null,\"is_term_accept\":0,\"remember_token\":\"GVEfpV1Low6zAGylY50IpNrthEBcLunTeMiMfYM8ipQpMwyj3gp3ouBTuY9H\",\"created_at\":\"2021-06-14 12:03:39\",\"updated_at\":\"2021-09-27 16:04:20\",\"deleted_at\":null}','[\"last_login_at\",\"updated_at\"]','[]','[]','https://www.padhloji.com/login','103.163.63.249','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:92.0) Gecko/20100101 Firefox/92.0','533c7808ca63db588b3a38512beca125de420160da3e6ae0d6da8549d117391100be74456c12ce3befcdfe55eb31f983e7d975c9d7e05637f8b47b2eb50f8c32','2021-09-27 16:04:20','2021-09-27 16:04:20'),(24,'App\\Models\\Auth\\User',1,'App\\Models\\Auth\\User',1,4,'updated','{\"id\":1,\"uuid\":\"84bcd9f2-27c2-4c1b-a6e0-9f01846fcdf7\",\"first_name\":\"Alan\",\"last_name\":\"Whitmore\",\"email\":\"admin@admin.com\",\"avatar_type\":\"gravatar\",\"avatar_location\":null,\"password\":\"$2y$10$OrxyKtMfhcc5O6hsM5rcvuraXq37sM8GGY1yVfeDDn6Zlm2DwAeZS\",\"password_changed_at\":null,\"active\":1,\"confirmation_code\":\"b67f6c5addc4afd018edcdb3472d79a3\",\"confirmed\":1,\"timezone\":\"Asia\\/Kolkata\",\"last_login_at\":\"2021-09-27 16:04:20\",\"last_login_ip\":\"103.163.63.249\",\"to_be_logged_out\":0,\"status\":1,\"created_by\":1,\"updated_by\":null,\"is_term_accept\":0,\"remember_token\":\"9mpbnnLvxgIqSQEURoeMBk3fZVf5imZ6e60l0daFhdEppXrHATuqfu9CXTRo\",\"created_at\":\"2021-06-14 12:03:39\",\"updated_at\":\"2021-09-27 16:04:20\",\"deleted_at\":null}','[\"remember_token\"]','[]','[]','https://www.padhloji.com/logout','103.163.63.249','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:92.0) Gecko/20100101 Firefox/92.0','63869de344eaeba78bdec6afbeae6e09f41ed2ccd72cd5a61865eb698052b04e3d08322445f0cba7ea0f9b11ea9ff24a25e6f878bcc6e47823fc0d4306561923','2021-09-27 16:04:23','2021-09-27 16:04:23'),(25,'App\\Models\\Auth\\User',1,'App\\Models\\Auth\\User',1,4,'updated','{\"id\":1,\"uuid\":\"84bcd9f2-27c2-4c1b-a6e0-9f01846fcdf7\",\"first_name\":\"Alan\",\"last_name\":\"Whitmore\",\"email\":\"admin@admin.com\",\"avatar_type\":\"gravatar\",\"avatar_location\":null,\"password\":\"$2y$10$OrxyKtMfhcc5O6hsM5rcvuraXq37sM8GGY1yVfeDDn6Zlm2DwAeZS\",\"password_changed_at\":null,\"active\":1,\"confirmation_code\":\"b67f6c5addc4afd018edcdb3472d79a3\",\"confirmed\":1,\"timezone\":\"Asia\\/Kolkata\",\"last_login_at\":\"2021-09-27 16:04:26\",\"last_login_ip\":\"103.163.63.249\",\"to_be_logged_out\":0,\"status\":1,\"created_by\":1,\"updated_by\":null,\"is_term_accept\":0,\"remember_token\":\"9mpbnnLvxgIqSQEURoeMBk3fZVf5imZ6e60l0daFhdEppXrHATuqfu9CXTRo\",\"created_at\":\"2021-06-14 12:03:39\",\"updated_at\":\"2021-09-27 16:04:26\",\"deleted_at\":null}','[\"last_login_at\",\"updated_at\"]','[]','[]','https://www.padhloji.com/login','103.163.63.249','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:92.0) Gecko/20100101 Firefox/92.0','a0d74472a15a599984732d636547bd1674e242d7254088c71af576005a482a46095d94adbc242a33a9c124181d9048541f9f0dbc28af596fe69a89e175193449','2021-09-27 16:04:26','2021-09-27 16:04:26'),(26,'App\\Models\\Auth\\User',1,'App\\Models\\Auth\\User',1,4,'updated','{\"id\":1,\"uuid\":\"84bcd9f2-27c2-4c1b-a6e0-9f01846fcdf7\",\"first_name\":\"Alan\",\"last_name\":\"Whitmore\",\"email\":\"admin@admin.com\",\"avatar_type\":\"gravatar\",\"avatar_location\":null,\"password\":\"$2y$10$OrxyKtMfhcc5O6hsM5rcvuraXq37sM8GGY1yVfeDDn6Zlm2DwAeZS\",\"password_changed_at\":null,\"active\":1,\"confirmation_code\":\"b67f6c5addc4afd018edcdb3472d79a3\",\"confirmed\":1,\"timezone\":\"Asia\\/Kolkata\",\"last_login_at\":\"2021-09-27 16:04:26\",\"last_login_ip\":\"103.163.63.249\",\"to_be_logged_out\":0,\"status\":1,\"created_by\":1,\"updated_by\":null,\"is_term_accept\":0,\"remember_token\":\"FXH8tRGxkVvqZ5NGLjIAX8MT0joGlUcBMYFSZqheotQ8nOzfJLWzzvqAvzRV\",\"created_at\":\"2021-06-14 12:03:39\",\"updated_at\":\"2021-09-27 16:04:26\",\"deleted_at\":null}','[\"remember_token\"]','[]','[]','https://www.padhloji.com/logout','103.163.63.249','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:92.0) Gecko/20100101 Firefox/92.0','6b16147b409d66d83c34a2a8300f94f4e47d8237be1d87931952eff500b51a513b6aeb83116ce09947f9b9e1198c798576d9177b92eb6908e91a7a6bd24474dd','2021-09-27 16:04:29','2021-09-27 16:04:29'),(27,'App\\Models\\Auth\\User',1,'App\\Models\\Auth\\User',1,4,'updated','{\"id\":1,\"uuid\":\"84bcd9f2-27c2-4c1b-a6e0-9f01846fcdf7\",\"first_name\":\"Alan\",\"last_name\":\"Whitmore\",\"email\":\"admin@admin.com\",\"avatar_type\":\"gravatar\",\"avatar_location\":null,\"password\":\"$2y$10$OrxyKtMfhcc5O6hsM5rcvuraXq37sM8GGY1yVfeDDn6Zlm2DwAeZS\",\"password_changed_at\":null,\"active\":1,\"confirmation_code\":\"b67f6c5addc4afd018edcdb3472d79a3\",\"confirmed\":1,\"timezone\":\"Asia\\/Kolkata\",\"last_login_at\":\"2021-09-27 16:04:32\",\"last_login_ip\":\"103.163.63.249\",\"to_be_logged_out\":0,\"status\":1,\"created_by\":1,\"updated_by\":null,\"is_term_accept\":0,\"remember_token\":\"FXH8tRGxkVvqZ5NGLjIAX8MT0joGlUcBMYFSZqheotQ8nOzfJLWzzvqAvzRV\",\"created_at\":\"2021-06-14 12:03:39\",\"updated_at\":\"2021-09-27 16:04:32\",\"deleted_at\":null}','[\"last_login_at\",\"updated_at\"]','[]','[]','https://www.padhloji.com/login','103.163.63.249','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:92.0) Gecko/20100101 Firefox/92.0','bec6e82df33bd891f25504b94d0da5995513fcb01c672fed009a68d6d7dbd7a94490220049318d0253a9b6385a9bf3ffca1cca793a2294070634c60f6013284d','2021-09-27 16:04:32','2021-09-27 16:04:32'),(28,'App\\Models\\Auth\\User',1,'App\\Models\\Auth\\User',1,4,'updated','{\"id\":1,\"uuid\":\"84bcd9f2-27c2-4c1b-a6e0-9f01846fcdf7\",\"first_name\":\"Alan\",\"last_name\":\"Whitmore\",\"email\":\"admin@admin.com\",\"avatar_type\":\"gravatar\",\"avatar_location\":null,\"password\":\"$2y$10$OrxyKtMfhcc5O6hsM5rcvuraXq37sM8GGY1yVfeDDn6Zlm2DwAeZS\",\"password_changed_at\":null,\"active\":1,\"confirmation_code\":\"b67f6c5addc4afd018edcdb3472d79a3\",\"confirmed\":1,\"timezone\":\"Asia\\/Kolkata\",\"last_login_at\":\"2021-09-27 16:04:32\",\"last_login_ip\":\"103.163.63.249\",\"to_be_logged_out\":0,\"status\":1,\"created_by\":1,\"updated_by\":null,\"is_term_accept\":0,\"remember_token\":\"y5pbQTX7HrUDqtt9IZZlgjyj3odwqtGU3G2HwAvq5PdkOc5Sw6uoN7SVtRZZ\",\"created_at\":\"2021-06-14 12:03:39\",\"updated_at\":\"2021-09-27 16:04:32\",\"deleted_at\":null}','[\"remember_token\"]','[]','[]','https://www.padhloji.com/logout','103.163.63.249','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:92.0) Gecko/20100101 Firefox/92.0','d3fd55e7f8a23b7e00ddf342518f75d9cfdf79291ae23a66a2d884dabd323854a6119e6efd3387e2da83cd57057cf07e26622f97f08ffec409de079d8f104a48','2021-09-27 16:04:36','2021-09-27 16:04:36'),(29,'App\\Models\\Auth\\User',1,'App\\Models\\Auth\\User',1,4,'updated','{\"id\":1,\"uuid\":\"84bcd9f2-27c2-4c1b-a6e0-9f01846fcdf7\",\"first_name\":\"Alan\",\"last_name\":\"Whitmore\",\"email\":\"admin@admin.com\",\"avatar_type\":\"gravatar\",\"avatar_location\":null,\"password\":\"$2y$10$OrxyKtMfhcc5O6hsM5rcvuraXq37sM8GGY1yVfeDDn6Zlm2DwAeZS\",\"password_changed_at\":null,\"active\":1,\"confirmation_code\":\"b67f6c5addc4afd018edcdb3472d79a3\",\"confirmed\":1,\"timezone\":\"Asia\\/Kolkata\",\"last_login_at\":\"2021-09-27 16:04:40\",\"last_login_ip\":\"103.163.63.249\",\"to_be_logged_out\":0,\"status\":1,\"created_by\":1,\"updated_by\":null,\"is_term_accept\":0,\"remember_token\":\"y5pbQTX7HrUDqtt9IZZlgjyj3odwqtGU3G2HwAvq5PdkOc5Sw6uoN7SVtRZZ\",\"created_at\":\"2021-06-14 12:03:39\",\"updated_at\":\"2021-09-27 16:04:41\",\"deleted_at\":null}','[\"last_login_at\",\"updated_at\"]','[]','[]','https://www.padhloji.com/login','103.163.63.249','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:92.0) Gecko/20100101 Firefox/92.0','eef06b50e48d9ef0d782c943ee12d3d1096349a149fa398eadae6a64ba73b7e7c606cfe9e941a9377e5c93bcbc93d377c6f9fa20185964ba248598ab351537ea','2021-09-27 16:04:41','2021-09-27 16:04:41'),(30,'App\\Models\\Auth\\User',1,'App\\Models\\Auth\\User',1,4,'updated','{\"id\":1,\"uuid\":\"84bcd9f2-27c2-4c1b-a6e0-9f01846fcdf7\",\"first_name\":\"Alan\",\"last_name\":\"Whitmore\",\"email\":\"admin@admin.com\",\"avatar_type\":\"gravatar\",\"avatar_location\":null,\"password\":\"$2y$10$OrxyKtMfhcc5O6hsM5rcvuraXq37sM8GGY1yVfeDDn6Zlm2DwAeZS\",\"password_changed_at\":null,\"active\":1,\"confirmation_code\":\"b67f6c5addc4afd018edcdb3472d79a3\",\"confirmed\":1,\"timezone\":\"Asia\\/Kolkata\",\"last_login_at\":\"2021-09-27 16:04:40\",\"last_login_ip\":\"103.163.63.249\",\"to_be_logged_out\":0,\"status\":1,\"created_by\":1,\"updated_by\":null,\"is_term_accept\":0,\"remember_token\":\"gVRo3iiaeCzRDRi1bgLkURV2HGghCt9hBjV0M6SncKMexW4qtkaQfKImuKxS\",\"created_at\":\"2021-06-14 12:03:39\",\"updated_at\":\"2021-09-27 16:04:41\",\"deleted_at\":null}','[\"remember_token\"]','[]','[]','https://www.padhloji.com/logout','103.163.63.249','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:92.0) Gecko/20100101 Firefox/92.0','3a0862cda8d54693ac802e825c7a91a008cb94f6cfabdebaa7c56eaf1936a7dbce1ec679b1385a5c2f717b9b40095ba4852488c5ed6ef3968c0fd3fc10586943','2021-09-27 16:04:44','2021-09-27 16:04:44'),(31,'App\\Models\\Auth\\User',1,'App\\Models\\Auth\\User',1,4,'updated','{\"id\":1,\"uuid\":\"84bcd9f2-27c2-4c1b-a6e0-9f01846fcdf7\",\"first_name\":\"Alan\",\"last_name\":\"Whitmore\",\"email\":\"admin@admin.com\",\"avatar_type\":\"gravatar\",\"avatar_location\":null,\"password\":\"$2y$10$OrxyKtMfhcc5O6hsM5rcvuraXq37sM8GGY1yVfeDDn6Zlm2DwAeZS\",\"password_changed_at\":null,\"active\":1,\"confirmation_code\":\"b67f6c5addc4afd018edcdb3472d79a3\",\"confirmed\":1,\"timezone\":\"Asia\\/Kolkata\",\"last_login_at\":\"2021-09-27 16:20:32\",\"last_login_ip\":\"223.225.60.13\",\"to_be_logged_out\":0,\"status\":1,\"created_by\":1,\"updated_by\":null,\"is_term_accept\":0,\"remember_token\":\"gVRo3iiaeCzRDRi1bgLkURV2HGghCt9hBjV0M6SncKMexW4qtkaQfKImuKxS\",\"created_at\":\"2021-06-14 12:03:39\",\"updated_at\":\"2021-09-27 16:20:32\",\"deleted_at\":null}','[\"last_login_at\",\"last_login_ip\",\"updated_at\"]','[]','[]','https://www.padhloji.com/login','223.225.60.13','Mozilla/5.0 (iPhone; CPU iPhone OS 15_0 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) CriOS/94.0.4606.52 Mobile/15E148 Safari/604.1','f4ecdf7d2828a82393d1f9b7f81528c865b75bb80cee68dc4fba0360a396ecf0762d37adfe35ca3a21346bb918120166dd3ecda841a4886f2a342e9c598c0e44','2021-09-27 16:20:32','2021-09-27 16:20:32'),(32,'App\\Models\\Auth\\User',1,'App\\Models\\Auth\\User',1,4,'updated','{\"id\":1,\"uuid\":\"84bcd9f2-27c2-4c1b-a6e0-9f01846fcdf7\",\"first_name\":\"Alan\",\"last_name\":\"Whitmore\",\"email\":\"admin@admin.com\",\"avatar_type\":\"gravatar\",\"avatar_location\":null,\"password\":\"$2y$10$OrxyKtMfhcc5O6hsM5rcvuraXq37sM8GGY1yVfeDDn6Zlm2DwAeZS\",\"password_changed_at\":null,\"active\":1,\"confirmation_code\":\"b67f6c5addc4afd018edcdb3472d79a3\",\"confirmed\":1,\"timezone\":\"Asia\\/Kolkata\",\"last_login_at\":\"2021-09-27 16:25:33\",\"last_login_ip\":\"103.163.63.249\",\"to_be_logged_out\":0,\"status\":1,\"created_by\":1,\"updated_by\":null,\"is_term_accept\":0,\"remember_token\":\"gVRo3iiaeCzRDRi1bgLkURV2HGghCt9hBjV0M6SncKMexW4qtkaQfKImuKxS\",\"created_at\":\"2021-06-14 12:03:39\",\"updated_at\":\"2021-09-27 16:25:33\",\"deleted_at\":null}','[\"last_login_at\",\"last_login_ip\",\"updated_at\"]','[]','[]','https://www.padhloji.com/login','103.163.63.249','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:92.0) Gecko/20100101 Firefox/92.0','1264822b3d985b2545e9c57a5fbf37445dbe378878d77bf3eac4e4825467f266480350fa18d7465018e2b41e0b027d979bcf2f2c4427e99d5e4f8864dd42021d','2021-09-27 16:25:33','2021-09-27 16:25:33'),(33,'App\\Models\\Auth\\User',1,'App\\Models\\Auth\\User',1,4,'updated','{\"id\":1,\"uuid\":\"84bcd9f2-27c2-4c1b-a6e0-9f01846fcdf7\",\"first_name\":\"Alan\",\"last_name\":\"Whitmore\",\"email\":\"admin@admin.com\",\"avatar_type\":\"gravatar\",\"avatar_location\":null,\"password\":\"$2y$10$OrxyKtMfhcc5O6hsM5rcvuraXq37sM8GGY1yVfeDDn6Zlm2DwAeZS\",\"password_changed_at\":null,\"active\":1,\"confirmation_code\":\"b67f6c5addc4afd018edcdb3472d79a3\",\"confirmed\":1,\"timezone\":\"Asia\\/Kolkata\",\"last_login_at\":\"2021-09-28 06:27:44\",\"last_login_ip\":\"103.92.43.240\",\"to_be_logged_out\":0,\"status\":1,\"created_by\":1,\"updated_by\":null,\"is_term_accept\":0,\"remember_token\":\"gVRo3iiaeCzRDRi1bgLkURV2HGghCt9hBjV0M6SncKMexW4qtkaQfKImuKxS\",\"created_at\":\"2021-06-14 12:03:39\",\"updated_at\":\"2021-09-28 06:27:44\",\"deleted_at\":null}','[\"last_login_at\",\"last_login_ip\",\"updated_at\"]','[]','[]','https://www.padhloji.com/login','103.92.43.240','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.131 Safari/537.36','ce6ebd909f0f56227a2be22274e7c2dad8293cf838e54a94171516849d9567629cce8d7c4f094a5dff7260d1bac4448799d96dc1537de06d51f1d60eebe276d2','2021-09-28 06:27:44','2021-09-28 06:27:44'),(34,'App\\Models\\Auth\\User',1,'App\\Models\\Auth\\User',1,4,'updated','{\"id\":1,\"uuid\":\"84bcd9f2-27c2-4c1b-a6e0-9f01846fcdf7\",\"first_name\":\"Alan\",\"last_name\":\"Whitmore\",\"email\":\"admin@admin.com\",\"avatar_type\":\"gravatar\",\"avatar_location\":null,\"password\":\"$2y$10$OrxyKtMfhcc5O6hsM5rcvuraXq37sM8GGY1yVfeDDn6Zlm2DwAeZS\",\"password_changed_at\":null,\"active\":1,\"confirmation_code\":\"b67f6c5addc4afd018edcdb3472d79a3\",\"confirmed\":1,\"timezone\":\"Asia\\/Kolkata\",\"last_login_at\":\"2021-09-29 17:46:32\",\"last_login_ip\":\"45.118.158.56\",\"to_be_logged_out\":0,\"status\":1,\"created_by\":1,\"updated_by\":null,\"is_term_accept\":0,\"remember_token\":\"gVRo3iiaeCzRDRi1bgLkURV2HGghCt9hBjV0M6SncKMexW4qtkaQfKImuKxS\",\"created_at\":\"2021-06-14 12:03:39\",\"updated_at\":\"2021-09-29 17:46:33\",\"deleted_at\":null}','[\"last_login_at\",\"last_login_ip\",\"updated_at\"]','[]','[]','https://www.padhloji.com/login','45.118.158.56','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.131 Safari/537.36','c30797c588e35e161a5784e31837218b288b10670ed06bf47e006ebcd2213b1a7b037cf3d3c36c3c28a93ccff9ebdb4aa077d5618d4ee99ab8c1873f05e7b314','2021-09-29 17:46:33','2021-09-29 17:46:33'),(35,'App\\Models\\Auth\\User',1,'App\\Models\\Auth\\User',1,4,'updated','{\"id\":1,\"uuid\":\"84bcd9f2-27c2-4c1b-a6e0-9f01846fcdf7\",\"first_name\":\"Alan\",\"last_name\":\"Whitmore\",\"email\":\"admin@admin.com\",\"avatar_type\":\"gravatar\",\"avatar_location\":null,\"password\":\"$2y$10$OrxyKtMfhcc5O6hsM5rcvuraXq37sM8GGY1yVfeDDn6Zlm2DwAeZS\",\"password_changed_at\":null,\"active\":1,\"confirmation_code\":\"b67f6c5addc4afd018edcdb3472d79a3\",\"confirmed\":1,\"timezone\":\"Asia\\/Kolkata\",\"last_login_at\":\"2021-10-03 13:45:44\",\"last_login_ip\":\"45.118.158.0\",\"to_be_logged_out\":0,\"status\":1,\"created_by\":1,\"updated_by\":null,\"is_term_accept\":0,\"remember_token\":\"gVRo3iiaeCzRDRi1bgLkURV2HGghCt9hBjV0M6SncKMexW4qtkaQfKImuKxS\",\"created_at\":\"2021-06-14 12:03:39\",\"updated_at\":\"2021-10-03 13:45:44\",\"deleted_at\":null}','[\"last_login_at\",\"last_login_ip\",\"updated_at\"]','[]','[]','https://www.padhloji.com/login','45.118.158.0','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36','5e850e07e5bc8d9d67450b900223c31791a525cd47546eeb2b0041338390c815ea6fb4bc135930d2983d0c52afbf5d673fcea608ae81bf43a47c0236eff314a4','2021-10-03 13:45:44','2021-10-03 13:45:44'),(36,'App\\Models\\Auth\\User',1,'App\\Models\\Auth\\User',1,4,'updated','{\"id\":1,\"uuid\":\"84bcd9f2-27c2-4c1b-a6e0-9f01846fcdf7\",\"first_name\":\"Alan\",\"last_name\":\"Whitmore\",\"email\":\"admin@admin.com\",\"avatar_type\":\"gravatar\",\"avatar_location\":null,\"password\":\"$2y$10$OrxyKtMfhcc5O6hsM5rcvuraXq37sM8GGY1yVfeDDn6Zlm2DwAeZS\",\"password_changed_at\":null,\"active\":1,\"confirmation_code\":\"b67f6c5addc4afd018edcdb3472d79a3\",\"confirmed\":1,\"timezone\":\"Asia\\/Kolkata\",\"last_login_at\":\"2021-10-05 05:08:11\",\"last_login_ip\":\"49.36.185.214\",\"to_be_logged_out\":0,\"status\":1,\"created_by\":1,\"updated_by\":null,\"is_term_accept\":0,\"remember_token\":\"gVRo3iiaeCzRDRi1bgLkURV2HGghCt9hBjV0M6SncKMexW4qtkaQfKImuKxS\",\"created_at\":\"2021-06-14 12:03:39\",\"updated_at\":\"2021-10-05 05:08:12\",\"deleted_at\":null}','[\"last_login_at\",\"last_login_ip\",\"updated_at\"]','[]','[]','https://www.padhloji.com/login','49.36.185.214','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36','bb9b2905e66735c8dc0bdde8a61ae599258a32e850e1b71135b937485e2772505d5da0b8cfd9d4896ef488d0a5d0d0b235faffb1a1177ef3ac5f8bcbf59d0b45','2021-10-05 05:08:12','2021-10-05 05:08:12'),(37,'App\\Models\\Auth\\User',1,'App\\Models\\Auth\\User',1,4,'updated','{\"id\":1,\"uuid\":\"84bcd9f2-27c2-4c1b-a6e0-9f01846fcdf7\",\"first_name\":\"Alan\",\"last_name\":\"Whitmore\",\"email\":\"admin@admin.com\",\"avatar_type\":\"gravatar\",\"avatar_location\":null,\"password\":\"$2y$10$OrxyKtMfhcc5O6hsM5rcvuraXq37sM8GGY1yVfeDDn6Zlm2DwAeZS\",\"password_changed_at\":null,\"active\":1,\"confirmation_code\":\"b67f6c5addc4afd018edcdb3472d79a3\",\"confirmed\":1,\"timezone\":\"Asia\\/Kolkata\",\"last_login_at\":\"2021-10-05 05:08:11\",\"last_login_ip\":\"49.36.185.214\",\"to_be_logged_out\":0,\"status\":1,\"created_by\":1,\"updated_by\":null,\"is_term_accept\":0,\"remember_token\":\"Wy1I7TdHxEj1XO74ddibH4dEeFGSRWEHhwithdpZS7Lwd5R0joz4DwcWW4QE\",\"created_at\":\"2021-06-14 12:03:39\",\"updated_at\":\"2021-10-05 05:08:12\",\"deleted_at\":null}','[\"remember_token\"]','[]','[]','https://www.padhloji.com/logout','103.163.63.233','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:95.0) Gecko/20100101 Firefox/95.0','1862dd9ce2c8a63dc70cdc1d10a4ea7e0f657d7f9db97a275f5d4fade08c376704a48cc2ee5ce929990b5b64898710d0e86cea6a1e1313d53606c746647662ba','2021-12-26 11:37:57','2021-12-26 11:37:57'),(38,'App\\Models\\Auth\\User',1,'App\\Models\\Auth\\User',1,4,'updated','{\"id\":1,\"uuid\":\"84bcd9f2-27c2-4c1b-a6e0-9f01846fcdf7\",\"first_name\":\"Alan\",\"last_name\":\"Whitmore\",\"email\":\"admin@admin.com\",\"avatar_type\":\"gravatar\",\"avatar_location\":null,\"password\":\"$2y$10$OrxyKtMfhcc5O6hsM5rcvuraXq37sM8GGY1yVfeDDn6Zlm2DwAeZS\",\"password_changed_at\":null,\"active\":1,\"confirmation_code\":\"b67f6c5addc4afd018edcdb3472d79a3\",\"confirmed\":1,\"timezone\":\"Asia\\/Kolkata\",\"last_login_at\":\"2021-12-26 14:04:11\",\"last_login_ip\":\"49.36.187.236\",\"to_be_logged_out\":0,\"status\":1,\"created_by\":1,\"updated_by\":null,\"is_term_accept\":0,\"remember_token\":\"Wy1I7TdHxEj1XO74ddibH4dEeFGSRWEHhwithdpZS7Lwd5R0joz4DwcWW4QE\",\"created_at\":\"2021-06-14 12:03:39\",\"updated_at\":\"2021-12-26 14:04:11\",\"deleted_at\":null}','[\"last_login_at\",\"last_login_ip\",\"updated_at\"]','[]','[]','https://www.padhloji.com/login','49.36.187.236','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.110 Safari/537.36','33305101ae67bb13168ddb01ba115ffc5b91bf332d47c28d5f09ca4ca7ac27c4637dcf49da7c3c1dd910060524dfda2e0f835b513d3faa86acf5f29336dca729','2021-12-26 14:04:12','2021-12-26 14:04:12'),(39,'App\\Models\\Auth\\User',1,'App\\Models\\Auth\\User',1,4,'updated','{\"id\":1,\"uuid\":\"84bcd9f2-27c2-4c1b-a6e0-9f01846fcdf7\",\"first_name\":\"Alan\",\"last_name\":\"Whitmore\",\"email\":\"admin@admin.com\",\"avatar_type\":\"gravatar\",\"avatar_location\":null,\"password\":\"$2y$10$OrxyKtMfhcc5O6hsM5rcvuraXq37sM8GGY1yVfeDDn6Zlm2DwAeZS\",\"password_changed_at\":null,\"active\":1,\"confirmation_code\":\"b67f6c5addc4afd018edcdb3472d79a3\",\"confirmed\":1,\"timezone\":\"Asia\\/Kolkata\",\"last_login_at\":\"2021-12-26 14:07:05\",\"last_login_ip\":\"139.167.161.123\",\"to_be_logged_out\":0,\"status\":1,\"created_by\":1,\"updated_by\":null,\"is_term_accept\":0,\"remember_token\":\"Wy1I7TdHxEj1XO74ddibH4dEeFGSRWEHhwithdpZS7Lwd5R0joz4DwcWW4QE\",\"created_at\":\"2021-06-14 12:03:39\",\"updated_at\":\"2021-12-26 14:07:05\",\"deleted_at\":null}','[\"last_login_at\",\"last_login_ip\",\"updated_at\"]','[]','[]','https://www.padhloji.com/login','139.167.161.123','Mozilla/5.0 (Linux; Android 10; Redmi Note 8 Pro) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.92 Mobile Safari/537.36','2951b9e96daa237b101e6c9ffdae1bac83cdfc4c037cd01013f0e97f248584a4ae20912674778d7a6d3338aed69974eda4b89cf81402242319a31f4010641032','2021-12-26 14:07:05','2021-12-26 14:07:05'),(40,'App\\Models\\Auth\\User',1,'App\\Models\\Auth\\User',1,4,'updated','{\"id\":1,\"uuid\":\"84bcd9f2-27c2-4c1b-a6e0-9f01846fcdf7\",\"first_name\":\"Alan\",\"last_name\":\"Whitmore\",\"email\":\"admin@admin.com\",\"avatar_type\":\"gravatar\",\"avatar_location\":null,\"password\":\"$2y$10$OrxyKtMfhcc5O6hsM5rcvuraXq37sM8GGY1yVfeDDn6Zlm2DwAeZS\",\"password_changed_at\":null,\"active\":1,\"confirmation_code\":\"b67f6c5addc4afd018edcdb3472d79a3\",\"confirmed\":1,\"timezone\":\"Asia\\/Kolkata\",\"last_login_at\":\"2022-01-11 16:29:10\",\"last_login_ip\":\"49.36.181.226\",\"to_be_logged_out\":0,\"status\":1,\"created_by\":1,\"updated_by\":null,\"is_term_accept\":0,\"remember_token\":\"Wy1I7TdHxEj1XO74ddibH4dEeFGSRWEHhwithdpZS7Lwd5R0joz4DwcWW4QE\",\"created_at\":\"2021-06-14 12:03:39\",\"updated_at\":\"2022-01-11 16:29:10\",\"deleted_at\":null}','[\"last_login_at\",\"last_login_ip\",\"updated_at\"]','[]','[]','https://www.padhloji.com/login','49.36.181.226','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.110 Safari/537.36','159d93152e31b87792784ec33504fda252402e5d9b0bb5245bb80435933a912b9000879990010f9e30359b3ee52722f774bfac801fed489fa479143b1ee24343','2022-01-11 16:29:10','2022-01-11 16:29:10'),(41,'App\\Models\\Auth\\User',1,'App\\Models\\Auth\\User',1,4,'updated','{\"id\":1,\"uuid\":\"84bcd9f2-27c2-4c1b-a6e0-9f01846fcdf7\",\"first_name\":\"Alan\",\"last_name\":\"Whitmore\",\"email\":\"admin@admin.com\",\"avatar_type\":\"gravatar\",\"avatar_location\":null,\"password\":\"$2y$10$OrxyKtMfhcc5O6hsM5rcvuraXq37sM8GGY1yVfeDDn6Zlm2DwAeZS\",\"password_changed_at\":null,\"active\":1,\"confirmation_code\":\"b67f6c5addc4afd018edcdb3472d79a3\",\"confirmed\":1,\"timezone\":\"Asia\\/Kolkata\",\"last_login_at\":\"2022-01-28 16:33:47\",\"last_login_ip\":\"49.36.192.206\",\"to_be_logged_out\":0,\"status\":1,\"created_by\":1,\"updated_by\":null,\"is_term_accept\":0,\"remember_token\":\"Wy1I7TdHxEj1XO74ddibH4dEeFGSRWEHhwithdpZS7Lwd5R0joz4DwcWW4QE\",\"created_at\":\"2021-06-14 12:03:39\",\"updated_at\":\"2022-01-28 16:33:47\",\"deleted_at\":null}','[\"last_login_at\",\"last_login_ip\",\"updated_at\"]','[]','[]','https://www.padhloji.com/login','49.36.192.206','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/97.0.4692.99 Safari/537.36','e1cf8d6529a638d9a4f14f1c9224b2765096eb699af00c670e75df604ac258bcfaa7e8bb57a03c9e0af762ddc1d23abc2f1d2756e27f2fc36bbe74527e40c7a7','2022-01-28 16:33:47','2022-01-28 16:33:47'),(42,'App\\Models\\Auth\\User',1,'App\\Models\\Auth\\User',1,4,'updated','{\"id\":1,\"uuid\":\"84bcd9f2-27c2-4c1b-a6e0-9f01846fcdf7\",\"first_name\":\"Alan\",\"last_name\":\"Whitmore\",\"email\":\"admin@admin.com\",\"avatar_type\":\"gravatar\",\"avatar_location\":null,\"password\":\"$2y$10$OrxyKtMfhcc5O6hsM5rcvuraXq37sM8GGY1yVfeDDn6Zlm2DwAeZS\",\"password_changed_at\":null,\"active\":1,\"confirmation_code\":\"b67f6c5addc4afd018edcdb3472d79a3\",\"confirmed\":1,\"timezone\":\"Asia\\/Kolkata\",\"last_login_at\":\"2022-02-03 10:56:33\",\"last_login_ip\":\"160.202.39.254\",\"to_be_logged_out\":0,\"status\":1,\"created_by\":1,\"updated_by\":null,\"is_term_accept\":0,\"remember_token\":\"Wy1I7TdHxEj1XO74ddibH4dEeFGSRWEHhwithdpZS7Lwd5R0joz4DwcWW4QE\",\"created_at\":\"2021-06-14 12:03:39\",\"updated_at\":\"2022-02-03 10:56:33\",\"deleted_at\":null}','[\"last_login_at\",\"last_login_ip\",\"updated_at\"]','[]','[]','https://www.padhloji.com/login','160.202.39.254','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/97.0.4692.71 Safari/537.36','433ffbf74640f425c2b1a468eefcbeaa9f983f8e4118eb8855c793f98945b6136b84d3c2bc26303be92adab182b51afa0e0dc912b06c559df480cec91e8edca7','2022-02-03 10:56:34','2022-02-03 10:56:34'),(43,'App\\Models\\Auth\\User',1,'App\\Models\\Auth\\User',1,4,'updated','{\"id\":1,\"uuid\":\"84bcd9f2-27c2-4c1b-a6e0-9f01846fcdf7\",\"first_name\":\"Alan\",\"last_name\":\"Whitmore\",\"email\":\"admin@admin.com\",\"avatar_type\":\"gravatar\",\"avatar_location\":null,\"password\":\"$2y$10$OrxyKtMfhcc5O6hsM5rcvuraXq37sM8GGY1yVfeDDn6Zlm2DwAeZS\",\"password_changed_at\":null,\"active\":1,\"confirmation_code\":\"b67f6c5addc4afd018edcdb3472d79a3\",\"confirmed\":1,\"timezone\":\"Asia\\/Kolkata\",\"last_login_at\":\"2022-02-04 12:00:29\",\"last_login_ip\":\"49.36.192.205\",\"to_be_logged_out\":0,\"status\":1,\"created_by\":1,\"updated_by\":null,\"is_term_accept\":0,\"remember_token\":\"Wy1I7TdHxEj1XO74ddibH4dEeFGSRWEHhwithdpZS7Lwd5R0joz4DwcWW4QE\",\"created_at\":\"2021-06-14 12:03:39\",\"updated_at\":\"2022-02-04 12:00:30\",\"deleted_at\":null}','[\"last_login_at\",\"last_login_ip\",\"updated_at\"]','[]','[]','https://www.padhloji.com/login','49.36.192.205','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/97.0.4692.99 Safari/537.36','5148c02eca8de3d0d74f486709f5370ab86a1256c194556d30e4fa507f688daaa43d878b3b70982cc0ad4cc71b75faf0915109e6cd951ff2aa9755ce39815246','2022-02-04 12:00:30','2022-02-04 12:00:30'),(44,'App\\Models\\Auth\\User',1,'App\\Models\\Auth\\User',1,4,'updated','{\"id\":1,\"uuid\":\"84bcd9f2-27c2-4c1b-a6e0-9f01846fcdf7\",\"first_name\":\"Alan\",\"last_name\":\"Whitmore\",\"email\":\"admin@admin.com\",\"avatar_type\":\"gravatar\",\"avatar_location\":null,\"password\":\"$2y$10$OrxyKtMfhcc5O6hsM5rcvuraXq37sM8GGY1yVfeDDn6Zlm2DwAeZS\",\"password_changed_at\":null,\"active\":1,\"confirmation_code\":\"b67f6c5addc4afd018edcdb3472d79a3\",\"confirmed\":1,\"timezone\":\"Asia\\/Kolkata\",\"last_login_at\":\"2022-02-07 19:32:45\",\"last_login_ip\":\"205.253.60.104\",\"to_be_logged_out\":0,\"status\":1,\"created_by\":1,\"updated_by\":null,\"is_term_accept\":0,\"remember_token\":\"Wy1I7TdHxEj1XO74ddibH4dEeFGSRWEHhwithdpZS7Lwd5R0joz4DwcWW4QE\",\"created_at\":\"2021-06-14 12:03:39\",\"updated_at\":\"2022-02-07 19:32:45\",\"deleted_at\":null}','[\"last_login_at\",\"last_login_ip\",\"updated_at\"]','[]','[]','https://www.padhloji.com/login','205.253.60.104','Mozilla/5.0 (Linux; Android 9; POCO F1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4758.87 Mobile Safari/537.36','4d1b8c03e37d78312f7a2d309bf8e5fde81eac106182ac39a536247d95faec7f9617e1e1de21b9bc10323e1d1dde8506c970de9031eb417b152a31878b2b7638','2022-02-07 19:32:45','2022-02-07 19:32:45'),(45,'App\\Models\\Auth\\User',1,'App\\Models\\Auth\\User',1,4,'updated','{\"id\":1,\"uuid\":\"84bcd9f2-27c2-4c1b-a6e0-9f01846fcdf7\",\"first_name\":\"Alan\",\"last_name\":\"Whitmore\",\"email\":\"admin@admin.com\",\"avatar_type\":\"gravatar\",\"avatar_location\":null,\"password\":\"$2y$10$OrxyKtMfhcc5O6hsM5rcvuraXq37sM8GGY1yVfeDDn6Zlm2DwAeZS\",\"password_changed_at\":null,\"active\":1,\"confirmation_code\":\"b67f6c5addc4afd018edcdb3472d79a3\",\"confirmed\":1,\"timezone\":\"Asia\\/Kolkata\",\"last_login_at\":\"2022-06-27 07:46:14\",\"last_login_ip\":\"103.163.63.208\",\"to_be_logged_out\":0,\"status\":1,\"created_by\":1,\"updated_by\":null,\"is_term_accept\":0,\"remember_token\":\"Wy1I7TdHxEj1XO74ddibH4dEeFGSRWEHhwithdpZS7Lwd5R0joz4DwcWW4QE\",\"created_at\":\"2021-06-14 12:03:39\",\"updated_at\":\"2022-06-27 07:46:15\",\"deleted_at\":null}','[\"last_login_at\",\"last_login_ip\",\"updated_at\"]','[]','[]','https://www.padhloji.com/login','103.163.63.208','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:101.0) Gecko/20100101 Firefox/101.0','1edb49ba3d3047cac094022eb761bfec373edfffd20dc8d8e929a7a20120dc49bfdcc8f6bbc9e6f74df992e0f1767a512145ce9f8dee1ad8b1557e50628fb9b2','2022-06-27 07:46:15','2022-06-27 07:46:15'),(46,'App\\Models\\Auth\\User',1,'App\\Models\\Auth\\User',1,4,'updated','{\"id\":1,\"uuid\":\"84bcd9f2-27c2-4c1b-a6e0-9f01846fcdf7\",\"first_name\":\"Alan\",\"last_name\":\"Whitmore\",\"email\":\"admin@admin.com\",\"avatar_type\":\"gravatar\",\"avatar_location\":null,\"password\":\"$2y$10$OrxyKtMfhcc5O6hsM5rcvuraXq37sM8GGY1yVfeDDn6Zlm2DwAeZS\",\"password_changed_at\":null,\"active\":1,\"confirmation_code\":\"b67f6c5addc4afd018edcdb3472d79a3\",\"confirmed\":1,\"timezone\":\"Asia\\/Kolkata\",\"last_login_at\":\"2022-06-27 07:46:14\",\"last_login_ip\":\"103.163.63.208\",\"to_be_logged_out\":0,\"status\":1,\"created_by\":1,\"updated_by\":null,\"is_term_accept\":0,\"remember_token\":\"NOxLP6WJdKp4ik1GRrL6cmQlg0C1fCwz8pwXlnN6C9fBzjbtxShtdqN4FxTy\",\"created_at\":\"2021-06-14 12:03:39\",\"updated_at\":\"2022-06-27 07:46:15\",\"deleted_at\":null}','[\"remember_token\"]','[]','[]','https://www.padhloji.com/logout','103.163.63.208','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:101.0) Gecko/20100101 Firefox/101.0','d2afe297ee7014c7a6c6e0b5a892fa8dfb0e5e53abc142d116d2373c8ebcfb6137efac09b4897f313525c8d394476faea76bf6a920167a1d7bf348e5e571332e','2022-06-27 07:47:22','2022-06-27 07:47:22'),(47,'App\\Models\\Auth\\User',1,'App\\Models\\Auth\\User',1,4,'updated','{\"id\":1,\"uuid\":\"84bcd9f2-27c2-4c1b-a6e0-9f01846fcdf7\",\"first_name\":\"Alan\",\"last_name\":\"Whitmore\",\"email\":\"admin@admin.com\",\"avatar_type\":\"gravatar\",\"avatar_location\":null,\"password\":\"$2y$10$OrxyKtMfhcc5O6hsM5rcvuraXq37sM8GGY1yVfeDDn6Zlm2DwAeZS\",\"password_changed_at\":null,\"active\":1,\"confirmation_code\":\"b67f6c5addc4afd018edcdb3472d79a3\",\"confirmed\":1,\"timezone\":\"Asia\\/Kolkata\",\"last_login_at\":\"2022-06-28 04:27:12\",\"last_login_ip\":\"205.253.57.118\",\"to_be_logged_out\":0,\"status\":1,\"created_by\":1,\"updated_by\":null,\"is_term_accept\":0,\"remember_token\":\"NOxLP6WJdKp4ik1GRrL6cmQlg0C1fCwz8pwXlnN6C9fBzjbtxShtdqN4FxTy\",\"created_at\":\"2021-06-14 12:03:39\",\"updated_at\":\"2022-06-28 04:27:12\",\"deleted_at\":null}','[\"last_login_at\",\"last_login_ip\",\"updated_at\"]','[]','[]','https://www.padhloji.com/login','205.253.57.118','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/102.0.0.0 Safari/537.36','e955707dc3a7c365de6d4da1472f03f2c6f4cd63c456ecd66fbaea2e770826afa205e21ac2e020b8a364f0da27b6f0c638618d47ab6c376e7fe0d529423c1ab2','2022-06-28 04:27:12','2022-06-28 04:27:12');
/*!40000 ALTER TABLE `ledgers` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `migrations`
--
DROP TABLE IF EXISTS `migrations`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `migrations` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`migration` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`batch` int(11) NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=25 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `migrations`
--
LOCK TABLES `migrations` WRITE;
/*!40000 ALTER TABLE `migrations` DISABLE KEYS */;
INSERT INTO `migrations` (`id`, `migration`, `batch`) VALUES (1,'2014_10_12_000000_create_users_table',1),(2,'2014_10_12_100000_create_password_resets_table',1),(3,'2016_06_01_000001_create_oauth_auth_codes_table',1),(4,'2016_06_01_000002_create_oauth_access_tokens_table',1),(5,'2016_06_01_000003_create_oauth_refresh_tokens_table',1),(6,'2016_06_01_000004_create_oauth_clients_table',1),(7,'2016_06_01_000005_create_oauth_personal_access_clients_table',1),(8,'2017_09_03_144628_create_permission_tables',1),(9,'2017_09_11_174816_create_social_accounts_table',1),(10,'2017_09_26_140332_create_cache_table',1),(11,'2017_09_26_140528_create_sessions_table',1),(12,'2017_09_26_140609_create_jobs_table',1),(13,'2017_11_02_060149_create_blog_categories_table',1),(14,'2017_11_02_060149_create_blog_map_categories_table',1),(15,'2017_11_02_060149_create_blog_map_tags_table',1),(16,'2017_11_02_060149_create_blog_tags_table',1),(17,'2017_11_02_060149_create_blogs_table',1),(18,'2017_11_02_060149_create_faqs_table',1),(19,'2017_11_02_060149_create_pages_table',1),(20,'2018_04_08_033256_create_password_histories_table',1),(21,'2018_11_21_000001_create_ledgers_table',1),(22,'2019_08_19_000000_create_failed_jobs_table',1),(23,'2020_06_11_080530_create_email_templates_table',1),(24,'2020_06_18_060624_add_foreign_key_constraints_to_acl_tables',1);
/*!40000 ALTER TABLE `migrations` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `oauth_access_tokens`
--
DROP TABLE IF EXISTS `oauth_access_tokens`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `oauth_access_tokens` (
`id` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL,
`user_id` bigint(20) unsigned DEFAULT NULL,
`client_id` bigint(20) unsigned NOT NULL,
`name` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`scopes` text COLLATE utf8mb4_unicode_ci,
`revoked` tinyint(1) NOT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL,
`expires_at` datetime DEFAULT NULL,
PRIMARY KEY (`id`),
KEY `oauth_access_tokens_user_id_index` (`user_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `oauth_access_tokens`
--
LOCK TABLES `oauth_access_tokens` WRITE;
/*!40000 ALTER TABLE `oauth_access_tokens` DISABLE KEYS */;
/*!40000 ALTER TABLE `oauth_access_tokens` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `oauth_auth_codes`
--
DROP TABLE IF EXISTS `oauth_auth_codes`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `oauth_auth_codes` (
`id` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL,
`user_id` bigint(20) unsigned NOT NULL,
`client_id` bigint(20) unsigned NOT NULL,
`scopes` text COLLATE utf8mb4_unicode_ci,
`revoked` tinyint(1) NOT NULL,
`expires_at` datetime DEFAULT NULL,
PRIMARY KEY (`id`),
KEY `oauth_auth_codes_user_id_index` (`user_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `oauth_auth_codes`
--
LOCK TABLES `oauth_auth_codes` WRITE;
/*!40000 ALTER TABLE `oauth_auth_codes` DISABLE KEYS */;
/*!40000 ALTER TABLE `oauth_auth_codes` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `oauth_clients`
--
DROP TABLE IF EXISTS `oauth_clients`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `oauth_clients` (
`id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`user_id` bigint(20) unsigned DEFAULT NULL,
`name` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`secret` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`provider` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`redirect` text COLLATE utf8mb4_unicode_ci NOT NULL,
`personal_access_client` tinyint(1) NOT NULL,
`password_client` tinyint(1) NOT NULL,
`revoked` tinyint(1) NOT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL,
PRIMARY KEY (`id`),
KEY `oauth_clients_user_id_index` (`user_id`)
) ENGINE=MyISAM AUTO_INCREMENT=3 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `oauth_clients`
--
LOCK TABLES `oauth_clients` WRITE;
/*!40000 ALTER TABLE `oauth_clients` DISABLE KEYS */;
INSERT INTO `oauth_clients` (`id`, `user_id`, `name`, `secret`, `provider`, `redirect`, `personal_access_client`, `password_client`, `revoked`, `created_at`, `updated_at`) VALUES (1,NULL,'Laravel Starter Personal Access Client','jRgIRkquN1oI0c89Vo36RR4ZXzXCp9CIgeOGPhoc',NULL,'http://localhost',1,0,0,'2021-06-14 12:03:31','2021-06-14 12:03:31'),(2,NULL,'Laravel Starter Password Grant Client','dzbM2Di5gXwEMYgytxId6215BM9M6pI2I6ZRKLbq','users','http://localhost',0,1,0,'2021-06-14 12:03:31','2021-06-14 12:03:31');
/*!40000 ALTER TABLE `oauth_clients` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `oauth_personal_access_clients`
--
DROP TABLE IF EXISTS `oauth_personal_access_clients`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `oauth_personal_access_clients` (
`id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`client_id` bigint(20) unsigned NOT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL,
PRIMARY KEY (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `oauth_personal_access_clients`
--
LOCK TABLES `oauth_personal_access_clients` WRITE;
/*!40000 ALTER TABLE `oauth_personal_access_clients` DISABLE KEYS */;
INSERT INTO `oauth_personal_access_clients` (`id`, `client_id`, `created_at`, `updated_at`) VALUES (1,1,'2021-06-14 12:03:31','2021-06-14 12:03:31');
/*!40000 ALTER TABLE `oauth_personal_access_clients` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `oauth_refresh_tokens`
--
DROP TABLE IF EXISTS `oauth_refresh_tokens`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `oauth_refresh_tokens` (
`id` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL,
`access_token_id` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL,
`revoked` tinyint(1) NOT NULL,
`expires_at` datetime DEFAULT NULL,
PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `oauth_refresh_tokens`
--
LOCK TABLES `oauth_refresh_tokens` WRITE;
/*!40000 ALTER TABLE `oauth_refresh_tokens` DISABLE KEYS */;
/*!40000 ALTER TABLE `oauth_refresh_tokens` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `pages`
--
DROP TABLE IF EXISTS `pages`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `pages` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`title` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`page_slug` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`description` text COLLATE utf8mb4_unicode_ci,
`cannonical_link` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`seo_title` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`seo_keyword` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`seo_description` text COLLATE utf8mb4_unicode_ci,
`status` tinyint(1) NOT NULL DEFAULT '1',
`created_by` int(10) unsigned NOT NULL,
`updated_by` int(10) unsigned DEFAULT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL,
`deleted_at` timestamp NULL DEFAULT NULL,
PRIMARY KEY (`id`),
UNIQUE KEY `pages_page_slug_unique` (`page_slug`)
) ENGINE=MyISAM AUTO_INCREMENT=11 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `pages`
--
LOCK TABLES `pages` WRITE;
/*!40000 ALTER TABLE `pages` DISABLE KEYS */;
INSERT INTO `pages` (`id`, `title`, `page_slug`, `description`, `cannonical_link`, `seo_title`, `seo_keyword`, `seo_description`, `status`, `created_by`, `updated_by`, `created_at`, `updated_at`, `deleted_at`) VALUES (1,'rerum debitis et itaque','illo-quaerat-quod-in-est-quod-molestiae','Et dolorem odit illum labore temporibus qui et et. Occaecati veritatis non doloremque cupiditate vero dignissimos aut ipsum. Velit cum ut voluptatem illum.','http://www.schulist.com/rerum-ipsa-commodi-ut-molestiae-vel-officia-voluptatum-nobis','odio','eius','Sed sint et voluptas quia ea nulla. Vitae deserunt autem necessitatibus consequatur et et. Sed minima tempora omnis officiis qui qui consectetur. Cupiditate amet veniam dolorem eius facere in eveniet.',0,4,NULL,'2021-06-14 12:03:39','2021-06-14 12:03:39',NULL),(2,'culpa eos a omnis','consequuntur-dolor-sit-ut-non-culpa-aut-aut-soluta','Consequatur non eveniet sed magni ut. Quia ea voluptatem culpa nulla ut eum eaque. Corporis culpa illum ipsa placeat laboriosam amet molestiae.','https://www.okon.com/voluptates-est-voluptates-ducimus','sit','minus','Magnam totam delectus dolor unde fugiat blanditiis suscipit. Repellendus voluptates et voluptates harum mollitia beatae. Optio earum soluta fuga sit mollitia autem animi voluptates.',0,4,NULL,'2021-06-14 12:03:39','2021-06-14 12:03:39',NULL),(3,'voluptatem adipisci aliquid fugit','ex-tempora-et-molestiae-quae-mollitia','Quisquam similique vitae quas voluptas aut et. Aut nihil quia voluptatem in fugit et dolor dolor. Accusamus et omnis id sed.','http://waelchi.info/illum-aliquam-et-natus-et-deleniti-excepturi','consequatur','sed','Esse error voluptatum doloribus ipsum blanditiis ea inventore. Et odio quas et voluptas qui a quia. Voluptatem nam laboriosam expedita veritatis voluptatem ut et. Assumenda non repellendus harum qui et dolor.',0,4,NULL,'2021-06-14 12:03:39','2021-06-14 12:03:39',NULL),(4,'dignissimos aspernatur possimus aut','qui-velit-harum-similique-sit-maiores','Quas dicta sit velit dolore at consequatur sapiente fugit. Quibusdam at enim qui officiis et. Ut aperiam distinctio magni quae quae sed. Saepe est beatae provident aperiam quis eos corrupti commodi.','http://www.graham.net/','eaque','sequi','Nemo similique quia sunt nemo nobis. Ratione maiores autem nam necessitatibus doloribus. A blanditiis ipsa et praesentium officiis.',0,4,NULL,'2021-06-14 12:03:39','2021-06-14 12:03:39',NULL),(5,'quaerat aut sed unde','error-beatae-distinctio-tempore-minus-sit-est','Sint eum pariatur totam aut voluptates dolorem. Perspiciatis magni aspernatur sed. Quia eveniet ea eaque quod.','http://padberg.net/modi-autem-fugit-sapiente-ad-qui-ut.html','quaerat','ut','Et voluptate deserunt quidem. Corrupti atque omnis in debitis est unde fugit. Voluptas distinctio ex qui recusandae nisi perferendis.',0,4,NULL,'2021-06-14 12:03:39','2021-06-14 12:03:39',NULL),(6,'quasi ut ratione nemo','excepturi-asperiores-omnis-quia','Asperiores eum omnis alias dolorum aliquid sunt et. Et vitae a non soluta sunt doloremque iusto. Magnam autem libero omnis recusandae eum aut tempore. Praesentium est consequuntur dolore et dolores consequatur.','https://berge.biz/tenetur-voluptas-iste-ipsam-dolorum-amet-tempore-earum.html','id','nostrum','Qui cupiditate dolore omnis illum animi ad consequatur et. Saepe ratione quia explicabo illo molestiae. Et tempora velit facere dolore eius. Voluptatem est autem ut laudantium consectetur qui voluptas.',1,4,NULL,'2021-06-14 12:03:39','2021-06-14 12:03:39',NULL),(7,'dignissimos sunt quibusdam facilis','quasi-amet-omnis-totam-qui-et-sed-qui','Suscipit qui autem ab expedita consequatur. In amet dolores autem cumque debitis fuga incidunt odit. Harum dicta non labore.','http://www.doyle.info/qui-quaerat-minima-neque-labore-pariatur-odio-quibusdam-sit','illo','eaque','In vel et expedita quia est corporis. Doloribus in ex dolorum impedit fugiat. Fuga quam saepe laudantium pariatur voluptate et impedit. Non aliquid quidem praesentium accusantium modi.',1,4,NULL,'2021-06-14 12:03:39','2021-06-14 12:03:39',NULL),(8,'est natus modi ut','enim-cumque-deserunt-est-exercitationem-quas-aut-magni','Voluptatem magnam veniam qui animi non minus. Voluptatum quidem et soluta omnis ullam numquam architecto nihil. Aliquam eos dolor doloremque tenetur in. Ratione ab facere et eum libero iusto labore.','http://www.bailey.org/est-est-et-id-ea-delectus.html','sed','suscipit','Libero itaque illo incidunt pariatur. Id a consequatur in. Similique repudiandae aut enim voluptatum quam ea omnis. Doloribus placeat sapiente cumque distinctio. Veritatis fugiat culpa reprehenderit quia fugit.',0,4,NULL,'2021-06-14 12:03:39','2021-06-14 12:03:39',NULL),(9,'rerum voluptatem sapiente est','rem-corrupti-sed-expedita','Incidunt aut quam tempore dolorem. Voluptatibus tempore vitae earum sed velit aut suscipit. Sint quod quisquam aut ab natus sint ut. Aut optio aut qui voluptas qui animi.','https://www.stark.info/sit-quis-eum-ipsam-magnam-nesciunt','architecto','ipsum','Occaecati dicta voluptate eveniet saepe. Dolorem consequatur sit assumenda eligendi. Delectus expedita ut sint eius quo et nemo.',1,4,NULL,'2021-06-14 12:03:39','2021-06-14 12:03:39',NULL),(10,'voluptatem ut in reiciendis','dolor-dignissimos-qui-eum-quidem-similique-voluptatum-repellat','Eius delectus unde molestiae possimus. Rerum perspiciatis distinctio aut labore magni sed. Illum autem incidunt rem sequi ut. Consequatur rerum et debitis.','http://oconner.net/dolor-aperiam-distinctio-provident','repellat','sequi','Et debitis dolorum odit accusamus. Itaque qui maxime tempora modi. Repellendus dolore quibusdam non consequatur aut. At ullam debitis adipisci.',1,4,NULL,'2021-06-14 12:03:39','2021-06-14 12:03:39',NULL);
/*!40000 ALTER TABLE `pages` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `password_histories`
--
DROP TABLE IF EXISTS `password_histories`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `password_histories` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`user_id` bigint(20) unsigned NOT NULL,
`password` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL,
PRIMARY KEY (`id`),
KEY `password_histories_user_id_foreign` (`user_id`)
) ENGINE=MyISAM AUTO_INCREMENT=3 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `password_histories`
--
LOCK TABLES `password_histories` WRITE;
/*!40000 ALTER TABLE `password_histories` DISABLE KEYS */;
INSERT INTO `password_histories` (`id`, `user_id`, `password`, `created_at`, `updated_at`) VALUES (1,4,'$2y$10$ce2XAAbGWMFHj16n/KeDbupus7vv3SYJLs.8QTueTfWJIaHYIYg4G','2021-06-14 12:03:39','2021-06-14 12:03:39'),(2,5,'$2y$10$2SreLqun5bib6locEaYWJ.MofgkWW3PLh0hKzludQKIUHT4BspjJm','2021-06-14 12:03:40','2021-06-14 12:03:40');
/*!40000 ALTER TABLE `password_histories` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `password_resets`
--
DROP TABLE IF EXISTS `password_resets`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `password_resets` (
`email` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`token` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`created_at` timestamp NULL DEFAULT NULL,
KEY `password_resets_email_index` (`email`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `password_resets`
--
LOCK TABLES `password_resets` WRITE;
/*!40000 ALTER TABLE `password_resets` DISABLE KEYS */;
/*!40000 ALTER TABLE `password_resets` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `permission_role`
--
DROP TABLE IF EXISTS `permission_role`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `permission_role` (
`id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`permission_id` bigint(20) unsigned NOT NULL,
`role_id` bigint(20) unsigned NOT NULL,
PRIMARY KEY (`id`),
KEY `permission_role_permission_id_foreign` (`permission_id`),
KEY `permission_role_role_id_foreign` (`role_id`)
) ENGINE=MyISAM AUTO_INCREMENT=35 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `permission_role`
--
LOCK TABLES `permission_role` WRITE;
/*!40000 ALTER TABLE `permission_role` DISABLE KEYS */;
INSERT INTO `permission_role` (`id`, `permission_id`, `role_id`) VALUES (1,1,2),(2,3,2),(3,4,2),(4,5,2),(5,6,2),(6,7,2),(7,8,2),(8,16,2),(9,20,2),(10,24,2),(11,25,2),(12,26,2),(13,27,2),(14,28,2),(15,29,2),(16,30,2),(17,31,2),(18,33,2),(19,34,2),(20,35,2),(21,36,2),(22,37,2),(23,38,2),(24,39,2),(25,40,2),(26,41,2),(27,42,2),(28,43,2),(29,44,2),(30,45,2),(31,46,2),(32,47,2),(33,48,2),(34,2,3);
/*!40000 ALTER TABLE `permission_role` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `permission_user`
--
DROP TABLE IF EXISTS `permission_user`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `permission_user` (
`id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`permission_id` bigint(20) unsigned NOT NULL,
`user_id` bigint(20) unsigned NOT NULL,
PRIMARY KEY (`id`),
KEY `permission_user_permission_id_foreign` (`permission_id`),
KEY `permission_user_user_id_foreign` (`user_id`)
) ENGINE=MyISAM AUTO_INCREMENT=35 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `permission_user`
--
LOCK TABLES `permission_user` WRITE;
/*!40000 ALTER TABLE `permission_user` DISABLE KEYS */;
INSERT INTO `permission_user` (`id`, `permission_id`, `user_id`) VALUES (1,42,2),(2,34,2),(3,38,2),(4,29,2),(5,46,2),(6,25,2),(7,44,2),(8,36,2),(9,40,2),(10,31,2),(11,48,2),(12,27,2),(13,43,2),(14,35,2),(15,39,2),(16,30,2),(17,47,2),(18,26,2),(19,8,2),(20,3,2),(21,5,2),(22,1,2),(23,33,2),(24,37,2),(25,41,2),(26,6,2),(27,7,2),(28,28,2),(29,45,2),(30,24,2),(31,20,2),(32,16,2),(33,4,2),(34,2,3);
/*!40000 ALTER TABLE `permission_user` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `permissions`
--
DROP TABLE IF EXISTS `permissions`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `permissions` (
`id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`name` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`display_name` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`sort` smallint(5) unsigned NOT NULL DEFAULT '0',
`status` tinyint(1) NOT NULL DEFAULT '1',
`created_by` int(10) unsigned DEFAULT NULL,
`updated_by` int(10) unsigned DEFAULT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL,
`deleted_at` timestamp NULL DEFAULT NULL,
PRIMARY KEY (`id`),
UNIQUE KEY `permissions_name_unique` (`name`)
) ENGINE=MyISAM AUTO_INCREMENT=49 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `permissions`
--
LOCK TABLES `permissions` WRITE;
/*!40000 ALTER TABLE `permissions` DISABLE KEYS */;
INSERT INTO `permissions` (`id`, `name`, `display_name`, `sort`, `status`, `created_by`, `updated_by`, `created_at`, `updated_at`, `deleted_at`) VALUES (1,'view-backend','View Backend',1,1,1,NULL,'2021-06-14 12:03:39','2021-06-14 12:03:39',NULL),(2,'view-frontend','View Frontend',2,1,1,NULL,'2021-06-14 12:03:39','2021-06-14 12:03:39',NULL),(3,'view-access-management','View Access Management',3,1,1,NULL,'2021-06-14 12:03:39','2021-06-14 12:03:39',NULL),(4,'view-user-management','View User Management',4,1,1,NULL,'2021-06-14 12:03:39','2021-06-14 12:03:39',NULL),(5,'view-active-user','View Active User',5,1,1,NULL,'2021-06-14 12:03:39','2021-06-14 12:03:39',NULL),(6,'view-deactive-user','View Deactive User',6,1,1,NULL,'2021-06-14 12:03:39','2021-06-14 12:03:39',NULL),(7,'view-deleted-user','View Deleted User',7,1,1,NULL,'2021-06-14 12:03:39','2021-06-14 12:03:39',NULL),(8,'show-user','Show User Details',8,1,1,NULL,'2021-06-14 12:03:39','2021-06-14 12:03:39',NULL),(9,'create-user','Create User',9,1,1,NULL,'2021-06-14 12:03:39','2021-06-14 12:03:39',NULL),(10,'edit-user','Edit User',9,1,1,NULL,'2021-06-14 12:03:39','2021-06-14 12:03:39',NULL),(11,'delete-user','Delete User',10,1,1,NULL,'2021-06-14 12:03:39','2021-06-14 12:03:39',NULL),(12,'activate-user','Activate User',11,1,1,NULL,'2021-06-14 12:03:39','2021-06-14 12:03:39',NULL),(13,'deactivate-user','Deactivate User',12,1,1,NULL,'2021-06-14 12:03:39','2021-06-14 12:03:39',NULL),(14,'login-as-user','Login As User',13,1,1,NULL,'2021-06-14 12:03:39','2021-06-14 12:03:39',NULL),(15,'clear-user-session','Clear User Session',14,1,1,NULL,'2021-06-14 12:03:39','2021-06-14 12:03:39',NULL),(16,'view-role-management','View Role Management',15,1,1,NULL,'2021-06-14 12:03:39','2021-06-14 12:03:39',NULL),(17,'create-role','Create Role',16,1,1,NULL,'2021-06-14 12:03:39','2021-06-14 12:03:39',NULL),(18,'edit-role','Edit Role',17,1,1,NULL,'2021-06-14 12:03:39','2021-06-14 12:03:39',NULL),(19,'delete-role','Delete Role',18,1,1,NULL,'2021-06-14 12:03:39','2021-06-14 12:03:39',NULL),(20,'view-permission-management','View Permission Management',19,1,1,NULL,'2021-06-14 12:03:39','2021-06-14 12:03:39',NULL),(21,'create-permission','Create Permission',20,1,1,NULL,'2021-06-14 12:03:39','2021-06-14 12:03:39',NULL),(22,'edit-permission','Edit Permission',21,1,1,NULL,'2021-06-14 12:03:39','2021-06-14 12:03:39',NULL),(23,'delete-permission','Delete Permission',22,1,1,NULL,'2021-06-14 12:03:39','2021-06-14 12:03:39',NULL),(24,'view-page','View Page',23,1,1,NULL,'2021-06-14 12:03:39','2021-06-14 12:03:39',NULL),(25,'create-page','Create Page',24,1,1,NULL,'2021-06-14 12:03:39','2021-06-14 12:03:39',NULL),(26,'edit-page','Edit Page',25,1,1,NULL,'2021-06-14 12:03:39','2021-06-14 12:03:39',NULL),(27,'delete-page','Delete Page',26,1,1,NULL,'2021-06-14 12:03:39','2021-06-14 12:03:39',NULL),(28,'view-email-template','View Email Templates',27,1,1,NULL,'2021-06-14 12:03:39','2021-06-14 12:03:39',NULL),(29,'create-email-template','Create Email Templates',28,1,1,NULL,'2021-06-14 12:03:39','2021-06-14 12:03:39',NULL),(30,'edit-email-template','Edit Email Templates',29,1,1,NULL,'2021-06-14 12:03:39','2021-06-14 12:03:39',NULL),(31,'delete-email-template','Delete Email Templates',30,1,1,NULL,'2021-06-14 12:03:39','2021-06-14 12:03:39',NULL),(32,'edit-settings','Edit Settings',31,1,1,NULL,'2021-06-14 12:03:39','2021-06-14 12:03:39',NULL),(33,'view-blog-category','View Blog Categories Management',32,1,1,NULL,'2021-06-14 12:03:39','2021-06-14 12:03:39',NULL),(34,'create-blog-category','Create Blog Category',33,1,1,NULL,'2021-06-14 12:03:39','2021-06-14 12:03:39',NULL),(35,'edit-blog-category','Edit Blog Category',34,1,1,NULL,'2021-06-14 12:03:39','2021-06-14 12:03:39',NULL),(36,'delete-blog-category','Delete Blog Category',35,1,1,NULL,'2021-06-14 12:03:39','2021-06-14 12:03:39',NULL),(37,'view-blog-tag','View Blog Tags Management',36,1,1,NULL,'2021-06-14 12:03:39','2021-06-14 12:03:39',NULL),(38,'create-blog-tag','Create Blog Tag',37,1,1,NULL,'2021-06-14 12:03:39','2021-06-14 12:03:39',NULL),(39,'edit-blog-tag','Edit Blog Tag',38,1,1,NULL,'2021-06-14 12:03:39','2021-06-14 12:03:39',NULL),(40,'delete-blog-tag','Delete Blog Tag',39,1,1,NULL,'2021-06-14 12:03:39','2021-06-14 12:03:39',NULL),(41,'view-blog','View Blogs Management',40,1,1,NULL,'2021-06-14 12:03:39','2021-06-14 12:03:39',NULL),(42,'create-blog','Create Blog',41,1,1,NULL,'2021-06-14 12:03:39','2021-06-14 12:03:39',NULL),(43,'edit-blog','Edit Blog',42,1,1,NULL,'2021-06-14 12:03:39','2021-06-14 12:03:39',NULL),(44,'delete-blog','Delete Blog',43,1,1,NULL,'2021-06-14 12:03:39','2021-06-14 12:03:39',NULL),(45,'view-faq','View FAQ Management',44,1,1,NULL,'2021-06-14 12:03:39','2021-06-14 12:03:39',NULL),(46,'create-faq','Create FAQ',45,1,1,NULL,'2021-06-14 12:03:39','2021-06-14 12:03:39',NULL),(47,'edit-faq','Edit FAQ',46,1,1,NULL,'2021-06-14 12:03:39','2021-06-14 12:03:39',NULL),(48,'delete-faq','Delete FAQ',47,1,1,NULL,'2021-06-14 12:03:39','2021-06-14 12:03:39',NULL);
/*!40000 ALTER TABLE `permissions` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `role_user`
--
DROP TABLE IF EXISTS `role_user`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `role_user` (
`id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`user_id` bigint(20) unsigned NOT NULL,
`role_id` bigint(20) unsigned NOT NULL,
PRIMARY KEY (`id`),
KEY `role_user_user_id_foreign` (`user_id`),
KEY `role_user_role_id_foreign` (`role_id`)
) ENGINE=MyISAM AUTO_INCREMENT=4 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `role_user`
--
LOCK TABLES `role_user` WRITE;
/*!40000 ALTER TABLE `role_user` DISABLE KEYS */;
INSERT INTO `role_user` (`id`, `user_id`, `role_id`) VALUES (1,1,1),(2,2,2),(3,3,3);
/*!40000 ALTER TABLE `role_user` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `roles`
--
DROP TABLE IF EXISTS `roles`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `roles` (
`id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`name` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`all` tinyint(1) NOT NULL DEFAULT '0',
`sort` smallint(5) unsigned NOT NULL DEFAULT '0',
`status` tinyint(1) NOT NULL DEFAULT '1',
`created_by` int(10) unsigned DEFAULT NULL,
`updated_by` int(10) unsigned DEFAULT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL,
`deleted_at` timestamp NULL DEFAULT NULL,
PRIMARY KEY (`id`),
UNIQUE KEY `roles_name_unique` (`name`)
) ENGINE=MyISAM AUTO_INCREMENT=4 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `roles`
--
LOCK TABLES `roles` WRITE;
/*!40000 ALTER TABLE `roles` DISABLE KEYS */;
INSERT INTO `roles` (`id`, `name`, `all`, `sort`, `status`, `created_by`, `updated_by`, `created_at`, `updated_at`, `deleted_at`) VALUES (1,'Administrator',1,1,1,1,NULL,'2021-06-14 12:03:39','2021-06-14 12:03:39',NULL),(2,'Executive',0,2,1,1,NULL,'2021-06-14 12:03:39','2021-06-14 12:03:39',NULL),(3,'User',0,3,1,1,NULL,'2021-06-14 12:03:39','2021-06-14 12:03:39',NULL);
/*!40000 ALTER TABLE `roles` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `sessions`
--
DROP TABLE IF EXISTS `sessions`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `sessions` (
`id` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`user_id` int(10) unsigned DEFAULT NULL,
`ip_address` varchar(45) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`user_agent` text COLLATE utf8mb4_unicode_ci,
`payload` text COLLATE utf8mb4_unicode_ci NOT NULL,
`last_activity` int(11) NOT NULL,
UNIQUE KEY `sessions_id_unique` (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `sessions`
--
LOCK TABLES `sessions` WRITE;
/*!40000 ALTER TABLE `sessions` DISABLE KEYS */;
/*!40000 ALTER TABLE `sessions` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `social_accounts`
--
DROP TABLE IF EXISTS `social_accounts`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `social_accounts` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`user_id` bigint(20) unsigned NOT NULL,
`provider` varchar(32) COLLATE utf8mb4_unicode_ci NOT NULL,
`provider_id` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`token` text COLLATE utf8mb4_unicode_ci,
`avatar` text COLLATE utf8mb4_unicode_ci,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL,
PRIMARY KEY (`id`),
KEY `social_accounts_user_id_foreign` (`user_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `social_accounts`
--
LOCK TABLES `social_accounts` WRITE;
/*!40000 ALTER TABLE `social_accounts` DISABLE KEYS */;
/*!40000 ALTER TABLE `social_accounts` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `students`
--
DROP TABLE IF EXISTS `students`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `students` (
`id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`name` varchar(191) DEFAULT NULL,
`email` varchar(191) DEFAULT NULL,
`password` varchar(191) DEFAULT NULL,
`status` tinyint(1) NOT NULL DEFAULT '1',
`class_id` int(10) unsigned DEFAULT NULL,
`course_id` int(10) unsigned DEFAULT NULL,
`created_by` int(10) unsigned DEFAULT NULL,
`updated_by` int(10) unsigned DEFAULT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL,
`deleted_at` timestamp NULL DEFAULT NULL,
PRIMARY KEY (`id`),
UNIQUE KEY `users_email_unique` (`email`)
) ENGINE=MyISAM AUTO_INCREMENT=96 DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `students`
--
LOCK TABLES `students` WRITE;
/*!40000 ALTER TABLE `students` DISABLE KEYS */;
INSERT INTO `students` (`id`, `name`, `email`, `password`, `status`, `class_id`, `course_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `deleted_at`) VALUES (1,'Bhuwan','bhuwan@yopmail.com','123456',1,1,1,NULL,NULL,'2021-07-18 02:02:03','2021-07-18 02:02:03',NULL),(2,'satyam dueby','satyamdubey9450@gmail.com','123456',1,26,3,NULL,NULL,'2021-09-11 11:28:51','2021-09-11 11:28:51',NULL),(3,'Hhhh','9103410447','12345',1,47,3,NULL,NULL,'2021-10-13 16:43:31','2021-10-13 16:43:31',NULL),(4,'Rakshit','rakshitm083@gamil.com','rakshit17_',1,23,3,NULL,NULL,'2021-11-22 02:59:35','2021-11-22 02:59:35',NULL),(5,'Saksham Sambyal','sakshamsambyal66@gmail.com','saksham66',1,23,4,NULL,NULL,'2021-11-22 17:44:40','2021-11-22 17:44:40',NULL),(6,'Bhoopendra Singh','bsbitit@gmail.com','12345678pp',1,26,3,NULL,NULL,'2021-11-30 11:20:47','2021-11-30 11:20:47',NULL),(7,'Pritam bedi','Pritambedi998@gmail.com','pritam123',1,42,3,NULL,NULL,'2021-12-10 18:44:19','2021-12-10 18:44:19',NULL),(8,'Harjot Singh','harjot.s.r@gmail.com','ssssssss',1,23,3,NULL,NULL,'2021-12-13 09:41:22','2021-12-13 09:41:22',NULL),(9,'Dhananjay','dhanujamwal45@gmail.com','dhanu123',1,23,3,NULL,NULL,'2021-12-24 05:01:51','2021-12-24 05:01:51',NULL),(10,'Dhananjay','8491042459','dhanu123',1,23,3,NULL,NULL,'2021-12-24 05:02:56','2021-12-24 05:02:56',NULL),(11,'Soham Jain','jainsoham.2004@gmail.com','GtS_jmu44',1,23,3,NULL,NULL,'2022-01-04 12:31:28','2022-01-04 12:31:28',NULL),(12,'Saqib Malik','alwayssaqibmalik@gmail.com','saqibmalik@123',1,75,3,NULL,NULL,'2022-02-14 10:02:01','2022-02-14 10:02:01',NULL),(13,'Swastik','sharma.swastik004@gmail.com','My_PLJ12',1,23,3,NULL,NULL,'2022-02-21 14:12:49','2022-02-21 14:12:49',NULL),(14,'Kamal','kamalsharma@gmail.com','kamal',1,42,3,NULL,NULL,'2022-02-27 09:26:58','2022-02-27 09:26:58',NULL),(15,'Soham Jain','9906432844','GtS_jmu44',1,23,3,NULL,NULL,'2022-03-14 13:12:49','2022-03-14 13:12:49',NULL),(16,'Rinki pawar','rinki@ifciltd.com','rinki@1234',1,26,3,NULL,NULL,'2022-04-18 05:18:40','2022-04-18 05:18:40',NULL),(17,'Aniket','aniketm9104@gmail.com','jaimatadi',1,23,3,NULL,NULL,'2022-09-14 02:27:17','2022-09-14 02:27:17',NULL),(18,'AJITESH','ajitesh4037@gmail.com','AJITESH4037',1,23,3,NULL,NULL,'2022-09-15 19:47:22','2022-09-15 19:47:22',NULL),(19,'Kanak Reshi','kanakreshi@gmail.com','kanak@1234',1,22,3,NULL,NULL,'2022-09-19 16:55:04','2022-09-19 16:55:04',NULL),(20,'Admin','singhmanjeeth99@gmail.com','abcdef',1,22,3,NULL,NULL,'2022-09-20 04:24:47','2022-09-20 04:24:47',NULL),(21,'Ridhi Gupta','radhikagupta3010@gmail.com','Ridhi@2009',1,22,3,NULL,NULL,'2022-09-20 09:31:34','2022-09-20 09:31:34',NULL),(22,'Aradhya','aradhyalanger@gmail.com','aadhi196',1,83,3,NULL,NULL,'2022-09-21 05:02:55','2022-09-21 05:02:55',NULL),(23,'Sangam Sadotra','sadotrasangam02@gmail.com','kingsadotra@123',1,22,3,NULL,NULL,'2022-09-21 06:53:50','2022-09-21 06:53:50',NULL),(24,'Eshmanpreet','9596647823','eshmanpreet@123',1,22,3,NULL,NULL,'2022-09-21 09:01:28','2022-09-21 09:01:28',NULL),(25,'Ridhi Gupta','9419198670','Ridhi@2009',1,22,3,NULL,NULL,'2022-09-21 09:56:49','2022-09-21 09:56:49',NULL),(26,'Anshu kumar','7006199063','Anshu2004',1,23,3,NULL,NULL,'2022-09-21 18:15:30','2022-09-21 18:15:30',NULL),(27,'Vasu','pandeykomal058@gmail.com','komal@2018',1,23,3,NULL,NULL,'2022-09-21 18:17:08','2022-09-21 18:17:08',NULL),(28,'Anmol Gupta','anmolgupta.jammu@gmail.com','firefox305',1,22,3,NULL,NULL,'2022-09-22 09:41:09','2022-09-22 09:41:09',NULL),(29,'Akshobhaya Sharma','neerushvd@gmail.com','gooGli',1,67,5,NULL,NULL,'2022-09-22 13:14:08','2022-09-22 13:14:08',NULL),(30,'Sakshi','6006519048','Ridhi@2009',1,22,3,NULL,NULL,'2022-09-22 16:40:45','2022-09-22 16:40:45',NULL),(31,'LABEEB','la.khan542005@gmail.com','49pleasestopcallingme49',1,22,3,NULL,NULL,'2022-09-23 04:46:15','2022-09-23 04:46:15',NULL),(32,'Manayata','9858016494','1234',1,22,3,NULL,NULL,'2022-09-24 01:32:07','2022-09-24 01:32:07',NULL),(33,'Krrish CHopra','krrishchopra123@gmail.com','krrish@29',1,23,3,NULL,NULL,'2022-09-28 05:31:43','2022-09-28 05:31:43',NULL),(34,'Farhaan Shahid','farhaanshahid2005@gmail.com','farhaan786',1,23,3,NULL,NULL,'2022-10-03 05:20:53','2022-10-03 05:20:53',NULL),(35,'Purvansh Jamwal','purvanshjamwal27@gmail.com','pj070705',1,23,3,NULL,NULL,'2022-10-07 18:36:53','2022-10-07 18:36:53',NULL),(36,'Lkshay Bazaz','8082205981','Lkaythegreat',1,23,3,NULL,NULL,'2022-10-10 09:16:13','2022-10-10 09:16:13',NULL),(37,'Arpriya','manyatakhajuria@gmail.com','123456',1,22,3,NULL,NULL,'2022-10-20 22:47:37','2022-10-20 22:47:37',NULL),(38,'Gautam sharma','7006141541','Rahul@123',1,42,3,NULL,NULL,'2022-11-04 11:52:00','2022-11-04 11:52:00',NULL),(39,'Udharav Kesar','kesarudharav12@gmail.com','Udharav@123',1,50,3,NULL,NULL,'2022-11-04 14:04:46','2022-11-04 14:04:46',NULL),(40,'Sanjay Sadhu','san.ban.sadhu@gmail.com','jiyajanu',1,67,3,NULL,NULL,'2022-11-05 12:13:16','2022-11-05 12:13:16',NULL),(41,'Ee','9610879563','pooja',1,28,5,NULL,NULL,'2022-11-07 20:02:23','2022-11-07 20:02:23',NULL),(42,'Hiya Jandial','hiyajandial@gmail.com','Hiya@2006',1,23,3,NULL,NULL,'2022-11-08 14:45:13','2022-11-08 14:45:13',NULL),(43,'Pravit Koul','9dpravitkoul@gmail.com','pravit221',1,22,3,NULL,NULL,'2022-11-08 15:22:41','2022-11-08 15:22:41',NULL),(44,'sumeet gupta','7006527454','sum017',1,22,3,NULL,NULL,'2022-11-14 05:33:04','2022-11-14 05:33:04',NULL),(45,'Abhi','8491859781','abhi..1234',1,22,3,NULL,NULL,'2022-11-14 08:18:13','2022-11-14 08:18:13',NULL),(46,'anchal raina','s1674.anchal.9045@vidyalayas.in','123anchal',1,23,5,NULL,NULL,'2022-11-18 07:45:02','2022-11-18 07:45:02',NULL),(47,'Akshat Gupta','9149718294','akshat@12345',1,23,3,NULL,NULL,'2022-11-26 16:21:13','2022-11-26 16:21:13',NULL),(48,'Akash Koul','9149834934','Akash@#1',1,23,5,NULL,NULL,'2022-12-14 09:32:28','2022-12-14 09:32:28',NULL),(49,'Sangam Sadotra','9469922897','kingsadotra@123',1,22,3,NULL,NULL,'2022-12-15 14:49:50','2022-12-15 14:49:50',NULL),(50,'saanvi','0565saanvi@gmail.com','5june2005',1,23,3,NULL,NULL,'2022-12-22 04:45:57','2022-12-22 04:45:57',NULL),(51,'Ujwal','ujwalbhan007@gmail.com','1234567@ab',1,22,3,NULL,NULL,'2023-02-04 16:08:42','2023-02-04 16:08:42',NULL),(52,'Priyanshu','bhallapriyanshu746@gmail.com','12345678',1,42,3,NULL,NULL,'2023-03-02 08:59:40','2023-03-02 08:59:40',NULL),(53,'Apoorav','apooravraina21@gmail.com','appura21@',1,23,3,NULL,NULL,'2023-03-22 17:15:36','2023-03-22 17:15:36',NULL),(54,'Purvansh Jamwal','nhiibtana@gmail.com','sorrypaaji',1,29,3,NULL,NULL,'2023-04-03 07:45:49','2023-04-03 07:45:49',NULL),(55,'Sankalp','Sankalp.p333@gmail.com','Warrior336',1,86,4,NULL,NULL,'2023-04-04 09:33:11','2023-04-04 09:33:11',NULL),(56,'Manit','7006175372','manitsisyer',1,22,3,NULL,NULL,'2023-04-06 06:22:43','2023-04-06 06:22:43',NULL),(57,'Harmann Singh','harmann792014@gmail.com','Harmann 1',1,22,3,NULL,NULL,'2023-04-07 05:02:54','2023-04-07 05:02:54',NULL),(58,'.','Koursaveey@gmail.com','savnet08',1,22,3,NULL,NULL,'2023-04-09 10:51:48','2023-04-09 10:51:48',NULL),(59,'Shubham Kumar Singh','sk715rocks@gmail.com','SK716ROCKS',1,23,3,NULL,NULL,'2023-04-13 09:10:13','2023-04-13 09:10:13',NULL),(60,'Harshit','harshitgupta918813@gmail.com','harshit123',1,22,3,NULL,NULL,'2023-04-14 06:05:33','2023-04-14 06:05:33',NULL),(61,'Bhavya Gupta','9906831969','bhavya3556',1,22,3,NULL,NULL,'2023-04-18 11:56:14','2023-04-18 11:56:14',NULL),(62,'Ishan Jotshi','ishanjotshi46@gmail.com','@doraemon_869',1,89,3,NULL,NULL,'2023-04-19 10:11:57','2023-04-19 10:11:57',NULL),(63,'Balkesh','balkeshpraja490@gmail.com','@vikas1431',1,22,3,NULL,NULL,'2023-04-21 00:51:34','2023-04-21 00:51:34',NULL),(64,'netansh','netanshmahajannp@gmail.com','netansh130209#',1,74,5,NULL,NULL,'2023-04-28 09:11:47','2023-04-28 09:11:47',NULL),(65,'Nishant Manhas','reshammanhad@gmail.com','9103726w',1,22,5,NULL,NULL,'2023-05-08 09:13:05','2023-05-08 09:13:05',NULL),(66,'Palsheen kour','9149724591','palsheen',1,22,4,NULL,NULL,'2023-05-14 04:27:31','2023-05-14 04:27:31',NULL),(67,'Mohammad Mudassir Siddiqui class','9760437989','nhpc1234',1,22,5,NULL,NULL,'2023-05-15 09:04:18','2023-05-15 09:04:18',NULL),(68,'MOHD.','anzer786@rediffmail.com','1234',1,22,3,NULL,NULL,'2023-05-16 23:42:25','2023-05-16 23:42:25',NULL),(69,'sammeer','ayushtara132@gmail.com','Ayush777',1,23,4,NULL,NULL,'2023-05-21 07:54:34','2023-05-21 07:54:34',NULL),(70,'Kashin Gupta','9796603738','bruno@12345',1,67,5,NULL,NULL,'2023-05-26 03:36:57','2023-05-26 03:36:57',NULL),(71,'krishaang mahajan','krishaangmahajan2610@gmail.com','krishaang261007#',1,67,5,NULL,NULL,'2023-05-26 03:41:36','2023-05-26 03:41:36',NULL),(72,'Ayaan','broominfluenced@gmail.com','poopandpoop',1,67,5,NULL,NULL,'2023-05-26 04:08:58','2023-05-26 04:08:58',NULL),(73,'Prannveer Singh','9419168038','1q12345678',1,74,5,NULL,NULL,'2023-05-26 05:12:16','2023-05-26 05:12:16',NULL),(74,'kartik','6006055990','kitrak21#@',1,22,3,NULL,NULL,'2023-06-03 09:25:11','2023-06-03 09:25:11',NULL),(75,'Krishna Kandhari','krishnakandharikk@gmail.com','Krishna@2024',1,23,3,NULL,NULL,'2023-06-07 22:33:53','2023-06-07 22:33:53',NULL),(76,'Aashil Ubbott','ubbott.aa@gmail.com','Physicus',1,22,3,NULL,NULL,'2023-06-08 05:24:08','2023-06-08 05:24:08',NULL),(77,'raghav','raghav7.anand@gmail.com','##Raghav##',1,22,3,NULL,NULL,'2023-06-08 12:20:11','2023-06-08 12:20:11',NULL),(78,'Anand kumar singh','6006861611','PADHLOJI209',1,22,3,NULL,NULL,'2023-06-09 00:56:16','2023-06-09 00:56:16',NULL),(79,'SiterBor','sirfak@yandex.com','4nE3zP',1,52,4,NULL,NULL,'2023-06-26 11:41:30','2023-06-26 11:41:30',NULL),(80,'? Hello World! https://national-team.top/go/hezwgobsmq5dinbw?hs=cf66abf4627b706e1d6210a2876e42b2 ?','xsoog@merepost.com','nKL`OB^<',1,89,19,NULL,NULL,'2023-06-28 06:36:13','2023-06-28 06:36:13',NULL),(81,'Rahini Sharma','6006073459','yougotme_7',1,22,5,NULL,NULL,'2023-07-04 14:12:26','2023-07-04 14:12:26',NULL),(82,'Aniket dwivedi','8461050666','aniket47bf',1,85,5,NULL,NULL,'2023-07-06 07:48:29','2023-07-06 07:48:29',NULL),(83,'Mrridhul khajuria','mrridhul_khajuria@outlook.com','Mrridhul@21',1,64,3,NULL,NULL,'2023-07-06 20:59:17','2023-07-06 20:59:17',NULL),(84,'Saiff Bhatti','saif38@gmail.com','Saad123$',1,22,5,NULL,NULL,'2023-07-09 06:53:38','2023-07-09 06:53:38',NULL),(85,'? Hello World! https://national-team.top/go/hezwgobsmq5dinbw?hs=309b29d5607c8f34900c682852282817 ?','guuema@mailto.plus','d`j\'xhNILjPg',1,89,19,NULL,NULL,'2023-07-13 22:02:15','2023-07-13 22:02:15',NULL),(86,'Anwita Kapoor','anwitakapoor20@gmail.com','anwitapdj567',1,22,4,NULL,NULL,'2023-07-16 10:54:58','2023-07-16 10:54:58',NULL),(87,'Smridhad bhau','smridhadbhau07@gmail.com','smridh123456',1,22,3,NULL,NULL,'2023-07-21 04:45:54','2023-07-21 04:45:54',NULL),(88,'Kashvi','Ahujakashvi11@gmail.com','Oct-11-2009',1,74,5,NULL,NULL,'2023-08-03 17:37:06','2023-08-03 17:37:06',NULL),(89,'Mansi','mansibavoria@gmail.com','mbav00',1,22,4,NULL,NULL,'2023-08-16 12:07:46','2023-08-16 12:07:46',NULL),(90,'Sujal Koul','Ksujalr2020@gmail.com','sujal@123',1,42,3,NULL,NULL,'2023-09-06 01:42:14','2023-09-06 01:42:14',NULL),(91,'Riya mottan','9622248981','189251',1,22,4,NULL,NULL,'2023-09-08 10:42:18','2023-09-08 10:42:18',NULL),(92,'Kamran','kamranshafi890@gmail.com','kamranbatt890',1,42,3,NULL,NULL,'2023-09-20 13:42:01','2023-09-20 13:42:01',NULL),(93,'01hdabd5s6d8bpwb33aqr3f6te@mail4u.fun','01hdabd5s6d8bpwb33aqr3f6te@mail4u.fun','!FALola.Wolffas71',1,89,19,NULL,NULL,'2023-10-21 18:47:40','2023-10-21 18:47:40',NULL),(94,'Anvi','8fanvibis.shandil@gmail.com','anvi@2605',1,22,3,NULL,NULL,'2023-10-24 05:41:48','2023-10-24 05:41:48',NULL),(95,'spNEqDQlqKMpq','VpJVkN.hqjjhtb@gemination.hair','Bj3v6VCA7#',1,22,3,NULL,NULL,'2023-10-26 23:33:36','2023-10-26 23:33:36',NULL);
/*!40000 ALTER TABLE `students` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `test_question`
--
DROP TABLE IF EXISTS `test_question`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `test_question` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`serial_no` int(10) unsigned DEFAULT '0',
`test_id` int(10) unsigned DEFAULT '0',
`test_code` varchar(55) DEFAULT NULL,
`question` text,
`option_1` text,
`option_2` text,
`option_3` text,
`option_4` text,
`answer` text,
`solution` text,
`created_by` int(10) unsigned NOT NULL,
`updated_by` int(10) unsigned DEFAULT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL,
`deleted_at` timestamp NULL DEFAULT NULL,
PRIMARY KEY (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=11 DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `test_question`
--
LOCK TABLES `test_question` WRITE;
/*!40000 ALTER TABLE `test_question` DISABLE KEYS */;
INSERT INTO `test_question` (`id`, `serial_no`, `test_id`, `test_code`, `question`, `option_1`, `option_2`, `option_3`, `option_4`, `answer`, `solution`, `created_by`, `updated_by`, `created_at`, `updated_at`, `deleted_at`) VALUES (1,1,46,'111','India is a federal union comprising\nsdasdadasdasdasdasdasdasdasdas<img src=\"http://127.0.0.1:8000/storage/question_images/1629213711_0.png\"/>','6','7','8','9','b','Solution',0,NULL,NULL,NULL,NULL),(2,2,46,'111','India is a federal union comprising twenty-nine states and how many union territories','Itanagar','Dispur','Imphal','Panaji','a','Solution',0,NULL,NULL,NULL,NULL),(3,3,46,'111','India is a federal union comprising twenty-nine states and how many union territories','English and Telugu','Telugu and Urdu','Telugu and Kannada','All of the above languages','b','Solution',0,NULL,NULL,NULL,NULL),(4,4,46,'111','India is a federal union comprising twenty-nine states and how many union territories','Lotus','Rhododendron','Golden Shower','Not declared','a','Solution',0,NULL,NULL,NULL,NULL),(5,5,46,'111','India is a federal union comprising twenty-nine states and how many union territories','Jharkhand','Jammu and Kashmir','Himachal Pradesh','Haryana','a','Solution',0,NULL,NULL,NULL,NULL),(6,6,46,'111','India is a federal union comprising twenty-nine states and how many union territories','Mizoram','Nagaland','Meghalaya','Tripura','c','Solution',0,NULL,NULL,NULL,NULL),(7,7,46,'111','Which is the largest coffee producing state of India?','Kerala','Tamil Nadu','Karnataka','Arunachal Pradesh','c','Solution',0,NULL,NULL,NULL,NULL),(8,8,46,'111','Which state has the largest area?','Maharashtra','Madhya Pradesh','Uttar Pradesh','Andra Pradesh','c','Solution',0,NULL,NULL,NULL,NULL),(9,9,46,'111','Which state has the largest population?','Uttar Pradesh','Maharastra','Bihar','Andra Pradesh','a','Solution',0,NULL,NULL,NULL,NULL),(10,10,46,'111','In what state is the Elephant Falls located?','Mizoram','Orissa','Manipur','Meghalaya','d','Solution',0,NULL,NULL,NULL,NULL);
/*!40000 ALTER TABLE `test_question` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `users`
--
DROP TABLE IF EXISTS `users`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `users` (
`id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`uuid` char(36) COLLATE utf8mb4_unicode_ci NOT NULL,
`first_name` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`last_name` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`email` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`avatar_type` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'gravatar',
`avatar_location` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`password` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`password_changed_at` timestamp NULL DEFAULT NULL,
`active` tinyint(3) unsigned NOT NULL DEFAULT '1',
`confirmation_code` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`confirmed` tinyint(1) NOT NULL DEFAULT '0',
`timezone` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`last_login_at` timestamp NULL DEFAULT NULL,
`last_login_ip` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`to_be_logged_out` tinyint(1) NOT NULL DEFAULT '0',
`status` tinyint(1) NOT NULL DEFAULT '1',
`created_by` int(10) unsigned DEFAULT NULL,
`updated_by` int(10) unsigned DEFAULT NULL,
`is_term_accept` tinyint(1) NOT NULL DEFAULT '0' COMMENT ' 0 = not accepted,1 = accepted',
`remember_token` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL,
`deleted_at` timestamp NULL DEFAULT NULL,
PRIMARY KEY (`id`),
UNIQUE KEY `users_email_unique` (`email`)
) ENGINE=MyISAM AUTO_INCREMENT=6 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `users`
--
LOCK TABLES `users` WRITE;
/*!40000 ALTER TABLE `users` DISABLE KEYS */;
INSERT INTO `users` (`id`, `uuid`, `first_name`, `last_name`, `email`, `avatar_type`, `avatar_location`, `password`, `password_changed_at`, `active`, `confirmation_code`, `confirmed`, `timezone`, `last_login_at`, `last_login_ip`, `to_be_logged_out`, `status`, `created_by`, `updated_by`, `is_term_accept`, `remember_token`, `created_at`, `updated_at`, `deleted_at`) VALUES (1,'84bcd9f2-27c2-4c1b-a6e0-9f01846fcdf7','Alan','Whitmore','admin@admin.com','gravatar',NULL,'$2y$10$OrxyKtMfhcc5O6hsM5rcvuraXq37sM8GGY1yVfeDDn6Zlm2DwAeZS',NULL,1,'b67f6c5addc4afd018edcdb3472d79a3',1,'Asia/Kolkata','2022-06-28 04:27:12','205.253.57.118',0,1,1,NULL,0,'NOxLP6WJdKp4ik1GRrL6cmQlg0C1fCwz8pwXlnN6C9fBzjbtxShtdqN4FxTy','2021-06-14 12:03:39','2022-06-28 04:27:12',NULL),(2,'8de99f93-1245-4514-9a98-63fc5b00c63b','Justin','Bevan','executive@executive.com','gravatar',NULL,'$2y$10$XzzXhgN8etxLCQMCp3pBv.tXcCo4IfO1jCSVy5hOjKX5zoGxb0j3u',NULL,1,'4adf677b701036eb70b0a3df55f1ffbd',1,NULL,NULL,NULL,0,1,1,NULL,0,NULL,'2021-06-14 12:03:39','2021-06-14 12:03:39',NULL),(3,'11aa73fb-4ca2-42c6-b8df-547bc13eb2ba','User','Test','user@user.com','gravatar',NULL,'$2y$10$CHy5uHjwBon0vc21862OVOaxpZRPchQ3LZaWUhL5xUw5YO9AhLGYK',NULL,1,'df535d5d706a739064d9a628a1de1280',1,NULL,NULL,NULL,0,1,1,NULL,0,NULL,'2021-06-14 12:03:39','2021-06-14 12:03:39',NULL),(4,'1b127f37-19ec-4787-9ab3-7860d5022c8f','Norris','Kirlin','forest.keebler@example.org','gravatar',NULL,'$2y$10$ce2XAAbGWMFHj16n/KeDbupus7vv3SYJLs.8QTueTfWJIaHYIYg4G',NULL,1,'8d5e175bc9f3a18bbd9a69d14854c806',1,NULL,NULL,NULL,0,1,NULL,NULL,0,'PzzxwrvmGI','2021-06-14 12:03:39','2021-06-14 12:03:39',NULL),(5,'388cf865-3930-431a-8137-6244d092e180','Carlo','Considine','makenzie30@example.net','gravatar',NULL,'$2y$10$2SreLqun5bib6locEaYWJ.MofgkWW3PLh0hKzludQKIUHT4BspjJm',NULL,1,'b806d4b29a106244cd7ba77b6086b167',1,NULL,NULL,NULL,0,1,NULL,NULL,0,'xO8foLuqLL','2021-06-14 12:03:40','2021-06-14 12:03:40',NULL);
/*!40000 ALTER TABLE `users` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Dumping events for database 'padhlwsr_padhloji'
--
--
-- Dumping routines for database 'padhlwsr_padhloji'
--
/*!50112 SET @disable_bulk_load = IF (@is_rocksdb_supported, 'SET SESSION rocksdb_bulk_load = @old_rocksdb_bulk_load', 'SET @dummy_rocksdb_bulk_load = 0') */;
/*!50112 PREPARE s FROM @disable_bulk_load */;