moodle_backup.sql 1.29 MB
Newer Older
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
3038
3039
3040
3041
3042
3043
3044
3045
3046
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058
3059
3060
3061
3062
3063
3064
3065
3066
3067
3068
3069
3070
3071
3072
3073
3074
3075
3076
3077
3078
3079
3080
3081
3082
3083
3084
3085
3086
3087
3088
3089
3090
3091
3092
3093
3094
3095
3096
3097
3098
3099
3100
3101
3102
3103
3104
3105
3106
3107
3108
3109
3110
3111
3112
3113
3114
3115
3116
3117
3118
3119
3120
3121
3122
3123
3124
3125
3126
3127
3128
3129
3130
3131
3132
3133
3134
3135
3136
3137
3138
3139
3140
3141
3142
3143
3144
3145
3146
3147
3148
3149
3150
3151
3152
3153
3154
3155
3156
3157
3158
3159
3160
3161
3162
3163
3164
3165
3166
3167
3168
3169
3170
3171
3172
3173
3174
3175
3176
3177
3178
3179
3180
3181
3182
3183
3184
3185
3186
3187
3188
3189
3190
3191
3192
3193
3194
3195
3196
3197
3198
3199
3200
3201
3202
3203
3204
3205
3206
3207
3208
3209
3210
3211
3212
3213
3214
3215
3216
3217
3218
3219
3220
3221
3222
3223
3224
3225
3226
3227
3228
3229
3230
3231
3232
3233
3234
3235
3236
3237
3238
3239
3240
3241
3242
3243
3244
3245
3246
3247
3248
3249
3250
3251
3252
3253
3254
3255
3256
3257
3258
3259
3260
3261
3262
3263
3264
3265
3266
3267
3268
3269
3270
3271
3272
3273
3274
3275
3276
3277
3278
3279
3280
3281
3282
3283
3284
3285
3286
3287
3288
3289
3290
3291
3292
3293
3294
3295
3296
3297
3298
3299
3300
3301
3302
3303
3304
3305
3306
3307
3308
3309
3310
3311
3312
3313
3314
3315
3316
3317
3318
3319
3320
3321
3322
3323
3324
3325
3326
3327
3328
3329
3330
3331
3332
3333
3334
3335
3336
3337
3338
3339
3340
3341
3342
3343
3344
3345
3346
3347
3348
3349
3350
3351
3352
3353
3354
3355
3356
3357
3358
3359
3360
3361
3362
3363
3364
3365
3366
3367
3368
3369
3370
3371
3372
3373
3374
3375
3376
3377
3378
3379
3380
3381
3382
3383
3384
3385
3386
3387
3388
3389
3390
3391
3392
3393
3394
3395
3396
3397
3398
3399
3400
3401
3402
3403
3404
3405
3406
3407
3408
3409
3410
3411
3412
3413
3414
3415
3416
3417
3418
3419
3420
3421
3422
3423
3424
3425
3426
3427
3428
3429
3430
3431
3432
3433
3434
3435
3436
3437
3438
3439
3440
3441
3442
3443
3444
3445
3446
3447
3448
3449
3450
3451
3452
3453
3454
3455
3456
3457
3458
3459
3460
3461
3462
3463
3464
3465
3466
3467
3468
3469
3470
3471
3472
3473
3474
3475
3476
3477
3478
3479
3480
3481
3482
3483
3484
3485
3486
3487
3488
3489
3490
3491
3492
3493
3494
3495
3496
3497
3498
3499
3500
3501
3502
3503
3504
3505
3506
3507
3508
3509
3510
3511
3512
3513
3514
3515
3516
3517
3518
3519
3520
3521
3522
3523
3524
3525
3526
3527
3528
3529
3530
3531
3532
3533
3534
3535
3536
3537
3538
3539
3540
3541
3542
3543
3544
3545
3546
3547
3548
3549
3550
3551
3552
3553
3554
3555
3556
3557
3558
3559
3560
3561
3562
3563
3564
3565
3566
3567
3568
3569
3570
3571
3572
3573
3574
3575
3576
3577
3578
3579
3580
3581
3582
3583
3584
3585
3586
3587
3588
3589
3590
3591
3592
3593
3594
3595
3596
3597
3598
3599
3600
3601
3602
3603
3604
3605
3606
3607
3608
3609
3610
3611
3612
3613
3614
3615
3616
3617
3618
3619
3620
3621
3622
3623
3624
3625
3626
3627
3628
3629
3630
3631
3632
3633
3634
3635
3636
3637
3638
3639
3640
3641
3642
3643
3644
3645
3646
3647
3648
3649
3650
3651
3652
3653
3654
3655
3656
3657
3658
3659
3660
3661
3662
3663
3664
3665
3666
3667
3668
3669
3670
3671
3672
3673
3674
3675
3676
3677
3678
3679
3680
3681
3682
3683
3684
3685
3686
3687
3688
3689
3690
3691
3692
3693
3694
3695
3696
3697
3698
3699
3700
3701
3702
3703
3704
3705
3706
3707
3708
3709
3710
3711
3712
3713
3714
3715
3716
3717
3718
3719
3720
3721
3722
3723
3724
3725
3726
3727
3728
3729
3730
3731
3732
3733
3734
3735
3736
3737
3738
3739
3740
3741
3742
3743
3744
3745
3746
3747
3748
3749
3750
3751
3752
3753
3754
3755
3756
3757
3758
3759
3760
3761
3762
3763
3764
3765
3766
3767
3768
3769
3770
3771
3772
3773
3774
3775
3776
3777
3778
3779
3780
3781
3782
3783
3784
3785
3786
3787
3788
3789
3790
3791
3792
3793
3794
3795
3796
3797
3798
3799
3800
3801
3802
3803
3804
3805
3806
3807
3808
3809
3810
3811
3812
3813
3814
3815
3816
3817
3818
3819
3820
3821
3822
3823
3824
3825
3826
3827
3828
3829
3830
3831
3832
3833
3834
3835
3836
3837
3838
3839
3840
3841
3842
3843
3844
3845
3846
3847
3848
3849
3850
3851
3852
3853
3854
3855
3856
3857
3858
3859
3860
3861
3862
3863
3864
3865
3866
3867
3868
3869
3870
3871
3872
3873
3874
3875
3876
3877
3878
3879
3880
3881
3882
3883
3884
3885
3886
3887
3888
3889
3890
3891
3892
3893
3894
3895
3896
3897
3898
3899
3900
3901
3902
3903
3904
3905
3906
3907
3908
3909
3910
3911
3912
3913
3914
3915
3916
3917
3918
3919
3920
3921
3922
3923
3924
3925
3926
3927
3928
3929
3930
3931
3932
3933
3934
3935
3936
3937
3938
3939
3940
3941
3942
3943
3944
3945
3946
3947
3948
3949
3950
3951
3952
3953
3954
3955
3956
3957
3958
3959
3960
3961
3962
3963
3964
3965
3966
3967
3968
3969
3970
3971
3972
3973
3974
3975
3976
3977
3978
3979
3980
3981
3982
3983
3984
3985
3986
3987
3988
3989
3990
3991
3992
3993
3994
3995
3996
3997
3998
3999
4000
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `mdl_competency_usercompcourse` (
  `id` bigint(10) NOT NULL AUTO_INCREMENT,
  `userid` bigint(10) NOT NULL,
  `courseid` bigint(10) NOT NULL,
  `competencyid` bigint(10) NOT NULL,
  `proficiency` tinyint(2) DEFAULT NULL,
  `grade` bigint(10) DEFAULT NULL,
  `timecreated` bigint(10) NOT NULL,
  `timemodified` bigint(10) DEFAULT NULL,
  `usermodified` bigint(10) NOT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `mdl_compuser_usecoucom_uix` (`userid`,`courseid`,`competencyid`),
  KEY `mdl_compuser_use2_ix` (`usermodified`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='User competencies in a course';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `mdl_competency_usercompcourse`
--

LOCK TABLES `mdl_competency_usercompcourse` WRITE;
/*!40000 ALTER TABLE `mdl_competency_usercompcourse` DISABLE KEYS */;
/*!40000 ALTER TABLE `mdl_competency_usercompcourse` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `mdl_competency_usercompplan`
--

DROP TABLE IF EXISTS `mdl_competency_usercompplan`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `mdl_competency_usercompplan` (
  `id` bigint(10) NOT NULL AUTO_INCREMENT,
  `userid` bigint(10) NOT NULL,
  `competencyid` bigint(10) NOT NULL,
  `planid` bigint(10) NOT NULL,
  `proficiency` tinyint(2) DEFAULT NULL,
  `grade` bigint(10) DEFAULT NULL,
  `sortorder` bigint(10) DEFAULT NULL,
  `timecreated` bigint(10) NOT NULL,
  `timemodified` bigint(10) DEFAULT NULL,
  `usermodified` bigint(10) NOT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `mdl_compuser_usecompla_uix` (`userid`,`competencyid`,`planid`),
  KEY `mdl_compuser_use3_ix` (`usermodified`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='User competencies plans';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `mdl_competency_usercompplan`
--

LOCK TABLES `mdl_competency_usercompplan` WRITE;
/*!40000 ALTER TABLE `mdl_competency_usercompplan` DISABLE KEYS */;
/*!40000 ALTER TABLE `mdl_competency_usercompplan` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `mdl_competency_userevidence`
--

DROP TABLE IF EXISTS `mdl_competency_userevidence`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `mdl_competency_userevidence` (
  `id` bigint(10) NOT NULL AUTO_INCREMENT,
  `userid` bigint(10) NOT NULL,
  `name` varchar(100) NOT NULL DEFAULT '',
  `description` longtext NOT NULL,
  `descriptionformat` tinyint(1) NOT NULL,
  `url` longtext NOT NULL,
  `timecreated` bigint(10) NOT NULL,
  `timemodified` bigint(10) NOT NULL,
  `usermodified` bigint(10) NOT NULL,
  PRIMARY KEY (`id`),
  KEY `mdl_compuser_use4_ix` (`userid`),
  KEY `mdl_compuser_use5_ix` (`usermodified`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='The evidence of prior learning';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `mdl_competency_userevidence`
--

LOCK TABLES `mdl_competency_userevidence` WRITE;
/*!40000 ALTER TABLE `mdl_competency_userevidence` DISABLE KEYS */;
/*!40000 ALTER TABLE `mdl_competency_userevidence` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `mdl_competency_userevidencecomp`
--

DROP TABLE IF EXISTS `mdl_competency_userevidencecomp`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `mdl_competency_userevidencecomp` (
  `id` bigint(10) NOT NULL AUTO_INCREMENT,
  `userevidenceid` bigint(10) NOT NULL,
  `competencyid` bigint(10) NOT NULL,
  `timecreated` bigint(10) NOT NULL,
  `timemodified` bigint(10) NOT NULL,
  `usermodified` bigint(10) NOT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `mdl_compuser_usecom2_uix` (`userevidenceid`,`competencyid`),
  KEY `mdl_compuser_use6_ix` (`userevidenceid`),
  KEY `mdl_compuser_use7_ix` (`usermodified`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='Relationship between user evidence and competencies';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `mdl_competency_userevidencecomp`
--

LOCK TABLES `mdl_competency_userevidencecomp` WRITE;
/*!40000 ALTER TABLE `mdl_competency_userevidencecomp` DISABLE KEYS */;
/*!40000 ALTER TABLE `mdl_competency_userevidencecomp` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `mdl_config`
--

DROP TABLE IF EXISTS `mdl_config`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `mdl_config` (
  `id` bigint(10) NOT NULL AUTO_INCREMENT,
  `name` varchar(255) NOT NULL DEFAULT '',
  `value` longtext NOT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `mdl_conf_nam_uix` (`name`)
) ENGINE=InnoDB AUTO_INCREMENT=575 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='Moodle configuration variables';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `mdl_config`
--

LOCK TABLES `mdl_config` WRITE;
/*!40000 ALTER TABLE `mdl_config` DISABLE KEYS */;
INSERT INTO `mdl_config` (`id`, `name`, `value`) VALUES (2,'rolesactive','1'),(3,'auth','email'),(4,'enrol_plugins_enabled','manual,guest,self,cohort'),(5,'theme','classic'),(6,'filter_multilang_converted','1'),(7,'siteidentifier','b2fNC28bKMLaDS21QrrrdkWZIskEc7hAwww.moodle.loc'),(8,'backup_version','2008111700'),(9,'backup_release','2.0 dev'),(10,'mnet_dispatcher_mode','off'),(11,'sessiontimeout','28800'),(12,'stringfilters',''),(13,'filterall','0'),(14,'texteditors','tiny,atto,tinymce,textarea'),(15,'antiviruses',''),(16,'media_plugins_sortorder','videojs,youtube'),(17,'upgrade_extracreditweightsstepignored','1'),(18,'upgrade_calculatedgradeitemsignored','1'),(19,'upgrade_letterboundarycourses','1'),(20,'mnet_localhost_id','1'),(21,'mnet_all_hosts_id','2'),(22,'siteguest','1'),(23,'siteadmins','2'),(24,'themerev','1722414942'),(25,'jsrev','1722414942'),(26,'templaterev','1722414942'),(27,'gdversion','2'),(28,'licenses','unknown,allrightsreserved,public,cc-4.0,cc-nc-4.0,cc-nd-4.0,cc-nc-nd-4.0,cc-nc-sa-4.0,cc-sa-4.0'),(29,'sitedefaultlicense','unknown'),(30,'version','2023100904'),(31,'enableuserfeedback','0'),(32,'userfeedback_nextreminder','1'),(33,'userfeedback_remindafter','90'),(34,'enableoutcomes','0'),(35,'usecomments','1'),(36,'usetags','1'),(37,'enablenotes','1'),(38,'enableportfolios','0'),(39,'enablewebservices','1'),(40,'enablestats','0'),(41,'enablerssfeeds','0'),(42,'enableblogs','1'),(43,'enablecompletion','1'),(44,'enableavailability','1'),(45,'enableplagiarism','0'),(46,'enablebadges','1'),(47,'enableglobalsearch','0'),(48,'allowstealth','0'),(49,'enableanalytics','1'),(50,'messaging','1'),(51,'enablecustomreports','1'),(52,'allowemojipicker','1'),(53,'userfiltersdefault','realname'),(54,'defaultpreference_maildisplay','2'),(55,'defaultpreference_mailformat','1'),(56,'defaultpreference_maildigest','0'),(57,'defaultpreference_autosubscribe','1'),(58,'defaultpreference_trackforums','0'),(59,'defaultpreference_core_contentbank_visibility','1'),(60,'enroladminnewcourse','1'),(61,'autologinguests','0'),(62,'hiddenuserfields',''),(63,'showuseridentity','email'),(64,'fullnamedisplay','language'),(65,'alternativefullnameformat','language'),(66,'maxusersperpage','100'),(67,'enablegravatar','0'),(68,'gravatardefaulturl','mm'),(69,'agedigitalconsentverification','0'),(70,'agedigitalconsentmap','*, 16\nAT, 14\nBE, 13\nBG, 14\nCY, 14\nCZ, 15\nDK, 13\nEE, 13\nES, 14\nFI, 13\nFR, 15\nGB, 13\nGR, 15\nIT, 14\nLT, 14\nLV, 13\nMT, 13\nNO, 13\nPT, 13\nSE, 13\nUS, 13'),(71,'sitepolicy',''),(72,'sitepolicyguest',''),(73,'downloadcoursecontentallowed','0'),(74,'maxsizeperdownloadcoursefile','52428800'),(75,'enablecourserequests','1'),(76,'defaultrequestcategory','1'),(77,'lockrequestcategory','0'),(78,'courserequestnotify',''),(79,'activitychoosertabmode','3'),(80,'activitychooseractivefooter','hidden'),(81,'enableasyncbackup','0'),(82,'grade_profilereport','user'),(83,'grade_aggregationposition','1'),(84,'grade_includescalesinaggregation','1'),(85,'grade_hiddenasdate','0'),(86,'gradepublishing','0'),(87,'grade_export_exportfeedback','0'),(88,'grade_export_displaytype','1'),(89,'grade_export_decimalpoints','2'),(90,'grade_export_userprofilefields','firstname,lastname,idnumber,institution,department,email'),(91,'grade_export_customprofilefields',''),(92,'recovergradesdefault','0'),(93,'gradeexport',''),(94,'unlimitedgrades','0'),(95,'grade_report_showmin','1'),(96,'gradepointmax','100'),(97,'gradepointdefault','100'),(98,'grade_minmaxtouse','1'),(99,'grade_mygrades_report','overview'),(100,'gradereport_mygradeurl',''),(101,'grade_hideforcedsettings','1'),(102,'grade_aggregation','13'),(103,'grade_aggregation_flag','0'),(104,'grade_aggregations_visible','13'),(105,'grade_aggregateonlygraded','1'),(106,'grade_aggregateonlygraded_flag','2'),(107,'grade_aggregateoutcomes','0'),(108,'grade_aggregateoutcomes_flag','2'),(109,'grade_keephigh','0'),(110,'grade_keephigh_flag','3'),(111,'grade_droplow','0'),(112,'grade_droplow_flag','2'),(113,'grade_overridecat','1'),(114,'grade_displaytype','1'),(115,'grade_decimalpoints','2'),(116,'grade_item_advanced','iteminfo,idnumber,gradepass,plusfactor,multfactor,display,decimals,hiddenuntil,locktime'),(117,'grade_report_showonlyactiveenrol','1'),(118,'grade_report_quickgrading','1'),(119,'grade_report_meanselection','1'),(120,'grade_report_showaverages','1'),(121,'grade_report_showranges','0'),(122,'grade_report_showuserimage','1'),(123,'grade_report_shownumberofgrades','0'),(124,'grade_report_averagesdisplaytype','inherit'),(125,'grade_report_rangesdisplaytype','inherit'),(126,'grade_report_averagesdecimalpoints','inherit'),(127,'grade_report_rangesdecimalpoints','inherit'),(128,'grade_report_historyperpage','50'),(129,'grade_report_overview_showrank','0'),(130,'grade_report_overview_showtotalsifcontainhidden','0'),(131,'grade_report_user_showrank','0'),(132,'grade_report_user_showpercentage','1'),(133,'grade_report_user_showgrade','1'),(134,'grade_report_user_showfeedback','1'),(135,'grade_report_user_showrange','1'),(136,'grade_report_user_showweight','1'),(137,'grade_report_user_showaverage','0'),(138,'grade_report_user_showlettergrade','0'),(139,'grade_report_user_rangedecimals','0'),(140,'grade_report_user_showhiddenitems','1'),(141,'grade_report_user_showtotalsifcontainhidden','0'),(142,'grade_report_user_showcontributiontocoursetotal','1'),(143,'badges_defaultissuername',''),(144,'badges_defaultissuercontact',''),(145,'badges_badgesalt','badges1722414907'),(146,'badges_allowcoursebadges','1'),(147,'badges_allowexternalbackpack','1'),(148,'rememberuserlicensepref','1'),(149,'timezone','Europe/London'),(150,'forcetimezone','99'),(151,'country','0'),(152,'defaultcity',''),(153,'geoip2file','/var/www/html/moodledata/geoip/GeoLite2-City.mmdb'),(154,'googlemapkey3',''),(155,'allcountrycodes',''),(156,'autolang','1'),(157,'lang','en'),(158,'autolangusercreation','1'),(159,'langmenu','1'),(160,'langlist',''),(161,'langrev','1722414946'),(162,'langcache','1'),(163,'langstringcache','1'),(164,'locale',''),(165,'latinexcelexport','0'),(166,'enablepdfexportfont','0'),(167,'messagingallusers','0'),(168,'messagingdefaultpressenter','1'),(169,'messagingdeletereadnotificationsdelay','604800'),(170,'messagingdeleteallnotificationsdelay','2620800'),(171,'messagingallowemailoverride','0'),(172,'requiremodintro','0'),(173,'registerauth',''),(174,'authloginviaemail','0'),(175,'allowaccountssameemail','0'),(176,'authpreventaccountcreation','0'),(177,'loginpageautofocus','0'),(178,'guestloginbutton','1'),(179,'limitconcurrentlogins','0'),(180,'alternateloginurl',''),(181,'forgottenpasswordurl',''),(182,'auth_instructions',''),(183,'allowemailaddresses',''),(184,'denyemailaddresses',''),(185,'verifychangedemail','1'),(186,'enableloginrecaptcha','0'),(187,'recaptchapublickey',''),(188,'recaptchaprivatekey',''),(189,'filteruploadedfiles','0'),(190,'filtermatchoneperpage','0'),(191,'filtermatchonepertext','0'),(192,'filternavigationwithsystemcontext','0'),(193,'media_default_width','640'),(194,'media_default_height','360'),(195,'portfolio_moderate_filesize_threshold','1048576'),(196,'portfolio_high_filesize_threshold','5242880'),(197,'portfolio_moderate_db_threshold','20'),(198,'portfolio_high_db_threshold','50'),(199,'repositorycacheexpire','120'),(200,'repositorygetfiletimeout','30'),(201,'repositorysyncfiletimeout','1'),(202,'repositorysyncimagetimeout','3'),(203,'repositoryallowexternallinks','1'),(204,'legacyfilesinnewcourses','0'),(205,'legacyfilesaddallowed','1'),(206,'searchengine','simpledb'),(207,'searchindexwhendisabled','0'),(208,'searchindextime','600'),(209,'searchallavailablecourses','0'),(210,'searchincludeallcourses','0'),(211,'searchenablecategories','0'),(212,'searchdefaultcategory','core-all'),(213,'searchhideallcategory','0'),(214,'searchmaxtopresults','3'),(215,'searchteacherroles',''),(216,'searchenginequeryonly',''),(217,'searchbannerenable','0'),(218,'searchbanner',''),(219,'allowbeforeblock','0'),(220,'allowedip',''),(221,'blockedip',''),(222,'protectusernames','1'),(223,'forcelogin','0'),(224,'forceloginforprofiles','1'),(225,'forceloginforprofileimage','0'),(226,'opentowebcrawlers','0'),(227,'allowindexing','0'),(228,'maxbytes','0'),(229,'userquota','104857600'),(230,'allowobjectembed','0'),(231,'enabletrusttext','0'),(232,'maxeditingtime','1800'),(233,'extendedusernamechars','0'),(234,'keeptagnamecase','1'),(235,'profilesforenrolledusersonly','1'),(236,'cronclionly','1'),(237,'cronremotepassword',''),(238,'lockoutthreshold','0'),(239,'lockoutwindow','1800'),(240,'lockoutduration','1800'),(241,'passwordpolicy','1'),(242,'minpasswordlength','8'),(243,'minpassworddigits','1'),(244,'minpasswordlower','1'),(245,'minpasswordupper','1'),(246,'minpasswordnonalphanum','1'),(247,'maxconsecutiveidentchars','0'),(248,'passwordpolicycheckonlogin','0'),(249,'passwordreuselimit','0'),(250,'pwresettime','1800'),(251,'passwordchangelogout','0'),(252,'passwordchangetokendeletion','0'),(253,'tokenduration','7257600'),(254,'groupenrolmentkeypolicy','1'),(255,'disableuserimages','0'),(256,'emailchangeconfirmation','1'),(257,'rememberusername','2'),(258,'strictformsrequired','0'),(259,'cookiesecure','1'),(260,'allowframembedding','0'),(261,'curlsecurityblockedhosts','127.0.0.0/8\n192.168.0.0/16\n10.0.0.0/8\n172.16.0.0/12\n0.0.0.0\nlocalhost\n169.254.169.254\n0000::1'),(262,'curlsecurityallowedport','443\n80'),(263,'referrerpolicy','default'),(264,'displayloginfailures','0'),(265,'notifyloginfailures',''),(266,'notifyloginthreshold','10'),(267,'themelist',''),(268,'themedesignermode','0'),(269,'allowuserthemes','0'),(270,'allowcoursethemes','0'),(271,'allowcategorythemes','0'),(272,'allowcohortthemes','0'),(273,'allowthemechangeonurl','0'),(274,'allowuserblockhiding','1'),(275,'langmenuinsecurelayout','0'),(276,'logininfoinsecurelayout','0'),(277,'custommenuitems',''),(278,'customusermenuitems','profile,moodle|/user/profile.php\ngrades,grades|/grade/report/mygrades.php\ncalendar,core_calendar|/calendar/view.php?view=month\nprivatefiles,moodle|/user/files.php\nreports,core_reportbuilder|/reportbuilder/index.php'),(279,'calendartype','gregorian'),(280,'calendar_adminseesall','0'),(281,'calendar_site_timeformat','0'),(282,'calendar_startwday','1'),(283,'calendar_weekend','65'),(284,'calendar_lookahead','21'),(285,'calendar_maxevents','10'),(286,'enablecalendarexport','1'),(287,'calendar_customexport','1'),(288,'calendar_exportlookahead','365'),(289,'calendar_exportlookback','5'),(290,'calendar_exportsalt','ZsLDRDZfgqX7ZjxCDtqAUv1d6cBt23tweL7k0Bn6j36oYCYqtRN8V8xJasj9'),(291,'calendar_showicalsource','1'),(292,'useblogassociations','1'),(293,'bloglevel','4'),(294,'useexternalblogs','1'),(295,'externalblogcrontime','86400'),(296,'maxexternalblogsperuser','1'),(297,'blogusecomments','1'),(298,'blogshowcommentscount','1'),(299,'enabledashboard','1'),(300,'defaulthomepage','1'),(301,'allowguestmymoodle','1'),(302,'navshowfullcoursenames','0'),(303,'navshowcategories','1'),(304,'navshowmycoursecategories','0'),(305,'navshowallcourses','0'),(306,'navsortmycoursessort','sortorder'),(307,'navsortmycourseshiddenlast','1'),(308,'navcourselimit','10'),(309,'usesitenameforsitepages','0'),(310,'linkadmincategories','1'),(311,'linkcoursesections','1'),(312,'navshowfrontpagemods','1'),(313,'navadduserpostslinks','1'),(314,'sitenameintitle','shortname'),(315,'formatstringstriptags','1'),(316,'emoticons','[{\"text\":\":-)\",\"imagename\":\"s\\/smiley\",\"imagecomponent\":\"core\",\"altidentifier\":\"smiley\",\"altcomponent\":\"core_pix\"},{\"text\":\":)\",\"imagename\":\"s\\/smiley\",\"imagecomponent\":\"core\",\"altidentifier\":\"smiley\",\"altcomponent\":\"core_pix\"},{\"text\":\":-D\",\"imagename\":\"s\\/biggrin\",\"imagecomponent\":\"core\",\"altidentifier\":\"biggrin\",\"altcomponent\":\"core_pix\"},{\"text\":\";-)\",\"imagename\":\"s\\/wink\",\"imagecomponent\":\"core\",\"altidentifier\":\"wink\",\"altcomponent\":\"core_pix\"},{\"text\":\":-\\/\",\"imagename\":\"s\\/mixed\",\"imagecomponent\":\"core\",\"altidentifier\":\"mixed\",\"altcomponent\":\"core_pix\"},{\"text\":\"V-.\",\"imagename\":\"s\\/thoughtful\",\"imagecomponent\":\"core\",\"altidentifier\":\"thoughtful\",\"altcomponent\":\"core_pix\"},{\"text\":\":-P\",\"imagename\":\"s\\/tongueout\",\"imagecomponent\":\"core\",\"altidentifier\":\"tongueout\",\"altcomponent\":\"core_pix\"},{\"text\":\":-p\",\"imagename\":\"s\\/tongueout\",\"imagecomponent\":\"core\",\"altidentifier\":\"tongueout\",\"altcomponent\":\"core_pix\"},{\"text\":\"B-)\",\"imagename\":\"s\\/cool\",\"imagecomponent\":\"core\",\"altidentifier\":\"cool\",\"altcomponent\":\"core_pix\"},{\"text\":\"^-)\",\"imagename\":\"s\\/approve\",\"imagecomponent\":\"core\",\"altidentifier\":\"approve\",\"altcomponent\":\"core_pix\"},{\"text\":\"8-)\",\"imagename\":\"s\\/wideeyes\",\"imagecomponent\":\"core\",\"altidentifier\":\"wideeyes\",\"altcomponent\":\"core_pix\"},{\"text\":\":o)\",\"imagename\":\"s\\/clown\",\"imagecomponent\":\"core\",\"altidentifier\":\"clown\",\"altcomponent\":\"core_pix\"},{\"text\":\":-(\",\"imagename\":\"s\\/sad\",\"imagecomponent\":\"core\",\"altidentifier\":\"sad\",\"altcomponent\":\"core_pix\"},{\"text\":\":(\",\"imagename\":\"s\\/sad\",\"imagecomponent\":\"core\",\"altidentifier\":\"sad\",\"altcomponent\":\"core_pix\"},{\"text\":\"8-.\",\"imagename\":\"s\\/shy\",\"imagecomponent\":\"core\",\"altidentifier\":\"shy\",\"altcomponent\":\"core_pix\"},{\"text\":\":-I\",\"imagename\":\"s\\/blush\",\"imagecomponent\":\"core\",\"altidentifier\":\"blush\",\"altcomponent\":\"core_pix\"},{\"text\":\":-X\",\"imagename\":\"s\\/kiss\",\"imagecomponent\":\"core\",\"altidentifier\":\"kiss\",\"altcomponent\":\"core_pix\"},{\"text\":\"8-o\",\"imagename\":\"s\\/surprise\",\"imagecomponent\":\"core\",\"altidentifier\":\"surprise\",\"altcomponent\":\"core_pix\"},{\"text\":\"P-|\",\"imagename\":\"s\\/blackeye\",\"imagecomponent\":\"core\",\"altidentifier\":\"blackeye\",\"altcomponent\":\"core_pix\"},{\"text\":\"8-[\",\"imagename\":\"s\\/angry\",\"imagecomponent\":\"core\",\"altidentifier\":\"angry\",\"altcomponent\":\"core_pix\"},{\"text\":\"(grr)\",\"imagename\":\"s\\/angry\",\"imagecomponent\":\"core\",\"altidentifier\":\"angry\",\"altcomponent\":\"core_pix\"},{\"text\":\"xx-P\",\"imagename\":\"s\\/dead\",\"imagecomponent\":\"core\",\"altidentifier\":\"dead\",\"altcomponent\":\"core_pix\"},{\"text\":\"|-.\",\"imagename\":\"s\\/sleepy\",\"imagecomponent\":\"core\",\"altidentifier\":\"sleepy\",\"altcomponent\":\"core_pix\"},{\"text\":\"}-]\",\"imagename\":\"s\\/evil\",\"imagecomponent\":\"core\",\"altidentifier\":\"evil\",\"altcomponent\":\"core_pix\"},{\"text\":\"(h)\",\"imagename\":\"s\\/heart\",\"imagecomponent\":\"core\",\"altidentifier\":\"heart\",\"altcomponent\":\"core_pix\"},{\"text\":\"(heart)\",\"imagename\":\"s\\/heart\",\"imagecomponent\":\"core\",\"altidentifier\":\"heart\",\"altcomponent\":\"core_pix\"},{\"text\":\"(y)\",\"imagename\":\"s\\/yes\",\"imagecomponent\":\"core\",\"altidentifier\":\"yes\",\"altcomponent\":\"core\"},{\"text\":\"(n)\",\"imagename\":\"s\\/no\",\"imagecomponent\":\"core\",\"altidentifier\":\"no\",\"altcomponent\":\"core\"},{\"text\":\"(martin)\",\"imagename\":\"s\\/martin\",\"imagecomponent\":\"core\",\"altidentifier\":\"martin\",\"altcomponent\":\"core_pix\"},{\"text\":\"( )\",\"imagename\":\"s\\/egg\",\"imagecomponent\":\"core\",\"altidentifier\":\"egg\",\"altcomponent\":\"core_pix\"}]'),(317,'docroot','https://docs.moodle.org'),(318,'doclang',''),(319,'doctonewwindow','0'),(320,'coursecreationguide','https://moodle.academy/coursequickstart'),(321,'coursecontactduplicates','0'),(322,'courselistshortnames','0'),(323,'coursesperpage','20'),(324,'courseswithsummarieslimit','10'),(325,'courseoverviewfileslimit','1'),(326,'courseoverviewfilesext','web_image'),(327,'coursegraceperiodbefore','0'),(328,'coursegraceperiodafter','0'),(329,'yuicomboloading','1'),(330,'cachejs','1'),(331,'additionalhtmlhead',''),(332,'additionalhtmltopofbody',''),(333,'additionalhtmlfooter',''),(334,'cachetemplates','1'),(335,'pathtophp',''),(336,'pathtodu',''),(337,'aspellpath',''),(338,'pathtodot',''),(339,'pathtogs','/usr/bin/gs'),(340,'pathtopdftoppm',''),(341,'pathtopython',''),(342,'supportname','Admin User'),(343,'supportpage',''),(344,'supportavailability','1'),(345,'servicespage',''),(346,'dbsessions','0'),(347,'sessiontimeoutwarning','1200'),(348,'sessioncookie',''),(349,'sessioncookiepath',''),(350,'sessioncookiedomain',''),(351,'statsfirstrun','none'),(352,'statsmaxruntime','0'),(353,'statsruntimedays','31'),(354,'statsuserthreshold','0'),(355,'slasharguments','1'),(356,'getremoteaddrconf','3'),(357,'reverseproxyignore',''),(358,'proxyhost',''),(359,'proxyport','0'),(360,'proxytype','HTTP'),(361,'proxyuser',''),(362,'proxypassword',''),(363,'proxybypass','localhost, 127.0.0.1'),(364,'proxylogunsafe','0'),(365,'proxyfixunsafe','0'),(366,'maintenance_enabled','0'),(367,'maintenance_message',''),(368,'deleteunconfirmed','168'),(369,'deleteincompleteusers','0'),(370,'disablegradehistory','0'),(371,'gradehistorylifetime','0'),(372,'tempdatafoldercleanup','168'),(373,'xapicleanupperiod','4838400'),(374,'filescleanupperiod','86400'),(375,'extramemorylimit','512M'),(376,'maxtimelimit','0'),(377,'curlcache','120'),(378,'curltimeoutkbitrate','56'),(379,'cron_enabled','1'),(380,'cron_keepalive','180'),(381,'task_scheduled_concurrency_limit','3'),(382,'task_scheduled_max_runtime','1800'),(383,'task_adhoc_concurrency_limit','3'),(384,'task_adhoc_max_runtime','1800'),(385,'task_logmode','1'),(386,'task_logtostdout','1'),(387,'task_logretention','2419200'),(388,'task_logretainruns','20'),(389,'smtphosts',''),(390,'smtpsecure',''),(391,'smtpauthtype','LOGIN'),(392,'smtpuser',''),(393,'smtppass',''),(394,'smtpmaxbulk','1'),(395,'noreplyaddress','noreply@www.moodle.loc'),(396,'allowedemaildomains',''),(397,'divertallemailsto',''),(398,'divertallemailsexcept',''),(399,'emaildkimselector',''),(400,'sitemailcharset','0'),(401,'allowusermailcharset','0'),(402,'allowattachments','1'),(403,'mailnewline','LF'),(404,'emailfromvia','1'),(405,'emailsubjectprefix',''),(406,'emailheaders',''),(407,'updateautocheck','1'),(408,'updateminmaturity','200'),(409,'updatenotifybuilds','0'),(410,'enablewsdocumentation','0'),(411,'customreportslimit','0'),(412,'customreportsliveediting','1'),(413,'dndallowtextandlinks','0'),(414,'pathtosassc',''),(415,'contextlocking','0'),(416,'contextlockappliestoadmin','1'),(417,'forceclean','0'),(418,'enablecourserelativedates','0'),(419,'enablesharingtomoodlenet','0'),(420,'enablecommunicationsubsystem','0'),(421,'debug','0'),(422,'debugdisplay','0'),(423,'perfdebug','7'),(424,'debugstringids','0'),(425,'debugsqltrace','0'),(426,'debugvalidators','0'),(427,'debugpageinfo','0'),(428,'debugtemplateinfo','0'),(429,'profilingenabled','0'),(430,'profilingincluded',''),(431,'profilingexcluded',''),(432,'profilingautofrec','0'),(433,'profilingallowme','0'),(434,'profilingallowall','0'),(435,'profilingslow','0'),(436,'profilinglifetime','1440'),(437,'profilingimportprefix','(I)'),(438,'release','4.3.4 (Build: 20240422)'),(439,'branch','403'),(440,'localcachedirpurged','1722414942'),(441,'scheduledtaskreset','1722414942'),(442,'paygw_plugins_sortorder','paypal'),(443,'allversionshash','68a2d3ed6b783a53b3b62cebeaed6c8b5eedd05d'),(444,'allcomponenthash','0e306e66176d83af26723ef5ca3e2cf32be59b1c'),(445,'enableaccessibilitytools','1'),(446,'notloggedinroleid','6'),(447,'guestroleid','6'),(448,'defaultuserroleid','7'),(449,'creatornewroleid','3'),(450,'restorernewroleid','3'),(451,'sitepolicyhandler',''),(452,'gradebookroles','5'),(453,'h5plibraryhandler','h5plib_v126'),(454,'airnotifierurl','https://messages.moodle.net'),(455,'airnotifierport','443'),(456,'airnotifiermobileappname','com.moodle.moodlemobile'),(457,'airnotifierappname','commoodlemoodlemobile'),(458,'airnotifieraccesskey',''),(459,'bigbluebuttonbn_default_dpa_accepted','0'),(460,'bigbluebuttonbn_server_url','https://test-moodle.blindsidenetworks.com/bigbluebutton/'),(461,'bigbluebuttonbn_shared_secret','0b21fcaf34673a8c3ec8ed877d76ae34'),(462,'bigbluebuttonbn_checksum_algorithm','SHA1'),(463,'bigbluebuttonbn_poll_interval','5'),(464,'bigbluebuttonbn_welcome_default',''),(465,'bigbluebuttonbn_welcome_editable','1'),(466,'bigbluebuttonbn_recording_default','1'),(467,'bigbluebuttonbn_recording_refresh_period','300'),(468,'bigbluebuttonbn_recording_editable','1'),(469,'bigbluebuttonbn_recording_all_from_start_default','0'),(470,'bigbluebuttonbn_recording_all_from_start_editable','0'),(471,'bigbluebuttonbn_recording_hide_button_default','0'),(472,'bigbluebuttonbn_recording_hide_button_editable','0'),(473,'bigbluebuttonbn_recording_safe_formats','video,presentation'),(474,'bigbluebuttonbn_importrecordings_enabled','0'),(475,'bigbluebuttonbn_importrecordings_from_deleted_enabled','0'),(476,'bigbluebuttonbn_recordings_deleted_default','1'),(477,'bigbluebuttonbn_recordings_deleted_editable','0'),(478,'bigbluebuttonbn_recordings_imported_default','0'),(479,'bigbluebuttonbn_recordings_imported_editable','1'),(480,'bigbluebuttonbn_recordings_preview_default','1'),(481,'bigbluebuttonbn_recordings_preview_editable','0'),(482,'bigbluebuttonbn_recordings_asc_sort','0'),(483,'bigbluebuttonbn_recording_protect_editable','1'),(484,'bigbluebuttonbn_waitformoderator_default','0'),(485,'bigbluebuttonbn_waitformoderator_editable','1'),(486,'bigbluebuttonbn_waitformoderator_ping_interval','10'),(487,'bigbluebuttonbn_waitformoderator_cache_ttl','60'),(488,'bigbluebuttonbn_voicebridge_editable','0'),(489,'bigbluebuttonbn_preuploadpresentation_editable','0'),(490,'bigbluebuttonbn_userlimit_default','0'),(491,'bigbluebuttonbn_userlimit_editable','0'),(492,'bigbluebuttonbn_participant_moderator_default','0'),(493,'bigbluebuttonbn_muteonstart_default','0'),(494,'bigbluebuttonbn_muteonstart_editable','0'),(495,'bigbluebuttonbn_disablecam_default','0'),(496,'bigbluebuttonbn_disablecam_editable','1'),(497,'bigbluebuttonbn_disablemic_default','0'),(498,'bigbluebuttonbn_disablemic_editable','1'),(499,'bigbluebuttonbn_disableprivatechat_default','0'),(500,'bigbluebuttonbn_disableprivatechat_editable','1'),(501,'bigbluebuttonbn_disablepublicchat_default','0'),(502,'bigbluebuttonbn_disablepublicchat_editable','1'),(503,'bigbluebuttonbn_disablenote_default','0'),(504,'bigbluebuttonbn_disablenote_editable','1'),(505,'bigbluebuttonbn_hideuserlist_default','0'),(506,'bigbluebuttonbn_hideuserlist_editable','1'),(507,'bigbluebuttonbn_recordingready_enabled','0'),(508,'bigbluebuttonbn_profile_picture_enabled','0'),(509,'bigbluebuttonbn_meetingevents_enabled','0'),(510,'bigbluebuttonbn_guestaccess_enabled','0'),(511,'chat_method','ajax'),(512,'chat_refresh_userlist','10'),(513,'chat_old_ping','35'),(514,'chat_refresh_room','5'),(515,'chat_normal_updatemode','jsupdate'),(516,'chat_serverhost','www.moodle.loc'),(517,'chat_serverip','127.0.0.1'),(518,'chat_serverport','9111'),(519,'chat_servermax','100'),(520,'data_enablerssfeeds','0'),(521,'feedback_allowfullanonymous','0'),(522,'forum_displaymode','3'),(523,'forum_shortpost','300'),(524,'forum_longpost','600'),(525,'forum_manydiscussions','100'),(526,'forum_maxbytes','512000'),(527,'forum_maxattachments','9'),(528,'forum_subscription','0'),(529,'forum_trackingtype','1'),(530,'forum_trackreadposts','1'),(531,'forum_allowforcedreadtracking','0'),(532,'forum_oldpostdays','14'),(533,'forum_usermarksread','0'),(534,'forum_cleanreadtime','2'),(535,'digestmailtime','17'),(536,'forum_enablerssfeeds','0'),(537,'forum_enabletimedposts','1'),(538,'glossary_entbypage','10'),(539,'glossary_dupentries','0'),(540,'glossary_allowcomments','0'),(541,'glossary_linkbydefault','1'),(542,'glossary_defaultapproval','1'),(543,'glossary_enablerssfeeds','0'),(544,'glossary_linkentries','0'),(545,'glossary_casesensitive','0'),(546,'glossary_fullmatch','0'),(547,'block_course_list_adminview','all'),(548,'block_course_list_hideallcourseslink','0'),(549,'block_online_users_timetosee','5'),(550,'block_online_users_onlinestatushiding','1'),(551,'block_rss_client_num_entries','5'),(552,'block_rss_client_timeout','30'),(553,'block_html_allowcssclasses','0'),(554,'pathtounoconv','/usr/bin/unoconv'),(555,'filter_multilang_force_old','0'),(556,'profileroles','5,4,3'),(557,'coursecontact','3'),(558,'frontpage','6'),(559,'frontpageloggedin','6'),(560,'maxcategorydepth','2'),(561,'frontpagecourselimit','200'),(562,'commentsperpage','15'),(563,'defaultfrontpageroleid','8'),(564,'messageinbound_enabled','0'),(565,'messageinbound_mailbox',''),(566,'messageinbound_domain',''),(567,'messageinbound_host',''),(568,'messageinbound_hostssl','ssl'),(569,'messageinbound_hostuser',''),(570,'messageinbound_hostpass',''),(571,'mobilecssurl',''),(572,'webserviceprotocols','rest'),(573,'enablemobilewebservice','1'),(574,'registrationpending','0');
/*!40000 ALTER TABLE `mdl_config` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `mdl_config_log`
--

DROP TABLE IF EXISTS `mdl_config_log`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `mdl_config_log` (
  `id` bigint(10) NOT NULL AUTO_INCREMENT,
  `userid` bigint(10) NOT NULL,
  `timemodified` bigint(10) NOT NULL,
  `plugin` varchar(100) DEFAULT NULL,
  `name` varchar(100) NOT NULL DEFAULT '',
  `value` longtext DEFAULT NULL,
  `oldvalue` longtext DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `mdl_conflog_tim_ix` (`timemodified`),
  KEY `mdl_conflog_use_ix` (`userid`)
) ENGINE=InnoDB AUTO_INCREMENT=1890 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='Changes done in server configuration through admin UI';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `mdl_config_log`
--

LOCK TABLES `mdl_config_log` WRITE;
/*!40000 ALTER TABLE `mdl_config_log` DISABLE KEYS */;
INSERT INTO `mdl_config_log` (`id`, `userid`, `timemodified`, `plugin`, `name`, `value`, `oldvalue`) VALUES (1,0,1722414913,NULL,'enableuserfeedback','0',NULL),(2,0,1722414913,NULL,'userfeedback_nextreminder','1',NULL),(3,0,1722414913,NULL,'userfeedback_remindafter','90',NULL),(4,0,1722414913,NULL,'enableoutcomes','0',NULL),(5,0,1722414913,NULL,'usecomments','1',NULL),(6,0,1722414913,NULL,'usetags','1',NULL),(7,0,1722414913,NULL,'enablenotes','1',NULL),(8,0,1722414913,NULL,'enableportfolios','0',NULL),(9,0,1722414913,NULL,'enablewebservices','0',NULL),(10,0,1722414913,NULL,'enablestats','0',NULL),(11,0,1722414913,NULL,'enablerssfeeds','0',NULL),(12,0,1722414913,NULL,'enableblogs','1',NULL),(13,0,1722414913,NULL,'enablecompletion','1',NULL),(14,0,1722414913,NULL,'enableavailability','1',NULL),(15,0,1722414913,NULL,'enableplagiarism','0',NULL),(16,0,1722414913,NULL,'enablebadges','1',NULL),(17,0,1722414913,NULL,'enableglobalsearch','0',NULL),(18,0,1722414913,NULL,'allowstealth','0',NULL),(19,0,1722414913,NULL,'enableanalytics','1',NULL),(20,0,1722414913,'core_competency','enabled','1',NULL),(21,0,1722414913,NULL,'messaging','1',NULL),(22,0,1722414913,NULL,'enablecustomreports','1',NULL),(23,0,1722414913,NULL,'allowemojipicker','1',NULL),(24,0,1722414913,NULL,'userfiltersdefault','realname',NULL),(25,0,1722414913,NULL,'defaultpreference_maildisplay','2',NULL),(26,0,1722414913,NULL,'defaultpreference_mailformat','1',NULL),(27,0,1722414913,NULL,'defaultpreference_maildigest','0',NULL),(28,0,1722414913,NULL,'defaultpreference_autosubscribe','1',NULL),(29,0,1722414913,NULL,'defaultpreference_trackforums','0',NULL),(30,0,1722414913,NULL,'defaultpreference_core_contentbank_visibility','1',NULL),(31,0,1722414913,NULL,'enroladminnewcourse','1',NULL),(32,0,1722414913,NULL,'autologinguests','0',NULL),(33,0,1722414913,NULL,'hiddenuserfields','',NULL),(34,0,1722414913,NULL,'showuseridentity','email',NULL),(35,0,1722414913,NULL,'fullnamedisplay','language',NULL),(36,0,1722414913,NULL,'alternativefullnameformat','language',NULL),(37,0,1722414913,NULL,'maxusersperpage','100',NULL),(38,0,1722414913,NULL,'enablegravatar','0',NULL),(39,0,1722414913,NULL,'gravatardefaulturl','mm',NULL),(40,0,1722414913,NULL,'agedigitalconsentverification','0',NULL),(41,0,1722414913,NULL,'agedigitalconsentmap','*, 16\nAT, 14\nBE, 13\nBG, 14\nCY, 14\nCZ, 15\nDK, 13\nEE, 13\nES, 14\nFI, 13\nFR, 15\nGB, 13\nGR, 15\nIT, 14\nLT, 14\nLV, 13\nMT, 13\nNO, 13\nPT, 13\nSE, 13\nUS, 13',NULL),(42,0,1722414913,NULL,'sitepolicy','',NULL),(43,0,1722414913,NULL,'sitepolicyguest','',NULL),(44,0,1722414913,NULL,'downloadcoursecontentallowed','0',NULL),(45,0,1722414913,NULL,'maxsizeperdownloadcoursefile','52428800',NULL),(46,0,1722414913,NULL,'enablecourserequests','1',NULL),(47,0,1722414913,NULL,'defaultrequestcategory','1',NULL),(48,0,1722414913,NULL,'lockrequestcategory','0',NULL),(49,0,1722414913,NULL,'courserequestnotify','',NULL),(50,0,1722414913,'moodlecourse','visible','1',NULL),(51,0,1722414913,'moodlecourse','downloadcontentsitedefault','0',NULL),(52,0,1722414913,'moodlecourse','participantsperpage','20',NULL),(53,0,1722414913,'moodlecourse','format','topics',NULL),(54,0,1722414913,'moodlecourse','maxsections','52',NULL),(55,0,1722414913,'moodlecourse','numsections','4',NULL),(56,0,1722414913,'moodlecourse','hiddensections','1',NULL),(57,0,1722414913,'moodlecourse','coursedisplay','0',NULL),(58,0,1722414913,'moodlecourse','courseenddateenabled','1',NULL),(59,0,1722414913,'moodlecourse','courseduration','31536000',NULL),(60,0,1722414913,'moodlecourse','lang','',NULL),(61,0,1722414913,'moodlecourse','newsitems','5',NULL),(62,0,1722414913,'moodlecourse','showgrades','1',NULL),(63,0,1722414913,'moodlecourse','showreports','0',NULL),(64,0,1722414913,'moodlecourse','showactivitydates','1',NULL),(65,0,1722414913,'moodlecourse','maxbytes','0',NULL),(66,0,1722414913,'moodlecourse','enablecompletion','1',NULL),(67,0,1722414913,'moodlecourse','showcompletionconditions','1',NULL),(68,0,1722414913,'moodlecourse','groupmode','0',NULL),(69,0,1722414913,'moodlecourse','groupmodeforce','0',NULL),(70,0,1722414913,'moodlecourse','coursecommunicationprovider','none',NULL),(71,0,1722414913,NULL,'activitychoosertabmode','3',NULL),(72,0,1722414913,NULL,'activitychooseractivefooter','hidden',NULL),(73,0,1722414913,'backup','loglifetime','30',NULL),(74,0,1722414913,'backup','backup_general_users','1',NULL),(75,0,1722414913,'backup','backup_general_users_locked','',NULL),(76,0,1722414913,'backup','backup_general_anonymize','0',NULL),(77,0,1722414913,'backup','backup_general_anonymize_locked','',NULL),(78,0,1722414913,'backup','backup_general_role_assignments','1',NULL),(79,0,1722414913,'backup','backup_general_role_assignments_locked','',NULL),(80,0,1722414913,'backup','backup_general_activities','1',NULL),(81,0,1722414913,'backup','backup_general_activities_locked','',NULL),(82,0,1722414913,'backup','backup_general_blocks','1',NULL),(83,0,1722414913,'backup','backup_general_blocks_locked','',NULL),(84,0,1722414913,'backup','backup_general_files','1',NULL),(85,0,1722414913,'backup','backup_general_files_locked','',NULL),(86,0,1722414913,'backup','backup_general_filters','1',NULL),(87,0,1722414913,'backup','backup_general_filters_locked','',NULL),(88,0,1722414913,'backup','backup_general_comments','1',NULL),(89,0,1722414913,'backup','backup_general_comments_locked','',NULL),(90,0,1722414913,'backup','backup_general_badges','1',NULL),(91,0,1722414913,'backup','backup_general_badges_locked','',NULL),(92,0,1722414913,'backup','backup_general_calendarevents','1',NULL),(93,0,1722414913,'backup','backup_general_calendarevents_locked','',NULL),(94,0,1722414913,'backup','backup_general_userscompletion','1',NULL),(95,0,1722414913,'backup','backup_general_userscompletion_locked','',NULL),(96,0,1722414913,'backup','backup_general_logs','0',NULL),(97,0,1722414913,'backup','backup_general_logs_locked','',NULL),(98,0,1722414913,'backup','backup_general_histories','0',NULL),(99,0,1722414913,'backup','backup_general_histories_locked','',NULL),(100,0,1722414913,'backup','backup_general_questionbank','1',NULL),(101,0,1722414913,'backup','backup_general_questionbank_locked','',NULL),(102,0,1722414913,'backup','backup_general_groups','1',NULL),(103,0,1722414914,'backup','backup_general_groups_locked','',NULL),(104,0,1722414914,'backup','backup_general_competencies','1',NULL),(105,0,1722414914,'backup','backup_general_competencies_locked','',NULL),(106,0,1722414914,'backup','backup_general_contentbankcontent','1',NULL),(107,0,1722414914,'backup','backup_general_contentbankcontent_locked','',NULL),(108,0,1722414914,'backup','backup_general_xapistate','1',NULL),(109,0,1722414914,'backup','backup_general_xapistate_locked','',NULL),(110,0,1722414914,'backup','backup_general_legacyfiles','1',NULL),(111,0,1722414914,'backup','backup_general_legacyfiles_locked','',NULL),(112,0,1722414914,'backup','import_general_maxresults','10',NULL),(113,0,1722414914,'backup','import_general_duplicate_admin_allowed','0',NULL),(114,0,1722414914,'backup','backup_import_permissions','0',NULL),(115,0,1722414914,'backup','backup_import_permissions_locked','',NULL),(116,0,1722414914,'backup','backup_import_activities','1',NULL),(117,0,1722414914,'backup','backup_import_activities_locked','',NULL),(118,0,1722414914,'backup','backup_import_blocks','1',NULL),(119,0,1722414914,'backup','backup_import_blocks_locked','',NULL),(120,0,1722414914,'backup','backup_import_filters','1',NULL),(121,0,1722414914,'backup','backup_import_filters_locked','',NULL),(122,0,1722414914,'backup','backup_import_calendarevents','1',NULL),(123,0,1722414914,'backup','backup_import_calendarevents_locked','',NULL),(124,0,1722414914,'backup','backup_import_questionbank','1',NULL),(125,0,1722414914,'backup','backup_import_questionbank_locked','',NULL),(126,0,1722414914,'backup','backup_import_groups','1',NULL),(127,0,1722414914,'backup','backup_import_groups_locked','',NULL),(128,0,1722414914,'backup','backup_import_competencies','1',NULL),(129,0,1722414914,'backup','backup_import_competencies_locked','',NULL),(130,0,1722414914,'backup','backup_import_contentbankcontent','1',NULL),(131,0,1722414914,'backup','backup_import_contentbankcontent_locked','',NULL),(132,0,1722414914,'backup','backup_import_legacyfiles','1',NULL),(133,0,1722414914,'backup','backup_import_legacyfiles_locked','',NULL),(134,0,1722414914,'backup','backup_auto_active','0',NULL),(135,0,1722414914,'backup','backup_auto_weekdays','0000000',NULL),(136,0,1722414914,'backup','backup_auto_hour','0',NULL),(137,0,1722414914,'backup','backup_auto_minute','0',NULL),(138,0,1722414914,'backup','backup_auto_storage','0',NULL),(139,0,1722414914,'backup','backup_auto_destination','',NULL),(140,0,1722414914,'backup','backup_auto_max_kept','1',NULL),(141,0,1722414914,'backup','backup_auto_delete_days','0',NULL),(142,0,1722414914,'backup','backup_auto_min_kept','0',NULL),(143,0,1722414914,'backup','backup_shortname','0',NULL),(144,0,1722414914,'backup','backup_auto_skip_hidden','1',NULL),(145,0,1722414914,'backup','backup_auto_skip_modif_days','30',NULL),(146,0,1722414914,'backup','backup_auto_skip_modif_prev','0',NULL),(147,0,1722414914,'backup','backup_auto_users','1',NULL),(148,0,1722414914,'backup','backup_auto_role_assignments','1',NULL),(149,0,1722414914,'backup','backup_auto_activities','1',NULL),(150,0,1722414914,'backup','backup_auto_blocks','1',NULL),(151,0,1722414914,'backup','backup_auto_files','1',NULL),(152,0,1722414914,'backup','backup_auto_filters','1',NULL),(153,0,1722414914,'backup','backup_auto_comments','1',NULL),(154,0,1722414914,'backup','backup_auto_badges','1',NULL),(155,0,1722414914,'backup','backup_auto_calendarevents','1',NULL),(156,0,1722414914,'backup','backup_auto_userscompletion','1',NULL),(157,0,1722414914,'backup','backup_auto_logs','0',NULL),(158,0,1722414914,'backup','backup_auto_histories','0',NULL),(159,0,1722414914,'backup','backup_auto_questionbank','1',NULL),(160,0,1722414914,'backup','backup_auto_groups','1',NULL),(161,0,1722414914,'backup','backup_auto_competencies','1',NULL),(162,0,1722414914,'backup','backup_auto_contentbankcontent','1',NULL),(163,0,1722414914,'backup','backup_auto_xapistate','1',NULL),(164,0,1722414914,'backup','backup_auto_legacyfiles','1',NULL),(165,0,1722414914,'restore','restore_general_users','1',NULL),(166,0,1722414914,'restore','restore_general_users_locked','',NULL),(167,0,1722414914,'restore','restore_general_enrolments','1',NULL),(168,0,1722414914,'restore','restore_general_enrolments_locked','',NULL),(169,0,1722414914,'restore','restore_general_role_assignments','1',NULL),(170,0,1722414914,'restore','restore_general_role_assignments_locked','',NULL),(171,0,1722414914,'restore','restore_general_permissions','1',NULL),(172,0,1722414914,'restore','restore_general_permissions_locked','',NULL),(173,0,1722414914,'restore','restore_general_activities','1',NULL),(174,0,1722414914,'restore','restore_general_activities_locked','',NULL),(175,0,1722414914,'restore','restore_general_blocks','1',NULL),(176,0,1722414914,'restore','restore_general_blocks_locked','',NULL),(177,0,1722414914,'restore','restore_general_filters','1',NULL),(178,0,1722414914,'restore','restore_general_filters_locked','',NULL),(179,0,1722414914,'restore','restore_general_comments','1',NULL),(180,0,1722414914,'restore','restore_general_comments_locked','',NULL),(181,0,1722414914,'restore','restore_general_badges','1',NULL),(182,0,1722414914,'restore','restore_general_badges_locked','',NULL),(183,0,1722414914,'restore','restore_general_calendarevents','1',NULL),(184,0,1722414914,'restore','restore_general_calendarevents_locked','',NULL),(185,0,1722414914,'restore','restore_general_userscompletion','1',NULL),(186,0,1722414914,'restore','restore_general_userscompletion_locked','',NULL),(187,0,1722414914,'restore','restore_general_logs','1',NULL),(188,0,1722414914,'restore','restore_general_logs_locked','',NULL),(189,0,1722414914,'restore','restore_general_histories','1',NULL),(190,0,1722414914,'restore','restore_general_histories_locked','',NULL),(191,0,1722414914,'restore','restore_general_groups','1',NULL),(192,0,1722414914,'restore','restore_general_groups_locked','',NULL),(193,0,1722414914,'restore','restore_general_competencies','1',NULL),(194,0,1722414914,'restore','restore_general_competencies_locked','',NULL),(195,0,1722414914,'restore','restore_general_contentbankcontent','1',NULL),(196,0,1722414914,'restore','restore_general_contentbankcontent_locked','',NULL),(197,0,1722414914,'restore','restore_general_xapistate','1',NULL),(198,0,1722414914,'restore','restore_general_xapistate_locked','',NULL),(199,0,1722414914,'restore','restore_general_legacyfiles','1',NULL),(200,0,1722414914,'restore','restore_general_legacyfiles_locked','',NULL),(201,0,1722414914,'restore','restore_merge_overwrite_conf','0',NULL),(202,0,1722414914,'restore','restore_merge_overwrite_conf_locked','',NULL),(203,0,1722414914,'restore','restore_merge_course_fullname','1',NULL),(204,0,1722414914,'restore','restore_merge_course_fullname_locked','',NULL),(205,0,1722414914,'restore','restore_merge_course_shortname','1',NULL),(206,0,1722414914,'restore','restore_merge_course_shortname_locked','',NULL),(207,0,1722414914,'restore','restore_merge_course_startdate','1',NULL),(208,0,1722414914,'restore','restore_merge_course_startdate_locked','',NULL),(209,0,1722414914,'restore','restore_replace_overwrite_conf','0',NULL),(210,0,1722414914,'restore','restore_replace_overwrite_conf_locked','',NULL),(211,0,1722414914,'restore','restore_replace_course_fullname','1',NULL),(212,0,1722414914,'restore','restore_replace_course_fullname_locked','',NULL),(213,0,1722414914,'restore','restore_replace_course_shortname','1',NULL),(214,0,1722414914,'restore','restore_replace_course_shortname_locked','',NULL),(215,0,1722414914,'restore','restore_replace_course_startdate','1',NULL),(216,0,1722414914,'restore','restore_replace_course_startdate_locked','',NULL),(217,0,1722414914,'restore','restore_replace_keep_roles_and_enrolments','0',NULL),(218,0,1722414914,'restore','restore_replace_keep_roles_and_enrolments_locked','',NULL),(219,0,1722414914,'restore','restore_replace_keep_groups_and_groupings','0',NULL),(220,0,1722414914,'restore','restore_replace_keep_groups_and_groupings_locked','',NULL),(221,0,1722414914,NULL,'enableasyncbackup','0',NULL),(222,0,1722414914,'backup','backup_async_message_users','0',NULL),(223,0,1722414914,'backup','backup_async_message_subject','Moodle {operation} completed successfully',NULL),(224,0,1722414914,'backup','backup_async_message','Your {operation} (ID: {backupid}) has completed successfully. You can access it here: <a href=\"{link}\">{link}</a>.',NULL),(225,0,1722414914,NULL,'grade_profilereport','user',NULL),(226,0,1722414914,NULL,'grade_aggregationposition','1',NULL),(227,0,1722414914,NULL,'grade_includescalesinaggregation','1',NULL),(228,0,1722414914,NULL,'grade_hiddenasdate','0',NULL),(229,0,1722414914,NULL,'gradepublishing','0',NULL),(230,0,1722414914,NULL,'grade_export_exportfeedback','0',NULL),(231,0,1722414914,NULL,'grade_export_displaytype','1',NULL),(232,0,1722414914,NULL,'grade_export_decimalpoints','2',NULL),(233,0,1722414914,NULL,'grade_export_userprofilefields','firstname,lastname,idnumber,institution,department,email',NULL),(234,0,1722414914,NULL,'grade_export_customprofilefields','',NULL),(235,0,1722414914,NULL,'recovergradesdefault','0',NULL),(236,0,1722414914,NULL,'gradeexport','',NULL),(237,0,1722414914,NULL,'unlimitedgrades','0',NULL),(238,0,1722414914,NULL,'grade_report_showmin','1',NULL),(239,0,1722414914,NULL,'gradepointmax','100',NULL),(240,0,1722414914,NULL,'gradepointdefault','100',NULL),(241,0,1722414914,NULL,'grade_minmaxtouse','1',NULL),(242,0,1722414914,NULL,'grade_mygrades_report','overview',NULL),(243,0,1722414914,NULL,'gradereport_mygradeurl','',NULL),(244,0,1722414914,NULL,'grade_hideforcedsettings','1',NULL),(245,0,1722414914,NULL,'grade_aggregation','13',NULL),(246,0,1722414914,NULL,'grade_aggregation_flag','0',NULL),(247,0,1722414914,NULL,'grade_aggregations_visible','13',NULL),(248,0,1722414914,NULL,'grade_aggregateonlygraded','1',NULL),(249,0,1722414914,NULL,'grade_aggregateonlygraded_flag','2',NULL),(250,0,1722414914,NULL,'grade_aggregateoutcomes','0',NULL),(251,0,1722414914,NULL,'grade_aggregateoutcomes_flag','2',NULL),(252,0,1722414914,NULL,'grade_keephigh','0',NULL),(253,0,1722414914,NULL,'grade_keephigh_flag','3',NULL),(254,0,1722414914,NULL,'grade_droplow','0',NULL),(255,0,1722414914,NULL,'grade_droplow_flag','2',NULL),(256,0,1722414914,NULL,'grade_overridecat','1',NULL),(257,0,1722414914,NULL,'grade_displaytype','1',NULL),(258,0,1722414914,NULL,'grade_decimalpoints','2',NULL),(259,0,1722414914,NULL,'grade_item_advanced','iteminfo,idnumber,gradepass,plusfactor,multfactor,display,decimals,hiddenuntil,locktime',NULL),(260,0,1722414914,NULL,'grade_report_showonlyactiveenrol','1',NULL),(261,0,1722414914,NULL,'grade_report_quickgrading','1',NULL),(262,0,1722414914,NULL,'grade_report_meanselection','1',NULL),(263,0,1722414914,NULL,'grade_report_showaverages','1',NULL),(264,0,1722414914,NULL,'grade_report_showranges','0',NULL),(265,0,1722414914,NULL,'grade_report_showuserimage','1',NULL),(266,0,1722414914,NULL,'grade_report_shownumberofgrades','0',NULL),(267,0,1722414914,NULL,'grade_report_averagesdisplaytype','inherit',NULL),(268,0,1722414914,NULL,'grade_report_rangesdisplaytype','inherit',NULL),(269,0,1722414914,NULL,'grade_report_averagesdecimalpoints','inherit',NULL),(270,0,1722414914,NULL,'grade_report_rangesdecimalpoints','inherit',NULL),(271,0,1722414914,NULL,'grade_report_historyperpage','50',NULL),(272,0,1722414914,NULL,'grade_report_overview_showrank','0',NULL),(273,0,1722414914,NULL,'grade_report_overview_showtotalsifcontainhidden','0',NULL),(274,0,1722414914,NULL,'grade_report_user_showrank','0',NULL),(275,0,1722414914,NULL,'grade_report_user_showpercentage','1',NULL),(276,0,1722414914,NULL,'grade_report_user_showgrade','1',NULL),(277,0,1722414914,NULL,'grade_report_user_showfeedback','1',NULL),(278,0,1722414914,NULL,'grade_report_user_showrange','1',NULL),(279,0,1722414914,NULL,'grade_report_user_showweight','1',NULL),(280,0,1722414914,NULL,'grade_report_user_showaverage','0',NULL),(281,0,1722414914,NULL,'grade_report_user_showlettergrade','0',NULL),(282,0,1722414914,NULL,'grade_report_user_rangedecimals','0',NULL),(283,0,1722414914,NULL,'grade_report_user_showhiddenitems','1',NULL),(284,0,1722414914,NULL,'grade_report_user_showtotalsifcontainhidden','0',NULL),(285,0,1722414914,NULL,'grade_report_user_showcontributiontocoursetotal','1',NULL),(286,0,1722414914,'analytics','modeinstruction','',NULL),(287,0,1722414914,'analytics','percentonline','0',NULL),(288,0,1722414914,'analytics','typeinstitution','',NULL),(289,0,1722414914,'analytics','levelinstitution','',NULL),(290,0,1722414914,'analytics','predictionsprocessor','\\mlbackend_php\\processor',NULL),(291,0,1722414914,'analytics','defaulttimesplittingsevaluation','\\core\\analytics\\time_splitting\\quarters_accum,\\core\\analytics\\time_splitting\\quarters,\\core\\analytics\\time_splitting\\single_range',NULL),(292,0,1722414914,'analytics','modeloutputdir','',NULL),(293,0,1722414914,'analytics','onlycli','1',NULL),(294,0,1722414914,'analytics','modeltimelimit','1200',NULL),(295,0,1722414914,'analytics','calclifetime','35',NULL),(296,0,1722414914,NULL,'badges_defaultissuername','',NULL),(297,0,1722414914,NULL,'badges_defaultissuercontact','',NULL),(298,0,1722414914,NULL,'badges_badgesalt','badges1722414907',NULL),(299,0,1722414914,NULL,'badges_allowcoursebadges','1',NULL),(300,0,1722414914,NULL,'badges_allowexternalbackpack','1',NULL),(301,0,1722414914,'core_h5p','h5pcustomcss','',NULL),(302,0,1722414914,NULL,'rememberuserlicensepref','1',NULL),(303,0,1722414915,NULL,'timezone','Europe/London',NULL),(304,0,1722414915,NULL,'forcetimezone','99',NULL),(305,0,1722414915,NULL,'country','0',NULL),(306,0,1722414915,NULL,'defaultcity','',NULL),(307,0,1722414915,NULL,'geoip2file','/var/www/html/moodledata/geoip/GeoLite2-City.mmdb',NULL),(308,0,1722414915,NULL,'googlemapkey3','',NULL),(309,0,1722414915,NULL,'allcountrycodes','',NULL),(310,0,1722414915,NULL,'autolang','1',NULL),(311,0,1722414915,NULL,'lang','en',NULL),(312,0,1722414915,NULL,'autolangusercreation','1',NULL),(313,0,1722414915,NULL,'langmenu','1',NULL),(314,0,1722414915,NULL,'langlist','',NULL),(315,0,1722414915,NULL,'langcache','1',NULL),(316,0,1722414915,NULL,'langstringcache','1',NULL),(317,0,1722414915,NULL,'locale','',NULL),(318,0,1722414915,NULL,'latinexcelexport','0',NULL),(319,0,1722414915,NULL,'enablepdfexportfont','0',NULL),(320,0,1722414915,NULL,'messagingallusers','0',NULL),(321,0,1722414915,NULL,'messagingdefaultpressenter','1',NULL),(322,0,1722414915,NULL,'messagingdeletereadnotificationsdelay','604800',NULL),(323,0,1722414915,NULL,'messagingdeleteallnotificationsdelay','2620800',NULL),(324,0,1722414915,NULL,'messagingallowemailoverride','0',NULL),(325,0,1722414915,NULL,'requiremodintro','0',NULL),(326,0,1722414915,'antivirus','notifyemail','',NULL),(327,0,1722414915,'antivirus','notifylevel','2',NULL),(328,0,1722414915,'antivirus','threshold','1200',NULL),(329,0,1722414915,'antivirus','enablequarantine','0',NULL),(330,0,1722414915,'antivirus','quarantinetime','2419200',NULL),(331,0,1722414915,NULL,'registerauth','',NULL),(332,0,1722414915,NULL,'authloginviaemail','0',NULL),(333,0,1722414915,NULL,'allowaccountssameemail','0',NULL),(334,0,1722414915,NULL,'authpreventaccountcreation','0',NULL),(335,0,1722414915,NULL,'loginpageautofocus','0',NULL),(336,0,1722414915,NULL,'guestloginbutton','1',NULL),(337,0,1722414915,NULL,'limitconcurrentlogins','0',NULL),(338,0,1722414915,NULL,'alternateloginurl','',NULL),(339,0,1722414915,NULL,'forgottenpasswordurl','',NULL),(340,0,1722414915,NULL,'auth_instructions','',NULL),(341,0,1722414915,NULL,'allowemailaddresses','',NULL),(342,0,1722414915,NULL,'denyemailaddresses','',NULL),(343,0,1722414915,NULL,'verifychangedemail','1',NULL),(344,0,1722414915,NULL,'enableloginrecaptcha','0',NULL),(345,0,1722414915,NULL,'recaptchapublickey','',NULL),(346,0,1722414915,NULL,'recaptchaprivatekey','',NULL),(347,0,1722414915,'cachestore_apcu','testperformance','0',NULL),(348,0,1722414915,'cachestore_redis','test_server','',NULL),(349,0,1722414915,'cachestore_redis','test_encryption','0',NULL),(350,0,1722414915,'cachestore_redis','test_cafile','',NULL),(351,0,1722414915,'cachestore_redis','test_password','',NULL),(352,0,1722414915,'cachestore_redis','test_ttl','0',NULL),(353,0,1722414915,NULL,'filteruploadedfiles','0',NULL),(354,0,1722414915,NULL,'filtermatchoneperpage','0',NULL),(355,0,1722414915,NULL,'filtermatchonepertext','0',NULL),(356,0,1722414915,NULL,'filternavigationwithsystemcontext','0',NULL),(357,0,1722414915,NULL,'media_default_width','640',NULL),(358,0,1722414915,NULL,'media_default_height','360',NULL),(359,0,1722414915,NULL,'portfolio_moderate_filesize_threshold','1048576',NULL),(360,0,1722414915,NULL,'portfolio_high_filesize_threshold','5242880',NULL),(361,0,1722414915,NULL,'portfolio_moderate_db_threshold','20',NULL),(362,0,1722414915,NULL,'portfolio_high_db_threshold','50',NULL),(363,0,1722414915,'question_preview','behaviour','deferredfeedback',NULL),(364,0,1722414915,'question_preview','correctness','1',NULL),(365,0,1722414915,'question_preview','marks','2',NULL),(366,0,1722414915,'question_preview','markdp','2',NULL),(367,0,1722414915,'question_preview','feedback','1',NULL),(368,0,1722414915,'question_preview','generalfeedback','1',NULL),(369,0,1722414915,'question_preview','rightanswer','1',NULL),(370,0,1722414915,'question_preview','history','0',NULL),(371,0,1722414915,NULL,'repositorycacheexpire','120',NULL),(372,0,1722414915,NULL,'repositorygetfiletimeout','30',NULL),(373,0,1722414915,NULL,'repositorysyncfiletimeout','1',NULL),(374,0,1722414915,NULL,'repositorysyncimagetimeout','3',NULL),(375,0,1722414915,NULL,'repositoryallowexternallinks','1',NULL),(376,0,1722414915,NULL,'legacyfilesinnewcourses','0',NULL),(377,0,1722414915,NULL,'legacyfilesaddallowed','1',NULL),(378,0,1722414915,NULL,'searchengine','simpledb',NULL),(379,0,1722414915,NULL,'searchindexwhendisabled','0',NULL),(380,0,1722414915,NULL,'searchindextime','600',NULL),(381,0,1722414915,NULL,'searchallavailablecourses','0',NULL),(382,0,1722414915,NULL,'searchincludeallcourses','0',NULL),(383,0,1722414915,NULL,'searchenablecategories','0',NULL),(384,0,1722414915,NULL,'searchdefaultcategory','core-all',NULL),(385,0,1722414915,NULL,'searchhideallcategory','0',NULL),(386,0,1722414915,NULL,'searchmaxtopresults','3',NULL),(387,0,1722414915,NULL,'searchteacherroles','',NULL),(388,0,1722414915,NULL,'searchenginequeryonly','',NULL),(389,0,1722414915,NULL,'searchbannerenable','0',NULL),(390,0,1722414915,NULL,'searchbanner','',NULL),(391,0,1722414915,NULL,'allowbeforeblock','0',NULL),(392,0,1722414915,NULL,'allowedip','',NULL),(393,0,1722414915,NULL,'blockedip','',NULL),(394,0,1722414915,NULL,'protectusernames','1',NULL),(395,0,1722414915,NULL,'forcelogin','0',NULL),(396,0,1722414915,NULL,'forceloginforprofiles','1',NULL),(397,0,1722414915,NULL,'forceloginforprofileimage','0',NULL),(398,0,1722414915,NULL,'opentowebcrawlers','0',NULL),(399,0,1722414915,NULL,'allowindexing','0',NULL),(400,0,1722414915,NULL,'maxbytes','0',NULL),(401,0,1722414915,NULL,'userquota','104857600',NULL),(402,0,1722414915,NULL,'allowobjectembed','0',NULL),(403,0,1722414915,NULL,'enabletrusttext','0',NULL),(404,0,1722414915,NULL,'maxeditingtime','1800',NULL),(405,0,1722414915,NULL,'extendedusernamechars','0',NULL),(406,0,1722414915,NULL,'keeptagnamecase','1',NULL),(407,0,1722414915,NULL,'profilesforenrolledusersonly','1',NULL),(408,0,1722414915,NULL,'cronclionly','1',NULL),(409,0,1722414915,NULL,'cronremotepassword','',NULL),(410,0,1722414915,'tool_task','enablerunnow','1',NULL),(411,0,1722414915,NULL,'lockoutthreshold','0',NULL),(412,0,1722414915,NULL,'lockoutwindow','1800',NULL),(413,0,1722414915,NULL,'lockoutduration','1800',NULL),(414,0,1722414915,NULL,'passwordpolicy','1',NULL),(415,0,1722414915,NULL,'minpasswordlength','8',NULL),(416,0,1722414915,NULL,'minpassworddigits','1',NULL),(417,0,1722414915,NULL,'minpasswordlower','1',NULL),(418,0,1722414915,NULL,'minpasswordupper','1',NULL),(419,0,1722414915,NULL,'minpasswordnonalphanum','1',NULL),(420,0,1722414915,NULL,'maxconsecutiveidentchars','0',NULL),(421,0,1722414915,NULL,'passwordpolicycheckonlogin','0',NULL),(422,0,1722414915,NULL,'passwordreuselimit','0',NULL),(423,0,1722414915,NULL,'pwresettime','1800',NULL),(424,0,1722414915,NULL,'passwordchangelogout','0',NULL),(425,0,1722414915,NULL,'passwordchangetokendeletion','0',NULL),(426,0,1722414915,NULL,'tokenduration','7257600',NULL),(427,0,1722414915,NULL,'groupenrolmentkeypolicy','1',NULL),(428,0,1722414916,NULL,'disableuserimages','0',NULL),(429,0,1722414916,NULL,'emailchangeconfirmation','1',NULL),(430,0,1722414916,NULL,'rememberusername','2',NULL),(431,0,1722414916,NULL,'strictformsrequired','0',NULL),(432,0,1722414916,'adminpresets','sensiblesettings','recaptchapublickey@@none, recaptchaprivatekey@@none, googlemapkey3@@none, secretphrase@@url, cronremotepassword@@none, smtpuser@@none, smtppass@@none, proxypassword@@none, quizpassword@@quiz, allowedip@@none, blockedip@@none, dbpass@@logstore_database, messageinbound_hostpass@@none, bind_pw@@auth_cas, pass@@auth_db, bind_pw@@auth_ldap, dbpass@@enrol_database, bind_pw@@enrol_ldap, server_password@@search_solr, ssl_keypassword@@search_solr, alternateserver_password@@search_solr, alternatessl_keypassword@@search_solr, test_password@@cachestore_redis, password@@mlbackend_python, badges_badgesalt@@none, calendar_exportsalt@@none',NULL),(433,0,1722414916,NULL,'cookiesecure','1',NULL),(434,0,1722414916,NULL,'allowframembedding','0',NULL),(435,0,1722414916,NULL,'curlsecurityblockedhosts','127.0.0.0/8\n192.168.0.0/16\n10.0.0.0/8\n172.16.0.0/12\n0.0.0.0\nlocalhost\n169.254.169.254\n0000::1',NULL),(436,0,1722414916,NULL,'curlsecurityallowedport','443\n80',NULL),(437,0,1722414916,NULL,'referrerpolicy','default',NULL),(438,0,1722414916,NULL,'displayloginfailures','0',NULL),(439,0,1722414916,NULL,'notifyloginfailures','',NULL),(440,0,1722414916,NULL,'notifyloginthreshold','10',NULL),(441,0,1722414916,NULL,'themelist','',NULL),(442,0,1722414916,NULL,'themedesignermode','0',NULL),(443,0,1722414916,NULL,'allowuserthemes','0',NULL),(444,0,1722414916,NULL,'allowcoursethemes','0',NULL),(445,0,1722414916,NULL,'allowcategorythemes','0',NULL),(446,0,1722414916,NULL,'allowcohortthemes','0',NULL),(447,0,1722414916,NULL,'allowthemechangeonurl','0',NULL),(448,0,1722414916,NULL,'allowuserblockhiding','1',NULL),(449,0,1722414916,NULL,'langmenuinsecurelayout','0',NULL),(450,0,1722414916,NULL,'logininfoinsecurelayout','0',NULL),(451,0,1722414916,NULL,'custommenuitems','',NULL),(452,0,1722414916,NULL,'customusermenuitems','profile,moodle|/user/profile.php\ngrades,grades|/grade/report/mygrades.php\ncalendar,core_calendar|/calendar/view.php?view=month\nprivatefiles,moodle|/user/files.php\nreports,core_reportbuilder|/reportbuilder/index.php',NULL),(453,0,1722414916,'theme_boost','unaddableblocks','navigation,settings,course_list,section_links',NULL),(454,0,1722414916,'theme_boost','preset','default.scss',NULL),(455,0,1722414916,'theme_boost','presetfiles','',NULL),(456,0,1722414916,'theme_boost','backgroundimage','',NULL),(457,0,1722414916,'theme_boost','loginbackgroundimage','',NULL),(458,0,1722414916,'theme_boost','brandcolor','',NULL),(459,0,1722414916,'theme_boost','scsspre','',NULL),(460,0,1722414916,'theme_boost','scss','',NULL),(461,0,1722414916,'theme_classic','navbardark','0',NULL),(462,0,1722414916,'theme_classic','unaddableblocks','',NULL),(463,0,1722414916,'theme_classic','preset','default.scss',NULL),(464,0,1722414916,'theme_classic','presetfiles','',NULL),(465,0,1722414916,'theme_classic','backgroundimage','',NULL),(466,0,1722414916,'theme_classic','loginbackgroundimage','',NULL),(467,0,1722414916,'theme_classic','brandcolor','',NULL),(468,0,1722414916,'theme_classic','scsspre','',NULL),(469,0,1722414916,'theme_classic','scss','',NULL),(470,0,1722414916,'core_admin','logo','',NULL),(471,0,1722414916,'core_admin','logocompact','',NULL),(472,0,1722414916,'core_admin','favicon','',NULL),(473,0,1722414916,'core_admin','coursecolor1','#81ecec',NULL),(474,0,1722414916,'core_admin','coursecolor2','#74b9ff',NULL),(475,0,1722414916,'core_admin','coursecolor3','#a29bfe',NULL),(476,0,1722414916,'core_admin','coursecolor4','#dfe6e9',NULL),(477,0,1722414916,'core_admin','coursecolor5','#00b894',NULL),(478,0,1722414916,'core_admin','coursecolor6','#0984e3',NULL),(479,0,1722414916,'core_admin','coursecolor7','#b2bec3',NULL),(480,0,1722414916,'core_admin','coursecolor8','#fdcb6e',NULL),(481,0,1722414916,'core_admin','coursecolor9','#fd79a8',NULL),(482,0,1722414916,'core_admin','coursecolor10','#6c5ce7',NULL),(483,0,1722414916,NULL,'calendartype','gregorian',NULL),(484,0,1722414916,NULL,'calendar_adminseesall','0',NULL),(485,0,1722414916,NULL,'calendar_site_timeformat','0',NULL),(486,0,1722414916,NULL,'calendar_startwday','1',NULL),(487,0,1722414916,NULL,'calendar_weekend','65',NULL),(488,0,1722414916,NULL,'calendar_lookahead','21',NULL),(489,0,1722414916,NULL,'calendar_maxevents','10',NULL),(490,0,1722414916,NULL,'enablecalendarexport','1',NULL),(491,0,1722414916,NULL,'calendar_customexport','1',NULL),(492,0,1722414916,NULL,'calendar_exportlookahead','365',NULL),(493,0,1722414916,NULL,'calendar_exportlookback','5',NULL),(494,0,1722414916,NULL,'calendar_exportsalt','G2UtDNRZ5dswO0WMpec24V3Jfu3enR9SvaVcSfoXvpXJi0RrQVpHYBYkT8gy',NULL),(495,0,1722414916,NULL,'calendar_showicalsource','1',NULL),(496,0,1722414916,NULL,'useblogassociations','1',NULL),(497,0,1722414916,NULL,'bloglevel','4',NULL),(498,0,1722414916,NULL,'useexternalblogs','1',NULL),(499,0,1722414916,NULL,'externalblogcrontime','86400',NULL),(500,0,1722414916,NULL,'maxexternalblogsperuser','1',NULL),(501,0,1722414916,NULL,'blogusecomments','1',NULL),(502,0,1722414916,NULL,'blogshowcommentscount','1',NULL),(503,0,1722414916,NULL,'enabledashboard','1',NULL),(504,0,1722414916,NULL,'defaulthomepage','1',NULL),(505,0,1722414916,NULL,'allowguestmymoodle','1',NULL),(506,0,1722414916,NULL,'navshowfullcoursenames','0',NULL),(507,0,1722414916,NULL,'navshowcategories','1',NULL),(508,0,1722414916,NULL,'navshowmycoursecategories','0',NULL),(509,0,1722414916,NULL,'navshowallcourses','0',NULL),(510,0,1722414916,NULL,'navsortmycoursessort','sortorder',NULL),(511,0,1722414916,NULL,'navsortmycourseshiddenlast','1',NULL),(512,0,1722414916,NULL,'navcourselimit','10',NULL),(513,0,1722414916,NULL,'usesitenameforsitepages','0',NULL),(514,0,1722414916,NULL,'linkadmincategories','1',NULL),(515,0,1722414916,NULL,'linkcoursesections','1',NULL),(516,0,1722414916,NULL,'navshowfrontpagemods','1',NULL),(517,0,1722414916,NULL,'navadduserpostslinks','1',NULL),(518,0,1722414916,NULL,'sitenameintitle','shortname',NULL),(519,0,1722414916,NULL,'formatstringstriptags','1',NULL),(520,0,1722414916,NULL,'emoticons','[{\"text\":\":-)\",\"imagename\":\"s\\/smiley\",\"imagecomponent\":\"core\",\"altidentifier\":\"smiley\",\"altcomponent\":\"core_pix\"},{\"text\":\":)\",\"imagename\":\"s\\/smiley\",\"imagecomponent\":\"core\",\"altidentifier\":\"smiley\",\"altcomponent\":\"core_pix\"},{\"text\":\":-D\",\"imagename\":\"s\\/biggrin\",\"imagecomponent\":\"core\",\"altidentifier\":\"biggrin\",\"altcomponent\":\"core_pix\"},{\"text\":\";-)\",\"imagename\":\"s\\/wink\",\"imagecomponent\":\"core\",\"altidentifier\":\"wink\",\"altcomponent\":\"core_pix\"},{\"text\":\":-\\/\",\"imagename\":\"s\\/mixed\",\"imagecomponent\":\"core\",\"altidentifier\":\"mixed\",\"altcomponent\":\"core_pix\"},{\"text\":\"V-.\",\"imagename\":\"s\\/thoughtful\",\"imagecomponent\":\"core\",\"altidentifier\":\"thoughtful\",\"altcomponent\":\"core_pix\"},{\"text\":\":-P\",\"imagename\":\"s\\/tongueout\",\"imagecomponent\":\"core\",\"altidentifier\":\"tongueout\",\"altcomponent\":\"core_pix\"},{\"text\":\":-p\",\"imagename\":\"s\\/tongueout\",\"imagecomponent\":\"core\",\"altidentifier\":\"tongueout\",\"altcomponent\":\"core_pix\"},{\"text\":\"B-)\",\"imagename\":\"s\\/cool\",\"imagecomponent\":\"core\",\"altidentifier\":\"cool\",\"altcomponent\":\"core_pix\"},{\"text\":\"^-)\",\"imagename\":\"s\\/approve\",\"imagecomponent\":\"core\",\"altidentifier\":\"approve\",\"altcomponent\":\"core_pix\"},{\"text\":\"8-)\",\"imagename\":\"s\\/wideeyes\",\"imagecomponent\":\"core\",\"altidentifier\":\"wideeyes\",\"altcomponent\":\"core_pix\"},{\"text\":\":o)\",\"imagename\":\"s\\/clown\",\"imagecomponent\":\"core\",\"altidentifier\":\"clown\",\"altcomponent\":\"core_pix\"},{\"text\":\":-(\",\"imagename\":\"s\\/sad\",\"imagecomponent\":\"core\",\"altidentifier\":\"sad\",\"altcomponent\":\"core_pix\"},{\"text\":\":(\",\"imagename\":\"s\\/sad\",\"imagecomponent\":\"core\",\"altidentifier\":\"sad\",\"altcomponent\":\"core_pix\"},{\"text\":\"8-.\",\"imagename\":\"s\\/shy\",\"imagecomponent\":\"core\",\"altidentifier\":\"shy\",\"altcomponent\":\"core_pix\"},{\"text\":\":-I\",\"imagename\":\"s\\/blush\",\"imagecomponent\":\"core\",\"altidentifier\":\"blush\",\"altcomponent\":\"core_pix\"},{\"text\":\":-X\",\"imagename\":\"s\\/kiss\",\"imagecomponent\":\"core\",\"altidentifier\":\"kiss\",\"altcomponent\":\"core_pix\"},{\"text\":\"8-o\",\"imagename\":\"s\\/surprise\",\"imagecomponent\":\"core\",\"altidentifier\":\"surprise\",\"altcomponent\":\"core_pix\"},{\"text\":\"P-|\",\"imagename\":\"s\\/blackeye\",\"imagecomponent\":\"core\",\"altidentifier\":\"blackeye\",\"altcomponent\":\"core_pix\"},{\"text\":\"8-[\",\"imagename\":\"s\\/angry\",\"imagecomponent\":\"core\",\"altidentifier\":\"angry\",\"altcomponent\":\"core_pix\"},{\"text\":\"(grr)\",\"imagename\":\"s\\/angry\",\"imagecomponent\":\"core\",\"altidentifier\":\"angry\",\"altcomponent\":\"core_pix\"},{\"text\":\"xx-P\",\"imagename\":\"s\\/dead\",\"imagecomponent\":\"core\",\"altidentifier\":\"dead\",\"altcomponent\":\"core_pix\"},{\"text\":\"|-.\",\"imagename\":\"s\\/sleepy\",\"imagecomponent\":\"core\",\"altidentifier\":\"sleepy\",\"altcomponent\":\"core_pix\"},{\"text\":\"}-]\",\"imagename\":\"s\\/evil\",\"imagecomponent\":\"core\",\"altidentifier\":\"evil\",\"altcomponent\":\"core_pix\"},{\"text\":\"(h)\",\"imagename\":\"s\\/heart\",\"imagecomponent\":\"core\",\"altidentifier\":\"heart\",\"altcomponent\":\"core_pix\"},{\"text\":\"(heart)\",\"imagename\":\"s\\/heart\",\"imagecomponent\":\"core\",\"altidentifier\":\"heart\",\"altcomponent\":\"core_pix\"},{\"text\":\"(y)\",\"imagename\":\"s\\/yes\",\"imagecomponent\":\"core\",\"altidentifier\":\"yes\",\"altcomponent\":\"core\"},{\"text\":\"(n)\",\"imagename\":\"s\\/no\",\"imagecomponent\":\"core\",\"altidentifier\":\"no\",\"altcomponent\":\"core\"},{\"text\":\"(martin)\",\"imagename\":\"s\\/martin\",\"imagecomponent\":\"core\",\"altidentifier\":\"martin\",\"altcomponent\":\"core_pix\"},{\"text\":\"( )\",\"imagename\":\"s\\/egg\",\"imagecomponent\":\"core\",\"altidentifier\":\"egg\",\"altcomponent\":\"core_pix\"}]',NULL),(521,0,1722414916,NULL,'docroot','https://docs.moodle.org',NULL),(522,0,1722414916,NULL,'doclang','',NULL),(523,0,1722414916,NULL,'doctonewwindow','0',NULL),(524,0,1722414916,NULL,'coursecreationguide','https://moodle.academy/coursequickstart',NULL),(525,0,1722414916,NULL,'coursecontactduplicates','0',NULL),(526,0,1722414916,NULL,'courselistshortnames','0',NULL),(527,0,1722414916,NULL,'coursesperpage','20',NULL),(528,0,1722414916,NULL,'courseswithsummarieslimit','10',NULL),(529,0,1722414916,NULL,'courseoverviewfileslimit','1',NULL),(530,0,1722414916,NULL,'courseoverviewfilesext','web_image',NULL),(531,0,1722414916,NULL,'coursegraceperiodbefore','0',NULL),(532,0,1722414916,NULL,'coursegraceperiodafter','0',NULL),(533,0,1722414916,NULL,'yuicomboloading','1',NULL),(534,0,1722414916,NULL,'cachejs','1',NULL),(535,0,1722414916,NULL,'additionalhtmlhead','',NULL),(536,0,1722414916,NULL,'additionalhtmltopofbody','',NULL),(537,0,1722414916,NULL,'additionalhtmlfooter','',NULL),(538,0,1722414916,NULL,'cachetemplates','1',NULL),(539,0,1722414916,NULL,'pathtophp','',NULL),(540,0,1722414916,NULL,'pathtodu','',NULL),(541,0,1722414916,NULL,'aspellpath','',NULL),(542,0,1722414916,NULL,'pathtodot','',NULL),(543,0,1722414916,NULL,'pathtogs','/usr/bin/gs',NULL),(544,0,1722414916,NULL,'pathtopdftoppm','',NULL),(545,0,1722414916,NULL,'pathtopython','',NULL),(546,0,1722414916,NULL,'supportname','Admin User',NULL),(547,0,1722414916,NULL,'supportpage','',NULL),(548,0,1722414916,NULL,'supportavailability','1',NULL),(549,0,1722414916,NULL,'servicespage','',NULL),(550,0,1722414916,NULL,'dbsessions','0',NULL),(551,0,1722414916,NULL,'sessiontimeoutwarning','1200',NULL),(552,0,1722414916,NULL,'sessioncookie','',NULL),(553,0,1722414916,NULL,'sessioncookiepath','',NULL),(554,0,1722414916,NULL,'sessioncookiedomain','',NULL),(555,0,1722414916,NULL,'statsfirstrun','none',NULL),(556,0,1722414916,NULL,'statsmaxruntime','0',NULL),(557,0,1722414916,NULL,'statsruntimedays','31',NULL),(558,0,1722414916,NULL,'statsuserthreshold','0',NULL),(559,0,1722414916,NULL,'slasharguments','1',NULL),(560,0,1722414916,NULL,'getremoteaddrconf','3',NULL),(561,0,1722414916,NULL,'reverseproxyignore','',NULL),(562,0,1722414916,NULL,'proxyhost','',NULL),(563,0,1722414916,NULL,'proxyport','0',NULL),(564,0,1722414916,NULL,'proxytype','HTTP',NULL),(565,0,1722414916,NULL,'proxyuser','',NULL),(566,0,1722414916,NULL,'proxypassword','',NULL),(567,0,1722414916,NULL,'proxybypass','localhost, 127.0.0.1',NULL),(568,0,1722414916,NULL,'proxylogunsafe','0',NULL),(569,0,1722414916,NULL,'proxyfixunsafe','0',NULL),(570,0,1722414916,NULL,'maintenance_enabled','0',NULL),(571,0,1722414916,NULL,'maintenance_message','',NULL),(572,0,1722414916,NULL,'deleteunconfirmed','168',NULL),(573,0,1722414916,NULL,'deleteincompleteusers','0',NULL),(574,0,1722414916,NULL,'disablegradehistory','0',NULL),(575,0,1722414916,NULL,'gradehistorylifetime','0',NULL),(576,0,1722414916,NULL,'tempdatafoldercleanup','168',NULL),(577,0,1722414916,NULL,'xapicleanupperiod','4838400',NULL),(578,0,1722414916,NULL,'filescleanupperiod','86400',NULL),(579,0,1722414916,NULL,'extramemorylimit','512M',NULL),(580,0,1722414916,NULL,'maxtimelimit','0',NULL),(581,0,1722414916,NULL,'curlcache','120',NULL),(582,0,1722414916,NULL,'curltimeoutkbitrate','56',NULL),(583,0,1722414916,NULL,'cron_enabled','1',NULL),(584,0,1722414916,NULL,'cron_keepalive','180',NULL),(585,0,1722414916,NULL,'task_scheduled_concurrency_limit','3',NULL),(586,0,1722414916,NULL,'task_scheduled_max_runtime','1800',NULL),(587,0,1722414916,NULL,'task_adhoc_concurrency_limit','3',NULL),(588,0,1722414916,NULL,'task_adhoc_max_runtime','1800',NULL),(589,0,1722414916,NULL,'task_logmode','1',NULL),(590,0,1722414916,NULL,'task_logtostdout','1',NULL),(591,0,1722414916,NULL,'task_logretention','2419200',NULL),(592,0,1722414916,NULL,'task_logretainruns','20',NULL),(593,0,1722414916,NULL,'smtphosts','',NULL),(594,0,1722414916,NULL,'smtpsecure','',NULL),(595,0,1722414916,NULL,'smtpauthtype','LOGIN',NULL),(596,0,1722414916,NULL,'smtpuser','',NULL),(597,0,1722414916,NULL,'smtppass','',NULL),(598,0,1722414916,NULL,'smtpmaxbulk','1',NULL),(599,0,1722414916,NULL,'noreplyaddress','noreply@www.moodle.loc',NULL),(600,0,1722414916,NULL,'allowedemaildomains','',NULL),(601,0,1722414916,NULL,'divertallemailsto','',NULL),(602,0,1722414916,NULL,'divertallemailsexcept','',NULL),(603,0,1722414916,NULL,'emaildkimselector','',NULL),(604,0,1722414916,NULL,'sitemailcharset','0',NULL),(605,0,1722414916,NULL,'allowusermailcharset','0',NULL),(606,0,1722414916,NULL,'allowattachments','1',NULL),(607,0,1722414916,NULL,'mailnewline','LF',NULL),(608,0,1722414916,NULL,'emailfromvia','1',NULL),(609,0,1722414916,NULL,'emailsubjectprefix','',NULL),(610,0,1722414916,NULL,'emailheaders','',NULL),(611,0,1722414916,NULL,'updateautocheck','1',NULL),(612,0,1722414916,NULL,'updateminmaturity','200',NULL),(613,0,1722414916,NULL,'updatenotifybuilds','0',NULL),(614,0,1722414916,NULL,'enablewsdocumentation','0',NULL),(615,0,1722414916,NULL,'customreportslimit','0',NULL),(616,0,1722414916,NULL,'customreportsliveediting','1',NULL),(617,0,1722414916,NULL,'dndallowtextandlinks','0',NULL),(618,0,1722414916,NULL,'pathtosassc','',NULL),(619,0,1722414916,NULL,'contextlocking','0',NULL),(620,0,1722414916,NULL,'contextlockappliestoadmin','1',NULL),(621,0,1722414916,NULL,'forceclean','0',NULL),(622,0,1722414916,NULL,'enablecourserelativedates','0',NULL),(623,0,1722414916,NULL,'enablesharingtomoodlenet','0',NULL),(624,0,1722414916,NULL,'enablecommunicationsubsystem','0',NULL),(625,0,1722414916,NULL,'debug','0',NULL),(626,0,1722414916,NULL,'debugdisplay','0',NULL),(627,0,1722414916,NULL,'perfdebug','7',NULL),(628,0,1722414916,NULL,'debugstringids','0',NULL),(629,0,1722414916,NULL,'debugsqltrace','0',NULL),(630,0,1722414916,NULL,'debugvalidators','0',NULL),(631,0,1722414916,NULL,'debugpageinfo','0',NULL),(632,0,1722414916,NULL,'debugtemplateinfo','0',NULL),(633,0,1722414916,NULL,'profilingenabled','0',NULL),(634,0,1722414916,NULL,'profilingincluded','',NULL),(635,0,1722414917,NULL,'profilingexcluded','',NULL),(636,0,1722414917,NULL,'profilingautofrec','0',NULL),(637,0,1722414917,NULL,'profilingallowme','0',NULL),(638,0,1722414917,NULL,'profilingallowall','0',NULL),(639,0,1722414917,NULL,'profilingslow','0',NULL),(640,0,1722414917,NULL,'profilinglifetime','1440',NULL),(641,0,1722414917,NULL,'profilingimportprefix','(I)',NULL),(642,0,1722414917,'core_competency','pushcourseratingstouserplans','1',NULL),(643,0,1722414929,'activitynames','filter_active','1',''),(644,0,1722414929,'core_filter','order','activitynames','activitynames'),(645,0,1722414929,'displayh5p','filter_active','1',''),(646,0,1722414929,'core_filter','order','displayh5p, activitynames','activitynames, displayh5p'),(647,0,1722414929,'emoticon','filter_active','1',''),(648,0,1722414929,'mathjaxloader','filter_active','1',''),(649,0,1722414929,'core_filter','order','displayh5p, activitynames, mathjaxloader, emoticon','displayh5p, activitynames, emoticon, mathjaxloader'),(650,0,1722414929,'mediaplugin','filter_active','1',''),(651,0,1722414929,'urltolink','filter_active','1',''),(652,0,1722414929,'core_filter','order','displayh5p, activitynames, mathjaxloader, emoticon, urltolink, mediaplugin','displayh5p, activitynames, mathjaxloader, emoticon, mediaplugin, urltolink'),(653,0,1722414941,'tiny_noautolink','disabled','1','0'),(654,2,1722414945,NULL,'enableaccessibilitytools','1',NULL),(655,2,1722414945,'tool_moodlenet','enablemoodlenet','1',NULL),(656,2,1722414945,NULL,'notloggedinroleid','6',NULL),(657,2,1722414945,NULL,'guestroleid','6',NULL),(658,2,1722414945,NULL,'defaultuserroleid','7',NULL),(659,2,1722414945,NULL,'creatornewroleid','3',NULL),(660,2,1722414945,NULL,'restorernewroleid','3',NULL),(661,2,1722414945,'tool_dataprivacy','contactdataprotectionofficer','0',NULL),(662,2,1722414945,'tool_dataprivacy','automaticdataexportapproval','0',NULL),(663,2,1722414945,'tool_dataprivacy','automaticdatadeletionapproval','0',NULL),(664,2,1722414945,'tool_dataprivacy','automaticdeletionrequests','1',NULL),(665,2,1722414945,'tool_dataprivacy','privacyrequestexpiry','604800',NULL),(666,2,1722414945,'tool_dataprivacy','requireallenddatesforuserdeletion','1',NULL),(667,2,1722414945,'tool_dataprivacy','showdataretentionsummary','1',NULL),(668,2,1722414945,'tool_dataprivacy','allowfiltering','0',NULL),(669,2,1722414945,'tool_log','exportlog','1',NULL),(670,2,1722414945,NULL,'sitepolicyhandler','',NULL),(671,2,1722414945,NULL,'gradebookroles','5',NULL),(672,2,1722414945,NULL,'h5plibraryhandler','h5plib_v126',NULL),(673,2,1722414946,NULL,'airnotifierurl','https://messages.moodle.net',NULL),(674,2,1722414946,NULL,'airnotifierport','443',NULL),(675,2,1722414946,NULL,'airnotifiermobileappname','com.moodle.moodlemobile',NULL),(676,2,1722414946,NULL,'airnotifierappname','commoodlemoodlemobile',NULL),(677,2,1722414946,NULL,'airnotifieraccesskey','',NULL),(678,2,1722414946,'message_airnotifier','encryptnotifications','0',NULL),(679,2,1722414946,'message_airnotifier','encryptprocessing','0',NULL),(680,2,1722414946,'assign','feedback_plugin_for_gradebook','assignfeedback_comments',NULL),(681,2,1722414946,'assign','showrecentsubmissions','0',NULL),(682,2,1722414946,'assign','submissionreceipts','1',NULL),(683,2,1722414946,'assign','submissionstatement','This submission is my own work, except where I have acknowledged the use of the works of other people.',NULL),(684,2,1722414946,'assign','submissionstatementteamsubmission','This submission is the work of my group, except where we have acknowledged the use of the works of other people.',NULL),(685,2,1722414946,'assign','submissionstatementteamsubmissionallsubmit','This submission is my own work as a group member, except where I have acknowledged the use of the works of other people.',NULL),(686,2,1722414946,'assign','maxperpage','-1',NULL),(687,2,1722414946,'assign','alwaysshowdescription','1',NULL),(688,2,1722414946,'assign','alwaysshowdescription_adv','',NULL),(689,2,1722414946,'assign','alwaysshowdescription_locked','',NULL),(690,2,1722414946,'assign','allowsubmissionsfromdate','0',NULL),(691,2,1722414946,'assign','allowsubmissionsfromdate_enabled','1',NULL),(692,2,1722414946,'assign','allowsubmissionsfromdate_adv','',NULL),(693,2,1722414946,'assign','duedate','604800',NULL),(694,2,1722414946,'assign','duedate_enabled','1',NULL),(695,2,1722414946,'assign','duedate_adv','',NULL),(696,2,1722414946,'assign','cutoffdate','1209600',NULL),(697,2,1722414946,'assign','cutoffdate_enabled','',NULL),(698,2,1722414946,'assign','cutoffdate_adv','',NULL),(699,2,1722414946,'assign','enabletimelimit','0',NULL),(700,2,1722414946,'assign','gradingduedate','1209600',NULL),(701,2,1722414946,'assign','gradingduedate_enabled','1',NULL),(702,2,1722414946,'assign','gradingduedate_adv','',NULL),(703,2,1722414946,'assign','submissiondrafts','0',NULL),(704,2,1722414946,'assign','submissiondrafts_adv','',NULL),(705,2,1722414946,'assign','submissiondrafts_locked','',NULL),(706,2,1722414946,'assign','requiresubmissionstatement','0',NULL),(707,2,1722414946,'assign','requiresubmissionstatement_adv','',NULL),(708,2,1722414946,'assign','requiresubmissionstatement_locked','',NULL),(709,2,1722414946,'assign','attemptreopenmethod','none',NULL),(710,2,1722414946,'assign','attemptreopenmethod_adv','',NULL),(711,2,1722414946,'assign','attemptreopenmethod_locked','',NULL),(712,2,1722414946,'assign','maxattempts','-1',NULL),(713,2,1722414946,'assign','maxattempts_adv','',NULL),(714,2,1722414946,'assign','maxattempts_locked','',NULL),(715,2,1722414946,'assign','teamsubmission','0',NULL),(716,2,1722414946,'assign','teamsubmission_adv','',NULL),(717,2,1722414946,'assign','teamsubmission_locked','',NULL),(718,2,1722414946,'assign','preventsubmissionnotingroup','0',NULL),(719,2,1722414946,'assign','preventsubmissionnotingroup_adv','',NULL),(720,2,1722414946,'assign','preventsubmissionnotingroup_locked','',NULL),(721,2,1722414946,'assign','requireallteammemberssubmit','0',NULL),(722,2,1722414946,'assign','requireallteammemberssubmit_adv','',NULL),(723,2,1722414946,'assign','requireallteammemberssubmit_locked','',NULL),(724,2,1722414946,'assign','teamsubmissiongroupingid','',NULL),(725,2,1722414946,'assign','teamsubmissiongroupingid_adv','',NULL),(726,2,1722414946,'assign','sendnotifications','0',NULL),(727,2,1722414946,'assign','sendnotifications_adv','',NULL),(728,2,1722414946,'assign','sendnotifications_locked','',NULL),(729,2,1722414946,'assign','sendlatenotifications','0',NULL),(730,2,1722414946,'assign','sendlatenotifications_adv','',NULL),(731,2,1722414946,'assign','sendlatenotifications_locked','',NULL),(732,2,1722414946,'assign','sendstudentnotifications','1',NULL),(733,2,1722414946,'assign','sendstudentnotifications_adv','',NULL),(734,2,1722414946,'assign','sendstudentnotifications_locked','',NULL),(735,2,1722414946,'assign','blindmarking','0',NULL),(736,2,1722414946,'assign','blindmarking_adv','',NULL),(737,2,1722414946,'assign','blindmarking_locked','',NULL),(738,2,1722414946,'assign','hidegrader','0',NULL),(739,2,1722414946,'assign','hidegrader_adv','',NULL),(740,2,1722414946,'assign','hidegrader_locked','',NULL),(741,2,1722414946,'assign','markingworkflow','0',NULL),(742,2,1722414946,'assign','markingworkflow_adv','',NULL),(743,2,1722414946,'assign','markingworkflow_locked','',NULL),(744,2,1722414946,'assign','markingallocation','0',NULL),(745,2,1722414946,'assign','markingallocation_adv','',NULL),(746,2,1722414946,'assign','markingallocation_locked','',NULL),(747,2,1722414946,'assignsubmission_file','default','1',NULL),(748,2,1722414946,'assignsubmission_file','maxfiles','20',NULL),(749,2,1722414946,'assignsubmission_file','filetypes','',NULL),(750,2,1722414946,'assignsubmission_file','maxbytes','0',NULL),(751,2,1722414946,'assignsubmission_onlinetext','default','0',NULL),(752,2,1722414946,'assignfeedback_comments','default','1',NULL),(753,2,1722414946,'assignfeedback_comments','inline','0',NULL),(754,2,1722414946,'assignfeedback_comments','inline_adv','',NULL),(755,2,1722414946,'assignfeedback_comments','inline_locked','',NULL),(756,2,1722414946,'assignfeedback_editpdf','default','1',NULL),(757,2,1722414946,'assignfeedback_editpdf','stamps','',NULL),(758,2,1722414946,'assignfeedback_file','default','0',NULL),(759,2,1722414946,'assignfeedback_offline','default','0',NULL),(760,2,1722414946,NULL,'bigbluebuttonbn_default_dpa_accepted','0',NULL),(761,2,1722414946,NULL,'bigbluebuttonbn_server_url','https://test-moodle.blindsidenetworks.com/bigbluebutton/',NULL),(762,2,1722414946,NULL,'bigbluebuttonbn_shared_secret','********',NULL),(763,2,1722414946,NULL,'bigbluebuttonbn_checksum_algorithm','SHA1',NULL),(764,2,1722414946,NULL,'bigbluebuttonbn_poll_interval','5',NULL),(765,2,1722414946,NULL,'bigbluebuttonbn_welcome_default','',NULL),(766,2,1722414946,NULL,'bigbluebuttonbn_welcome_editable','1',NULL),(767,2,1722414946,NULL,'bigbluebuttonbn_recording_default','1',NULL),(768,2,1722414946,NULL,'bigbluebuttonbn_recording_refresh_period','300',NULL),(769,2,1722414946,NULL,'bigbluebuttonbn_recording_editable','1',NULL),(770,2,1722414946,NULL,'bigbluebuttonbn_recording_all_from_start_default','0',NULL),(771,2,1722414946,NULL,'bigbluebuttonbn_recording_all_from_start_editable','0',NULL),(772,2,1722414946,NULL,'bigbluebuttonbn_recording_hide_button_default','0',NULL),(773,2,1722414946,NULL,'bigbluebuttonbn_recording_hide_button_editable','0',NULL),(774,2,1722414946,NULL,'bigbluebuttonbn_recording_safe_formats','video,presentation',NULL),(775,2,1722414946,NULL,'bigbluebuttonbn_importrecordings_enabled','0',NULL),(776,2,1722414946,NULL,'bigbluebuttonbn_importrecordings_from_deleted_enabled','0',NULL),(777,2,1722414946,NULL,'bigbluebuttonbn_recordings_deleted_default','1',NULL),(778,2,1722414946,NULL,'bigbluebuttonbn_recordings_deleted_editable','0',NULL),(779,2,1722414946,NULL,'bigbluebuttonbn_recordings_imported_default','0',NULL),(780,2,1722414946,NULL,'bigbluebuttonbn_recordings_imported_editable','1',NULL),(781,2,1722414946,NULL,'bigbluebuttonbn_recordings_preview_default','1',NULL),(782,2,1722414946,NULL,'bigbluebuttonbn_recordings_preview_editable','0',NULL),(783,2,1722414946,NULL,'bigbluebuttonbn_recordings_asc_sort','0',NULL),(784,2,1722414946,NULL,'bigbluebuttonbn_recording_protect_editable','1',NULL),(785,2,1722414946,NULL,'bigbluebuttonbn_waitformoderator_default','0',NULL),(786,2,1722414946,NULL,'bigbluebuttonbn_waitformoderator_editable','1',NULL),(787,2,1722414946,NULL,'bigbluebuttonbn_waitformoderator_ping_interval','10',NULL),(788,2,1722414946,NULL,'bigbluebuttonbn_waitformoderator_cache_ttl','60',NULL),(789,2,1722414946,NULL,'bigbluebuttonbn_voicebridge_editable','0',NULL),(790,2,1722414946,NULL,'bigbluebuttonbn_preuploadpresentation_editable','0',NULL),(791,2,1722414946,'mod_bigbluebuttonbn','presentationdefault','',NULL),(792,2,1722414946,NULL,'bigbluebuttonbn_userlimit_default','0',NULL),(793,2,1722414946,NULL,'bigbluebuttonbn_userlimit_editable','0',NULL),(794,2,1722414946,NULL,'bigbluebuttonbn_participant_moderator_default','0',NULL),(795,2,1722414946,NULL,'bigbluebuttonbn_muteonstart_default','0',NULL),(796,2,1722414946,NULL,'bigbluebuttonbn_muteonstart_editable','0',NULL),(797,2,1722414946,NULL,'bigbluebuttonbn_disablecam_default','0',NULL),(798,2,1722414946,NULL,'bigbluebuttonbn_disablecam_editable','1',NULL),(799,2,1722414946,NULL,'bigbluebuttonbn_disablemic_default','0',NULL),(800,2,1722414946,NULL,'bigbluebuttonbn_disablemic_editable','1',NULL),(801,2,1722414946,NULL,'bigbluebuttonbn_disableprivatechat_default','0',NULL),(802,2,1722414946,NULL,'bigbluebuttonbn_disableprivatechat_editable','1',NULL),(803,2,1722414946,NULL,'bigbluebuttonbn_disablepublicchat_default','0',NULL),(804,2,1722414946,NULL,'bigbluebuttonbn_disablepublicchat_editable','1',NULL),(805,2,1722414946,NULL,'bigbluebuttonbn_disablenote_default','0',NULL),(806,2,1722414946,NULL,'bigbluebuttonbn_disablenote_editable','1',NULL),(807,2,1722414946,NULL,'bigbluebuttonbn_hideuserlist_default','0',NULL),(808,2,1722414946,NULL,'bigbluebuttonbn_hideuserlist_editable','1',NULL),(809,2,1722414946,NULL,'bigbluebuttonbn_recordingready_enabled','0',NULL),(810,2,1722414946,NULL,'bigbluebuttonbn_profile_picture_enabled','0',NULL),(811,2,1722414946,NULL,'bigbluebuttonbn_meetingevents_enabled','0',NULL),(812,2,1722414946,NULL,'bigbluebuttonbn_guestaccess_enabled','0',NULL),(813,2,1722414946,'book','numberingoptions','0,1,2,3',NULL),(814,2,1722414946,'book','numbering','1',NULL),(815,2,1722414946,NULL,'chat_method','ajax',NULL),(816,2,1722414946,NULL,'chat_refresh_userlist','10',NULL),(817,2,1722414946,NULL,'chat_old_ping','35',NULL),(818,2,1722414946,NULL,'chat_refresh_room','5',NULL),(819,2,1722414946,NULL,'chat_normal_updatemode','jsupdate',NULL),(820,2,1722414946,NULL,'chat_serverhost','www.moodle.loc',NULL),(821,2,1722414946,NULL,'chat_serverip','127.0.0.1',NULL),(822,2,1722414946,NULL,'chat_serverport','9111',NULL),(823,2,1722414946,NULL,'chat_servermax','100',NULL),(824,2,1722414946,NULL,'data_enablerssfeeds','0',NULL),(825,2,1722414946,NULL,'feedback_allowfullanonymous','0',NULL),(826,2,1722414946,'resource','framesize','130',NULL),(827,2,1722414946,'resource','displayoptions','0,1,4,5,6',NULL),(828,2,1722414946,'resource','printintro','1',NULL),(829,2,1722414946,'resource','display','0',NULL),(830,2,1722414946,'resource','showsize','0',NULL),(831,2,1722414946,'resource','showtype','1',NULL),(832,2,1722414946,'resource','showdate','0',NULL),(833,2,1722414946,'resource','popupwidth','620',NULL),(834,2,1722414946,'resource','popupheight','450',NULL),(835,2,1722414946,'resource','filterfiles','0',NULL),(836,2,1722414946,'folder','showexpanded','1',NULL),(837,2,1722414946,'folder','maxsizetodownload','0',NULL),(838,2,1722414946,NULL,'forum_displaymode','3',NULL),(839,2,1722414946,NULL,'forum_shortpost','300',NULL),(840,2,1722414946,NULL,'forum_longpost','600',NULL),(841,2,1722414946,NULL,'forum_manydiscussions','100',NULL),(842,2,1722414946,NULL,'forum_maxbytes','512000',NULL),(843,2,1722414946,NULL,'forum_maxattachments','9',NULL),(844,2,1722414947,NULL,'forum_subscription','0',NULL),(845,2,1722414947,NULL,'forum_trackingtype','1',NULL),(846,2,1722414947,NULL,'forum_trackreadposts','1',NULL),(847,2,1722414947,NULL,'forum_allowforcedreadtracking','0',NULL),(848,2,1722414947,NULL,'forum_oldpostdays','14',NULL),(849,2,1722414947,NULL,'forum_usermarksread','0',NULL),(850,2,1722414947,NULL,'forum_cleanreadtime','2',NULL),(851,2,1722414947,NULL,'digestmailtime','17',NULL),(852,2,1722414947,NULL,'forum_enablerssfeeds','0',NULL),(853,2,1722414947,NULL,'forum_enabletimedposts','1',NULL),(854,2,1722414947,NULL,'glossary_entbypage','10',NULL),(855,2,1722414947,NULL,'glossary_dupentries','0',NULL),(856,2,1722414947,NULL,'glossary_allowcomments','0',NULL),(857,2,1722414947,NULL,'glossary_linkbydefault','1',NULL),(858,2,1722414947,NULL,'glossary_defaultapproval','1',NULL),(859,2,1722414947,NULL,'glossary_enablerssfeeds','0',NULL),(860,2,1722414947,NULL,'glossary_linkentries','0',NULL),(861,2,1722414947,NULL,'glossary_casesensitive','0',NULL),(862,2,1722414947,NULL,'glossary_fullmatch','0',NULL),(863,2,1722414947,'mod_h5pactivity','enablesavestate','1',NULL),(864,2,1722414947,'mod_h5pactivity','savestatefreq','60',NULL),(865,2,1722414947,'imscp','keepold','1',NULL),(866,2,1722414947,'imscp','keepold_adv','',NULL),(867,2,1722414947,'mod_lesson','mediafile','',NULL),(868,2,1722414947,'mod_lesson','mediafile_adv','1',NULL),(869,2,1722414947,'mod_lesson','mediawidth','640',NULL),(870,2,1722414947,'mod_lesson','mediaheight','480',NULL),(871,2,1722414947,'mod_lesson','mediaclose','0',NULL),(872,2,1722414947,'mod_lesson','progressbar','0',NULL),(873,2,1722414947,'mod_lesson','progressbar_adv','',NULL),(874,2,1722414947,'mod_lesson','ongoing','0',NULL),(875,2,1722414947,'mod_lesson','ongoing_adv','1',NULL),(876,2,1722414947,'mod_lesson','displayleftmenu','0',NULL),(877,2,1722414947,'mod_lesson','displayleftmenu_adv','',NULL),(878,2,1722414947,'mod_lesson','displayleftif','0',NULL),(879,2,1722414947,'mod_lesson','displayleftif_adv','1',NULL),(880,2,1722414947,'mod_lesson','slideshow','0',NULL),(881,2,1722414947,'mod_lesson','slideshow_adv','1',NULL),(882,2,1722414947,'mod_lesson','slideshowwidth','640',NULL),(883,2,1722414947,'mod_lesson','slideshowheight','480',NULL),(884,2,1722414947,'mod_lesson','slideshowbgcolor','#FFFFFF',NULL),(885,2,1722414947,'mod_lesson','maxanswers','5',NULL),(886,2,1722414947,'mod_lesson','maxanswers_adv','1',NULL),(887,2,1722414947,'mod_lesson','defaultfeedback','0',NULL),(888,2,1722414947,'mod_lesson','defaultfeedback_adv','1',NULL),(889,2,1722414947,'mod_lesson','activitylink','',NULL),(890,2,1722414947,'mod_lesson','activitylink_adv','1',NULL),(891,2,1722414947,'mod_lesson','timelimit','0',NULL),(892,2,1722414947,'mod_lesson','timelimit_adv','',NULL),(893,2,1722414947,'mod_lesson','password','0',NULL),(894,2,1722414947,'mod_lesson','password_adv','1',NULL),(895,2,1722414947,'mod_lesson','modattempts','0',NULL),(896,2,1722414947,'mod_lesson','modattempts_adv','',NULL),(897,2,1722414947,'mod_lesson','displayreview','0',NULL),(898,2,1722414947,'mod_lesson','displayreview_adv','',NULL),(899,2,1722414947,'mod_lesson','maximumnumberofattempts','1',NULL),(900,2,1722414947,'mod_lesson','maximumnumberofattempts_adv','',NULL),(901,2,1722414947,'mod_lesson','defaultnextpage','0',NULL),(902,2,1722414947,'mod_lesson','defaultnextpage_adv','1',NULL),(903,2,1722414947,'mod_lesson','numberofpagestoshow','1',NULL),(904,2,1722414947,'mod_lesson','numberofpagestoshow_adv','1',NULL),(905,2,1722414947,'mod_lesson','practice','0',NULL),(906,2,1722414947,'mod_lesson','practice_adv','',NULL),(907,2,1722414947,'mod_lesson','customscoring','1',NULL),(908,2,1722414947,'mod_lesson','customscoring_adv','1',NULL),(909,2,1722414947,'mod_lesson','retakesallowed','0',NULL),(910,2,1722414947,'mod_lesson','retakesallowed_adv','',NULL),(911,2,1722414947,'mod_lesson','handlingofretakes','0',NULL),(912,2,1722414947,'mod_lesson','handlingofretakes_adv','1',NULL),(913,2,1722414947,'mod_lesson','minimumnumberofquestions','0',NULL),(914,2,1722414947,'mod_lesson','minimumnumberofquestions_adv','1',NULL),(915,2,1722414947,'page','displayoptions','5',NULL),(916,2,1722414947,'page','printintro','0',NULL),(917,2,1722414947,'page','printlastmodified','1',NULL),(918,2,1722414947,'page','display','5',NULL),(919,2,1722414947,'page','popupwidth','620',NULL),(920,2,1722414947,'page','popupheight','450',NULL),(921,2,1722414947,'quiz','timelimit','0',NULL),(922,2,1722414947,'quiz','timelimit_adv','',NULL),(923,2,1722414947,'quiz','timelimit_locked','',NULL),(924,2,1722414947,'quiz','notifyattemptgradeddelay','18000',NULL),(925,2,1722414947,'quiz','overduehandling','autosubmit',NULL),(926,2,1722414947,'quiz','overduehandling_adv','',NULL),(927,2,1722414947,'quiz','overduehandling_locked','',NULL),(928,2,1722414947,'quiz','graceperiod','86400',NULL),(929,2,1722414947,'quiz','graceperiod_adv','',NULL),(930,2,1722414947,'quiz','graceperiod_locked','',NULL),(931,2,1722414947,'quiz','graceperiodmin','60',NULL),(932,2,1722414947,'quiz','attempts','0',NULL),(933,2,1722414947,'quiz','attempts_adv','',NULL),(934,2,1722414947,'quiz','attempts_locked','',NULL),(935,2,1722414947,'quiz','grademethod','1',NULL),(936,2,1722414947,'quiz','grademethod_adv','',NULL),(937,2,1722414947,'quiz','grademethod_locked','',NULL),(938,2,1722414947,'quiz','maximumgrade','10',NULL),(939,2,1722414947,'quiz','maximumgrade_locked','',NULL),(940,2,1722414947,'quiz','questionsperpage','1',NULL),(941,2,1722414947,'quiz','questionsperpage_adv','',NULL),(942,2,1722414947,'quiz','questionsperpage_locked','',NULL),(943,2,1722414947,'quiz','navmethod','free',NULL),(944,2,1722414947,'quiz','navmethod_adv','1',NULL),(945,2,1722414947,'quiz','navmethod_locked','',NULL),(946,2,1722414947,'quiz','shuffleanswers','1',NULL),(947,2,1722414947,'quiz','shuffleanswers_adv','',NULL),(948,2,1722414947,'quiz','shuffleanswers_locked','',NULL),(949,2,1722414947,'quiz','preferredbehaviour','deferredfeedback',NULL),(950,2,1722414947,'quiz','preferredbehaviour_locked','',NULL),(951,2,1722414947,'quiz','canredoquestions','0',NULL),(952,2,1722414947,'quiz','canredoquestions_adv','1',NULL),(953,2,1722414947,'quiz','canredoquestions_locked','',NULL),(954,2,1722414947,'quiz','attemptonlast','0',NULL),(955,2,1722414947,'quiz','attemptonlast_adv','1',NULL),(956,2,1722414947,'quiz','attemptonlast_locked','',NULL),(957,2,1722414947,'quiz','reviewattempt','69904',NULL),(958,2,1722414947,'quiz','reviewcorrectness','69904',NULL),(959,2,1722414947,'quiz','reviewmaxmarks','69904',NULL),(960,2,1722414947,'quiz','reviewmarks','69904',NULL),(961,2,1722414947,'quiz','reviewspecificfeedback','69904',NULL),(962,2,1722414947,'quiz','reviewgeneralfeedback','69904',NULL),(963,2,1722414947,'quiz','reviewrightanswer','69904',NULL),(964,2,1722414947,'quiz','reviewoverallfeedback','4368',NULL),(965,2,1722414947,'quiz','showuserpicture','0',NULL),(966,2,1722414947,'quiz','showuserpicture_adv','',NULL),(967,2,1722414947,'quiz','showuserpicture_locked','',NULL),(968,2,1722414947,'quiz','decimalpoints','2',NULL),(969,2,1722414947,'quiz','decimalpoints_adv','',NULL),(970,2,1722414947,'quiz','decimalpoints_locked','',NULL),(971,2,1722414947,'quiz','questiondecimalpoints','-1',NULL),(972,2,1722414947,'quiz','questiondecimalpoints_adv','',NULL),(973,2,1722414947,'quiz','questiondecimalpoints_locked','',NULL),(974,2,1722414947,'quiz','showblocks','0',NULL),(975,2,1722414947,'quiz','showblocks_adv','1',NULL),(976,2,1722414947,'quiz','showblocks_locked','',NULL),(977,2,1722414947,'quiz','quizpassword','',NULL),(978,2,1722414947,'quiz','quizpassword_adv','',NULL),(979,2,1722414947,'quiz','quizpassword_required','',NULL),(980,2,1722414947,'quiz','quizpassword_locked','',NULL),(981,2,1722414947,'quiz','subnet','',NULL),(982,2,1722414947,'quiz','subnet_adv','1',NULL),(983,2,1722414947,'quiz','subnet_locked','',NULL),(984,2,1722414947,'quiz','delay1','0',NULL),(985,2,1722414947,'quiz','delay1_adv','1',NULL),(986,2,1722414947,'quiz','delay1_locked','',NULL),(987,2,1722414947,'quiz','delay2','0',NULL),(988,2,1722414947,'quiz','delay2_adv','1',NULL),(989,2,1722414947,'quiz','delay2_locked','',NULL),(990,2,1722414947,'quiz','browsersecurity','-',NULL),(991,2,1722414947,'quiz','browsersecurity_adv','1',NULL),(992,2,1722414947,'quiz','browsersecurity_locked','',NULL),(993,2,1722414947,'quiz','initialnumfeedbacks','2',NULL),(994,2,1722414947,'quiz','autosaveperiod','60',NULL),(995,2,1722414947,'quiz_statistics','getstatslocktimeout','900',NULL),(996,2,1722414947,'quizaccess_seb','autoreconfigureseb','1',NULL),(997,2,1722414947,'quizaccess_seb','showseblinks','seb,http',NULL),(998,2,1722414947,'quizaccess_seb','downloadlink','https://safeexambrowser.org/download_en.html',NULL),(999,2,1722414947,'quizaccess_seb','quizpasswordrequired','0',NULL),(1000,2,1722414947,'quizaccess_seb','displayblocksbeforestart','0',NULL),(1001,2,1722414947,'quizaccess_seb','displayblockswhenfinished','1',NULL),(1002,2,1722414947,'scorm','displaycoursestructure','0',NULL),(1003,2,1722414947,'scorm','displaycoursestructure_adv','',NULL),(1004,2,1722414947,'scorm','popup','0',NULL),(1005,2,1722414947,'scorm','popup_adv','',NULL),(1006,2,1722414947,'scorm','framewidth','100',NULL),(1007,2,1722414947,'scorm','framewidth_adv','1',NULL),(1008,2,1722414947,'scorm','frameheight','500',NULL),(1009,2,1722414947,'scorm','frameheight_adv','1',NULL),(1010,2,1722414947,'scorm','winoptgrp_adv','1',NULL),(1011,2,1722414947,'scorm','scrollbars','0',NULL),(1012,2,1722414947,'scorm','directories','0',NULL),(1013,2,1722414947,'scorm','location','0',NULL),(1014,2,1722414947,'scorm','menubar','0',NULL),(1015,2,1722414947,'scorm','toolbar','0',NULL),(1016,2,1722414947,'scorm','status','0',NULL),(1017,2,1722414947,'scorm','skipview','0',NULL),(1018,2,1722414947,'scorm','skipview_adv','1',NULL),(1019,2,1722414947,'scorm','hidebrowse','0',NULL),(1020,2,1722414947,'scorm','hidebrowse_adv','1',NULL),(1021,2,1722414947,'scorm','hidetoc','0',NULL),(1022,2,1722414947,'scorm','hidetoc_adv','1',NULL),(1023,2,1722414947,'scorm','nav','1',NULL),(1024,2,1722414947,'scorm','nav_adv','1',NULL),(1025,2,1722414947,'scorm','navpositionleft','-100',NULL),(1026,2,1722414947,'scorm','navpositionleft_adv','1',NULL),(1027,2,1722414947,'scorm','navpositiontop','-100',NULL),(1028,2,1722414947,'scorm','navpositiontop_adv','1',NULL),(1029,2,1722414947,'scorm','collapsetocwinsize','767',NULL),(1030,2,1722414947,'scorm','collapsetocwinsize_adv','1',NULL),(1031,2,1722414947,'scorm','displayattemptstatus','1',NULL),(1032,2,1722414947,'scorm','displayattemptstatus_adv','',NULL),(1033,2,1722414947,'scorm','grademethod','1',NULL),(1034,2,1722414947,'scorm','maxgrade','100',NULL),(1035,2,1722414947,'scorm','maxattempt','0',NULL),(1036,2,1722414947,'scorm','whatgrade','0',NULL),(1037,2,1722414947,'scorm','forcecompleted','0',NULL),(1038,2,1722414947,'scorm','forcenewattempt','0',NULL),(1039,2,1722414947,'scorm','autocommit','0',NULL),(1040,2,1722414947,'scorm','masteryoverride','1',NULL),(1041,2,1722414947,'scorm','lastattemptlock','0',NULL),(1042,2,1722414947,'scorm','auto','0',NULL),(1043,2,1722414947,'scorm','updatefreq','0',NULL),(1044,2,1722414947,'scorm','scormstandard','0',NULL),(1045,2,1722414947,'scorm','allowtypeexternal','0',NULL),(1046,2,1722414947,'scorm','allowtypelocalsync','0',NULL),(1047,2,1722414947,'scorm','allowtypeexternalaicc','0',NULL),(1048,2,1722414947,'scorm','allowaicchacp','0',NULL),(1049,2,1722414947,'scorm','aicchacptimeout','30',NULL),(1050,2,1722414947,'scorm','aicchacpkeepsessiondata','1',NULL),(1051,2,1722414947,'scorm','aiccuserid','1',NULL),(1052,2,1722414947,'scorm','forcejavascript','1',NULL),(1053,2,1722414947,'scorm','allowapidebug','0',NULL),(1054,2,1722414947,'scorm','apidebugmask','.*',NULL),(1055,2,1722414947,'scorm','protectpackagedownloads','0',NULL),(1056,2,1722414947,'label','dndmedia','1',NULL),(1057,2,1722414947,'label','dndresizewidth','400',NULL),(1058,2,1722414947,'label','dndresizeheight','400',NULL),(1059,2,1722414947,'url','framesize','130',NULL),(1060,2,1722414947,'url','secretphrase','',NULL),(1061,2,1722414947,'url','rolesinparams','0',NULL),(1062,2,1722414947,'url','displayoptions','0,1,5,6',NULL),(1063,2,1722414947,'url','printintro','1',NULL),(1064,2,1722414947,'url','display','0',NULL),(1065,2,1722414947,'url','popupwidth','620',NULL),(1066,2,1722414947,'url','popupheight','450',NULL),(1067,2,1722414947,'workshop','grade','80',NULL),(1068,2,1722414947,'workshop','gradinggrade','20',NULL),(1069,2,1722414947,'workshop','gradedecimals','0',NULL),(1070,2,1722414947,'workshop','maxbytes','0',NULL),(1071,2,1722414947,'workshop','strategy','accumulative',NULL),(1072,2,1722414947,'workshop','examplesmode','0',NULL),(1073,2,1722414947,'workshopallocation_random','numofreviews','5',NULL),(1074,2,1722414947,'workshopform_numerrors','grade0','No',NULL),(1075,2,1722414947,'workshopform_numerrors','grade1','Yes',NULL),(1076,2,1722414947,'workshopeval_best','comparison','5',NULL),(1077,2,1722414947,'tool_brickfield','analysistype','0',NULL),(1078,2,1722414947,'tool_brickfield','deletehistoricaldata','1',NULL),(1079,2,1722414947,'tool_brickfield','batch','1000',NULL),(1080,2,1722414947,'tool_brickfield','perpage','50',NULL),(1081,2,1722414947,'tool_mfa','enabled','0',NULL),(1082,2,1722414947,'tool_mfa','lockout','10',NULL),(1083,2,1722414947,'tool_mfa','debugmode','0',NULL),(1084,2,1722414947,'tool_mfa','redir_exclusions','',NULL),(1085,2,1722414947,'tool_mfa','guidance','0',NULL),(1086,2,1722414947,'tool_mfa','guidancecontent','',NULL),(1087,2,1722414947,'tool_mfa','guidancefiles','',NULL),(1088,2,1722414947,'factor_admin','enabled','0',NULL),(1089,2,1722414947,'factor_admin','weight','100',NULL),(1090,2,1722414947,'factor_auth','enabled','0',NULL),(1091,2,1722414947,'factor_auth','weight','100',NULL),(1092,2,1722414947,'factor_auth','goodauth','',NULL),(1093,2,1722414947,'factor_capability','enabled','0',NULL),(1094,2,1722414947,'factor_capability','weight','100',NULL),(1095,2,1722414947,'factor_capability','adminpasses','1',NULL),(1096,2,1722414947,'factor_cohort','enabled','0',NULL),(1097,2,1722414947,'factor_cohort','weight','100',NULL),(1098,2,1722414947,'factor_email','enabled','0',NULL),(1099,2,1722414947,'factor_email','weight','100',NULL),(1100,2,1722414947,'factor_email','duration','1800',NULL),(1101,2,1722414947,'factor_email','suspend','0',NULL),(1102,2,1722414947,'factor_grace','enabled','0',NULL),(1103,2,1722414947,'factor_grace','weight','100',NULL),(1104,2,1722414947,'factor_grace','forcesetup','0',NULL),(1105,2,1722414947,'factor_grace','graceperiod','604800',NULL),(1106,2,1722414947,'factor_grace','ignorelist','',NULL),(1107,2,1722414947,'factor_grace','customwarning','',NULL),(1108,2,1722414947,'factor_iprange','enabled','0',NULL),(1109,2,1722414947,'factor_iprange','weight','100',NULL),(1110,2,1722414947,'factor_iprange','safeips','',NULL),(1111,2,1722414948,'factor_nosetup','enabled','0',NULL),(1112,2,1722414948,'factor_nosetup','weight','100',NULL),(1113,2,1722414948,'factor_role','enabled','0',NULL),(1114,2,1722414948,'factor_role','weight','100',NULL),(1115,2,1722414948,'factor_role','roles','admin',NULL),(1116,2,1722414948,'factor_token','enabled','0',NULL),(1117,2,1722414948,'factor_token','weight','100',NULL),(1118,2,1722414948,'factor_token','expiry','86400',NULL),(1119,2,1722414948,'factor_token','expireovernight','1',NULL),(1120,2,1722414948,'factor_totp','enabled','0',NULL),(1121,2,1722414948,'factor_totp','weight','100',NULL),(1122,2,1722414948,'factor_totp','window','30',NULL),(1123,2,1722414948,'factor_totp','totplink','1',NULL),(1124,2,1722414948,'factor_webauthn','enabled','0',NULL),(1125,2,1722414948,'factor_webauthn','weight','100',NULL),(1126,2,1722414948,'factor_webauthn','authenticatortypes','usb,nfc,ble,hybrid,internal',NULL),(1127,2,1722414948,'factor_webauthn','userverification','preferred',NULL),(1128,2,1722414948,'tool_recyclebin','coursebinenable','1',NULL),(1129,2,1722414948,'tool_recyclebin','coursebinexpiry','604800',NULL),(1130,2,1722414948,'tool_recyclebin','categorybinenable','1',NULL),(1131,2,1722414948,'tool_recyclebin','categorybinexpiry','604800',NULL),(1132,2,1722414948,'tool_recyclebin','autohide','1',NULL),(1133,2,1722414948,'antivirus_clamav','runningmethod','commandline',NULL),(1134,2,1722414948,'antivirus_clamav','pathtoclam','',NULL),(1135,2,1722414948,'antivirus_clamav','pathtounixsocket','',NULL),(1136,2,1722414948,'antivirus_clamav','tcpsockethost','',NULL),(1137,2,1722414948,'antivirus_clamav','tcpsocketport','3310',NULL),(1138,2,1722414948,'antivirus_clamav','clamfailureonupload','tryagain',NULL),(1139,2,1722414948,'antivirus_clamav','tries','1',NULL),(1140,2,1722414948,'auth_cas','auth_name','CAS',NULL),(1141,2,1722414948,'auth_cas','auth_logo','',NULL),(1142,2,1722414948,'auth_cas','hostname','',NULL),(1143,2,1722414948,'auth_cas','baseuri','',NULL),(1144,2,1722414948,'auth_cas','port','0',NULL),(1145,2,1722414948,'auth_cas','casversion','2.0',NULL),(1146,2,1722414948,'auth_cas','language','CAS_Languages_English',NULL),(1147,2,1722414948,'auth_cas','proxycas','0',NULL),(1148,2,1722414948,'auth_cas','logoutcas','0',NULL),(1149,2,1722414948,'auth_cas','multiauth','0',NULL),(1150,2,1722414948,'auth_cas','certificate_check','0',NULL),(1151,2,1722414948,'auth_cas','certificate_path','',NULL),(1152,2,1722414948,'auth_cas','curl_ssl_version','',NULL),(1153,2,1722414948,'auth_cas','logout_return_url','',NULL),(1154,2,1722414948,'auth_cas','host_url','',NULL),(1155,2,1722414948,'auth_cas','ldap_version','3',NULL),(1156,2,1722414948,'auth_cas','start_tls','0',NULL),(1157,2,1722414948,'auth_cas','ldapencoding','utf-8',NULL),(1158,2,1722414948,'auth_cas','pagesize','250',NULL),(1159,2,1722414948,'auth_cas','bind_dn','',NULL),(1160,2,1722414948,'auth_cas','bind_pw','',NULL),(1161,2,1722414948,'auth_cas','user_type','default',NULL),(1162,2,1722414948,'auth_cas','contexts','',NULL),(1163,2,1722414948,'auth_cas','search_sub','0',NULL),(1164,2,1722414948,'auth_cas','opt_deref','0',NULL),(1165,2,1722414948,'auth_cas','user_attribute','',NULL),(1166,2,1722414948,'auth_cas','memberattribute','',NULL),(1167,2,1722414948,'auth_cas','memberattribute_isdn','0',NULL),(1168,2,1722414948,'auth_cas','objectclass','',NULL),(1169,2,1722414948,'auth_cas','attrcreators','',NULL),(1170,2,1722414948,'auth_cas','groupecreators','',NULL),(1171,2,1722414948,'auth_cas','removeuser','0',NULL),(1172,2,1722414948,'auth_cas','field_map_firstname','',NULL),(1173,2,1722414948,'auth_cas','field_updatelocal_firstname','oncreate',NULL),(1174,2,1722414948,'auth_cas','field_updateremote_firstname','0',NULL),(1175,2,1722414948,'auth_cas','field_lock_firstname','unlocked',NULL),(1176,2,1722414948,'auth_cas','field_map_lastname','',NULL),(1177,2,1722414948,'auth_cas','field_updatelocal_lastname','oncreate',NULL),(1178,2,1722414948,'auth_cas','field_updateremote_lastname','0',NULL),(1179,2,1722414948,'auth_cas','field_lock_lastname','unlocked',NULL),(1180,2,1722414948,'auth_cas','field_map_email','',NULL),(1181,2,1722414948,'auth_cas','field_updatelocal_email','oncreate',NULL),(1182,2,1722414948,'auth_cas','field_updateremote_email','0',NULL),(1183,2,1722414948,'auth_cas','field_lock_email','unlocked',NULL),(1184,2,1722414948,'auth_cas','field_map_city','',NULL),(1185,2,1722414948,'auth_cas','field_updatelocal_city','oncreate',NULL),(1186,2,1722414948,'auth_cas','field_updateremote_city','0',NULL),(1187,2,1722414948,'auth_cas','field_lock_city','unlocked',NULL),(1188,2,1722414948,'auth_cas','field_map_country','',NULL),(1189,2,1722414948,'auth_cas','field_updatelocal_country','oncreate',NULL),(1190,2,1722414948,'auth_cas','field_updateremote_country','0',NULL),(1191,2,1722414948,'auth_cas','field_lock_country','unlocked',NULL),(1192,2,1722414948,'auth_cas','field_map_lang','',NULL),(1193,2,1722414948,'auth_cas','field_updatelocal_lang','oncreate',NULL),(1194,2,1722414948,'auth_cas','field_updateremote_lang','0',NULL),(1195,2,1722414948,'auth_cas','field_lock_lang','unlocked',NULL),(1196,2,1722414948,'auth_cas','field_map_description','',NULL),(1197,2,1722414948,'auth_cas','field_updatelocal_description','oncreate',NULL),(1198,2,1722414948,'auth_cas','field_updateremote_description','0',NULL),(1199,2,1722414948,'auth_cas','field_lock_description','unlocked',NULL),(1200,2,1722414948,'auth_cas','field_map_idnumber','',NULL),(1201,2,1722414948,'auth_cas','field_updatelocal_idnumber','oncreate',NULL),(1202,2,1722414948,'auth_cas','field_updateremote_idnumber','0',NULL),(1203,2,1722414948,'auth_cas','field_lock_idnumber','unlocked',NULL),(1204,2,1722414948,'auth_cas','field_map_institution','',NULL),(1205,2,1722414948,'auth_cas','field_updatelocal_institution','oncreate',NULL),(1206,2,1722414948,'auth_cas','field_updateremote_institution','0',NULL),(1207,2,1722414948,'auth_cas','field_lock_institution','unlocked',NULL),(1208,2,1722414948,'auth_cas','field_map_department','',NULL),(1209,2,1722414948,'auth_cas','field_updatelocal_department','oncreate',NULL),(1210,2,1722414948,'auth_cas','field_updateremote_department','0',NULL),(1211,2,1722414948,'auth_cas','field_lock_department','unlocked',NULL),(1212,2,1722414948,'auth_cas','field_map_phone1','',NULL),(1213,2,1722414948,'auth_cas','field_updatelocal_phone1','oncreate',NULL),(1214,2,1722414948,'auth_cas','field_updateremote_phone1','0',NULL),(1215,2,1722414948,'auth_cas','field_lock_phone1','unlocked',NULL),(1216,2,1722414948,'auth_cas','field_map_phone2','',NULL),(1217,2,1722414948,'auth_cas','field_updatelocal_phone2','oncreate',NULL),(1218,2,1722414948,'auth_cas','field_updateremote_phone2','0',NULL),(1219,2,1722414948,'auth_cas','field_lock_phone2','unlocked',NULL),(1220,2,1722414948,'auth_cas','field_map_address','',NULL),(1221,2,1722414948,'auth_cas','field_updatelocal_address','oncreate',NULL),(1222,2,1722414948,'auth_cas','field_updateremote_address','0',NULL),(1223,2,1722414948,'auth_cas','field_lock_address','unlocked',NULL),(1224,2,1722414948,'auth_cas','field_map_firstnamephonetic','',NULL),(1225,2,1722414948,'auth_cas','field_updatelocal_firstnamephonetic','oncreate',NULL),(1226,2,1722414948,'auth_cas','field_updateremote_firstnamephonetic','0',NULL),(1227,2,1722414948,'auth_cas','field_lock_firstnamephonetic','unlocked',NULL),(1228,2,1722414948,'auth_cas','field_map_lastnamephonetic','',NULL),(1229,2,1722414948,'auth_cas','field_updatelocal_lastnamephonetic','oncreate',NULL),(1230,2,1722414948,'auth_cas','field_updateremote_lastnamephonetic','0',NULL),(1231,2,1722414948,'auth_cas','field_lock_lastnamephonetic','unlocked',NULL),(1232,2,1722414948,'auth_cas','field_map_middlename','',NULL),(1233,2,1722414948,'auth_cas','field_updatelocal_middlename','oncreate',NULL),(1234,2,1722414948,'auth_cas','field_updateremote_middlename','0',NULL),(1235,2,1722414948,'auth_cas','field_lock_middlename','unlocked',NULL),(1236,2,1722414948,'auth_cas','field_map_alternatename','',NULL),(1237,2,1722414948,'auth_cas','field_updatelocal_alternatename','oncreate',NULL),(1238,2,1722414948,'auth_cas','field_updateremote_alternatename','0',NULL),(1239,2,1722414948,'auth_cas','field_lock_alternatename','unlocked',NULL),(1240,2,1722414948,'auth_email','recaptcha','0',NULL),(1241,2,1722414948,'auth_email','field_lock_firstname','unlocked',NULL),(1242,2,1722414948,'auth_email','field_lock_lastname','unlocked',NULL),(1243,2,1722414948,'auth_email','field_lock_email','unlocked',NULL),(1244,2,1722414948,'auth_email','field_lock_city','unlocked',NULL),(1245,2,1722414948,'auth_email','field_lock_country','unlocked',NULL),(1246,2,1722414948,'auth_email','field_lock_lang','unlocked',NULL),(1247,2,1722414948,'auth_email','field_lock_description','unlocked',NULL),(1248,2,1722414948,'auth_email','field_lock_idnumber','unlocked',NULL),(1249,2,1722414948,'auth_email','field_lock_institution','unlocked',NULL),(1250,2,1722414948,'auth_email','field_lock_department','unlocked',NULL),(1251,2,1722414948,'auth_email','field_lock_phone1','unlocked',NULL),(1252,2,1722414948,'auth_email','field_lock_phone2','unlocked',NULL),(1253,2,1722414948,'auth_email','field_lock_address','unlocked',NULL),(1254,2,1722414948,'auth_email','field_lock_firstnamephonetic','unlocked',NULL),(1255,2,1722414948,'auth_email','field_lock_lastnamephonetic','unlocked',NULL),(1256,2,1722414948,'auth_email','field_lock_middlename','unlocked',NULL),(1257,2,1722414948,'auth_email','field_lock_alternatename','unlocked',NULL),(1258,2,1722414948,'auth_db','host','127.0.0.1',NULL),(1259,2,1722414948,'auth_db','type','mysqli',NULL),(1260,2,1722414948,'auth_db','sybasequoting','0',NULL),(1261,2,1722414948,'auth_db','name','',NULL),(1262,2,1722414948,'auth_db','user','',NULL),(1263,2,1722414948,'auth_db','pass','',NULL),(1264,2,1722414948,'auth_db','table','',NULL),(1265,2,1722414948,'auth_db','fielduser','',NULL),(1266,2,1722414948,'auth_db','fieldpass','',NULL),(1267,2,1722414948,'auth_db','passtype','plaintext',NULL),(1268,2,1722414948,'auth_db','extencoding','utf-8',NULL),(1269,2,1722414948,'auth_db','setupsql','',NULL),(1270,2,1722414948,'auth_db','debugauthdb','0',NULL),(1271,2,1722414948,'auth_db','changepasswordurl','',NULL),(1272,2,1722414948,'auth_db','removeuser','0',NULL),(1273,2,1722414948,'auth_db','updateusers','0',NULL),(1274,2,1722414948,'auth_db','field_map_firstname','',NULL),(1275,2,1722414948,'auth_db','field_updatelocal_firstname','oncreate',NULL),(1276,2,1722414948,'auth_db','field_updateremote_firstname','0',NULL),(1277,2,1722414948,'auth_db','field_lock_firstname','unlocked',NULL),(1278,2,1722414948,'auth_db','field_map_lastname','',NULL),(1279,2,1722414948,'auth_db','field_updatelocal_lastname','oncreate',NULL),(1280,2,1722414948,'auth_db','field_updateremote_lastname','0',NULL),(1281,2,1722414948,'auth_db','field_lock_lastname','unlocked',NULL),(1282,2,1722414948,'auth_db','field_map_email','',NULL),(1283,2,1722414948,'auth_db','field_updatelocal_email','oncreate',NULL),(1284,2,1722414948,'auth_db','field_updateremote_email','0',NULL),(1285,2,1722414948,'auth_db','field_lock_email','unlocked',NULL),(1286,2,1722414948,'auth_db','field_map_city','',NULL),(1287,2,1722414948,'auth_db','field_updatelocal_city','oncreate',NULL),(1288,2,1722414948,'auth_db','field_updateremote_city','0',NULL),(1289,2,1722414948,'auth_db','field_lock_city','unlocked',NULL),(1290,2,1722414948,'auth_db','field_map_country','',NULL),(1291,2,1722414948,'auth_db','field_updatelocal_country','oncreate',NULL),(1292,2,1722414948,'auth_db','field_updateremote_country','0',NULL),(1293,2,1722414948,'auth_db','field_lock_country','unlocked',NULL),(1294,2,1722414948,'auth_db','field_map_lang','',NULL),(1295,2,1722414948,'auth_db','field_updatelocal_lang','oncreate',NULL),(1296,2,1722414948,'auth_db','field_updateremote_lang','0',NULL),(1297,2,1722414948,'auth_db','field_lock_lang','unlocked',NULL),(1298,2,1722414948,'auth_db','field_map_description','',NULL),(1299,2,1722414948,'auth_db','field_updatelocal_description','oncreate',NULL),(1300,2,1722414948,'auth_db','field_updateremote_description','0',NULL),(1301,2,1722414948,'auth_db','field_lock_description','unlocked',NULL),(1302,2,1722414948,'auth_db','field_map_idnumber','',NULL),(1303,2,1722414948,'auth_db','field_updatelocal_idnumber','oncreate',NULL),(1304,2,1722414948,'auth_db','field_updateremote_idnumber','0',NULL),(1305,2,1722414948,'auth_db','field_lock_idnumber','unlocked',NULL),(1306,2,1722414948,'auth_db','field_map_institution','',NULL),(1307,2,1722414948,'auth_db','field_updatelocal_institution','oncreate',NULL),(1308,2,1722414948,'auth_db','field_updateremote_institution','0',NULL),(1309,2,1722414948,'auth_db','field_lock_institution','unlocked',NULL),(1310,2,1722414948,'auth_db','field_map_department','',NULL),(1311,2,1722414948,'auth_db','field_updatelocal_department','oncreate',NULL),(1312,2,1722414948,'auth_db','field_updateremote_department','0',NULL),(1313,2,1722414948,'auth_db','field_lock_department','unlocked',NULL),(1314,2,1722414948,'auth_db','field_map_phone1','',NULL),(1315,2,1722414948,'auth_db','field_updatelocal_phone1','oncreate',NULL),(1316,2,1722414948,'auth_db','field_updateremote_phone1','0',NULL),(1317,2,1722414948,'auth_db','field_lock_phone1','unlocked',NULL),(1318,2,1722414948,'auth_db','field_map_phone2','',NULL),(1319,2,1722414948,'auth_db','field_updatelocal_phone2','oncreate',NULL),(1320,2,1722414948,'auth_db','field_updateremote_phone2','0',NULL),(1321,2,1722414948,'auth_db','field_lock_phone2','unlocked',NULL),(1322,2,1722414948,'auth_db','field_map_address','',NULL),(1323,2,1722414948,'auth_db','field_updatelocal_address','oncreate',NULL),(1324,2,1722414948,'auth_db','field_updateremote_address','0',NULL),(1325,2,1722414948,'auth_db','field_lock_address','unlocked',NULL),(1326,2,1722414948,'auth_db','field_map_firstnamephonetic','',NULL),(1327,2,1722414948,'auth_db','field_updatelocal_firstnamephonetic','oncreate',NULL),(1328,2,1722414948,'auth_db','field_updateremote_firstnamephonetic','0',NULL),(1329,2,1722414948,'auth_db','field_lock_firstnamephonetic','unlocked',NULL),(1330,2,1722414948,'auth_db','field_map_lastnamephonetic','',NULL),(1331,2,1722414948,'auth_db','field_updatelocal_lastnamephonetic','oncreate',NULL),(1332,2,1722414948,'auth_db','field_updateremote_lastnamephonetic','0',NULL),(1333,2,1722414948,'auth_db','field_lock_lastnamephonetic','unlocked',NULL),(1334,2,1722414948,'auth_db','field_map_middlename','',NULL),(1335,2,1722414948,'auth_db','field_updatelocal_middlename','oncreate',NULL),(1336,2,1722414948,'auth_db','field_updateremote_middlename','0',NULL),(1337,2,1722414948,'auth_db','field_lock_middlename','unlocked',NULL),(1338,2,1722414948,'auth_db','field_map_alternatename','',NULL),(1339,2,1722414948,'auth_db','field_updatelocal_alternatename','oncreate',NULL),(1340,2,1722414948,'auth_db','field_updateremote_alternatename','0',NULL),(1341,2,1722414948,'auth_db','field_lock_alternatename','unlocked',NULL),(1342,2,1722414948,'auth_ldap','host_url','',NULL),(1343,2,1722414948,'auth_ldap','ldap_version','3',NULL),(1344,2,1722414948,'auth_ldap','start_tls','0',NULL),(1345,2,1722414948,'auth_ldap','ldapencoding','utf-8',NULL),(1346,2,1722414948,'auth_ldap','pagesize','250',NULL),(1347,2,1722414948,'auth_ldap','preventpassindb','0',NULL),(1348,2,1722414948,'auth_ldap','bind_dn','',NULL),(1349,2,1722414948,'auth_ldap','bind_pw','',NULL),(1350,2,1722414948,'auth_ldap','user_type','default',NULL),(1351,2,1722414948,'auth_ldap','contexts','',NULL),(1352,2,1722414948,'auth_ldap','search_sub','0',NULL),(1353,2,1722414948,'auth_ldap','opt_deref','0',NULL),(1354,2,1722414948,'auth_ldap','user_attribute','',NULL),(1355,2,1722414948,'auth_ldap','suspended_attribute','',NULL),(1356,2,1722414948,'auth_ldap','memberattribute','',NULL),(1357,2,1722414948,'auth_ldap','memberattribute_isdn','0',NULL),(1358,2,1722414948,'auth_ldap','objectclass','',NULL),(1359,2,1722414948,'auth_ldap','forcechangepassword','0',NULL),(1360,2,1722414948,'auth_ldap','stdchangepassword','0',NULL),(1361,2,1722414948,'auth_ldap','passtype','plaintext',NULL),(1362,2,1722414948,'auth_ldap','changepasswordurl','',NULL),(1363,2,1722414948,'auth_ldap','expiration','0',NULL),(1364,2,1722414948,'auth_ldap','expiration_warning','',NULL),(1365,2,1722414948,'auth_ldap','expireattr','',NULL),(1366,2,1722414948,'auth_ldap','gracelogins','0',NULL),(1367,2,1722414948,'auth_ldap','graceattr','',NULL),(1368,2,1722414948,'auth_ldap','auth_user_create','0',NULL),(1369,2,1722414948,'auth_ldap','create_context','',NULL),(1370,2,1722414948,'auth_ldap','managercontext','',NULL),(1371,2,1722414948,'auth_ldap','coursecreatorcontext','',NULL),(1372,2,1722414948,'auth_ldap','removeuser','0',NULL),(1373,2,1722414948,'auth_ldap','sync_suspended','0',NULL),(1374,2,1722414948,'auth_ldap','ntlmsso_enabled','0',NULL),(1375,2,1722414948,'auth_ldap','ntlmsso_subnet','',NULL),(1376,2,1722414948,'auth_ldap','ntlmsso_ie_fastpath','0',NULL),(1377,2,1722414948,'auth_ldap','ntlmsso_type','ntlm',NULL),(1378,2,1722414948,'auth_ldap','ntlmsso_remoteuserformat','',NULL),(1379,2,1722414948,'auth_ldap','field_map_firstname','',NULL),(1380,2,1722414948,'auth_ldap','field_updatelocal_firstname','oncreate',NULL),(1381,2,1722414948,'auth_ldap','field_updateremote_firstname','0',NULL),(1382,2,1722414948,'auth_ldap','field_lock_firstname','unlocked',NULL),(1383,2,1722414948,'auth_ldap','field_map_lastname','',NULL),(1384,2,1722414948,'auth_ldap','field_updatelocal_lastname','oncreate',NULL),(1385,2,1722414948,'auth_ldap','field_updateremote_lastname','0',NULL),(1386,2,1722414948,'auth_ldap','field_lock_lastname','unlocked',NULL),(1387,2,1722414948,'auth_ldap','field_map_email','',NULL),(1388,2,1722414948,'auth_ldap','field_updatelocal_email','oncreate',NULL),(1389,2,1722414948,'auth_ldap','field_updateremote_email','0',NULL),(1390,2,1722414948,'auth_ldap','field_lock_email','unlocked',NULL),(1391,2,1722414948,'auth_ldap','field_map_city','',NULL),(1392,2,1722414948,'auth_ldap','field_updatelocal_city','oncreate',NULL),(1393,2,1722414948,'auth_ldap','field_updateremote_city','0',NULL),(1394,2,1722414948,'auth_ldap','field_lock_city','unlocked',NULL),(1395,2,1722414948,'auth_ldap','field_map_country','',NULL),(1396,2,1722414948,'auth_ldap','field_updatelocal_country','oncreate',NULL),(1397,2,1722414949,'auth_ldap','field_updateremote_country','0',NULL),(1398,2,1722414949,'auth_ldap','field_lock_country','unlocked',NULL),(1399,2,1722414949,'auth_ldap','field_map_lang','',NULL),(1400,2,1722414949,'auth_ldap','field_updatelocal_lang','oncreate',NULL),(1401,2,1722414949,'auth_ldap','field_updateremote_lang','0',NULL),(1402,2,1722414949,'auth_ldap','field_lock_lang','unlocked',NULL),(1403,2,1722414949,'auth_ldap','field_map_description','',NULL),(1404,2,1722414949,'auth_ldap','field_updatelocal_description','oncreate',NULL),(1405,2,1722414949,'auth_ldap','field_updateremote_description','0',NULL),(1406,2,1722414949,'auth_ldap','field_lock_description','unlocked',NULL),(1407,2,1722414949,'auth_ldap','field_map_idnumber','',NULL),(1408,2,1722414949,'auth_ldap','field_updatelocal_idnumber','oncreate',NULL),(1409,2,1722414949,'auth_ldap','field_updateremote_idnumber','0',NULL),(1410,2,1722414949,'auth_ldap','field_lock_idnumber','unlocked',NULL),(1411,2,1722414949,'auth_ldap','field_map_institution','',NULL),(1412,2,1722414949,'auth_ldap','field_updatelocal_institution','oncreate',NULL),(1413,2,1722414949,'auth_ldap','field_updateremote_institution','0',NULL),(1414,2,1722414949,'auth_ldap','field_lock_institution','unlocked',NULL),(1415,2,1722414949,'auth_ldap','field_map_department','',NULL),(1416,2,1722414949,'auth_ldap','field_updatelocal_department','oncreate',NULL),(1417,2,1722414949,'auth_ldap','field_updateremote_department','0',NULL),(1418,2,1722414949,'auth_ldap','field_lock_department','unlocked',NULL),(1419,2,1722414949,'auth_ldap','field_map_phone1','',NULL),(1420,2,1722414949,'auth_ldap','field_updatelocal_phone1','oncreate',NULL),(1421,2,1722414949,'auth_ldap','field_updateremote_phone1','0',NULL),(1422,2,1722414949,'auth_ldap','field_lock_phone1','unlocked',NULL),(1423,2,1722414949,'auth_ldap','field_map_phone2','',NULL),(1424,2,1722414949,'auth_ldap','field_updatelocal_phone2','oncreate',NULL),(1425,2,1722414949,'auth_ldap','field_updateremote_phone2','0',NULL),(1426,2,1722414949,'auth_ldap','field_lock_phone2','unlocked',NULL),(1427,2,1722414949,'auth_ldap','field_map_address','',NULL),(1428,2,1722414949,'auth_ldap','field_updatelocal_address','oncreate',NULL),(1429,2,1722414949,'auth_ldap','field_updateremote_address','0',NULL),(1430,2,1722414949,'auth_ldap','field_lock_address','unlocked',NULL),(1431,2,1722414949,'auth_ldap','field_map_firstnamephonetic','',NULL),(1432,2,1722414949,'auth_ldap','field_updatelocal_firstnamephonetic','oncreate',NULL),(1433,2,1722414949,'auth_ldap','field_updateremote_firstnamephonetic','0',NULL),(1434,2,1722414949,'auth_ldap','field_lock_firstnamephonetic','unlocked',NULL),(1435,2,1722414949,'auth_ldap','field_map_lastnamephonetic','',NULL),(1436,2,1722414949,'auth_ldap','field_updatelocal_lastnamephonetic','oncreate',NULL),(1437,2,1722414949,'auth_ldap','field_updateremote_lastnamephonetic','0',NULL),(1438,2,1722414949,'auth_ldap','field_lock_lastnamephonetic','unlocked',NULL),(1439,2,1722414949,'auth_ldap','field_map_middlename','',NULL),(1440,2,1722414949,'auth_ldap','field_updatelocal_middlename','oncreate',NULL),(1441,2,1722414949,'auth_ldap','field_updateremote_middlename','0',NULL),(1442,2,1722414949,'auth_ldap','field_lock_middlename','unlocked',NULL),(1443,2,1722414949,'auth_ldap','field_map_alternatename','',NULL),(1444,2,1722414949,'auth_ldap','field_updatelocal_alternatename','oncreate',NULL),(1445,2,1722414949,'auth_ldap','field_updateremote_alternatename','0',NULL),(1446,2,1722414949,'auth_ldap','field_lock_alternatename','unlocked',NULL),(1447,2,1722414949,'auth_manual','expiration','0',NULL),(1448,2,1722414949,'auth_manual','expirationtime','30',NULL),(1449,2,1722414949,'auth_manual','expiration_warning','0',NULL),(1450,2,1722414949,'auth_manual','field_lock_firstname','unlocked',NULL),(1451,2,1722414949,'auth_manual','field_lock_lastname','unlocked',NULL),(1452,2,1722414949,'auth_manual','field_lock_email','unlocked',NULL),(1453,2,1722414949,'auth_manual','field_lock_city','unlocked',NULL),(1454,2,1722414949,'auth_manual','field_lock_country','unlocked',NULL),(1455,2,1722414949,'auth_manual','field_lock_lang','unlocked',NULL),(1456,2,1722414949,'auth_manual','field_lock_description','unlocked',NULL),(1457,2,1722414949,'auth_manual','field_lock_idnumber','unlocked',NULL),(1458,2,1722414949,'auth_manual','field_lock_institution','unlocked',NULL),(1459,2,1722414949,'auth_manual','field_lock_department','unlocked',NULL),(1460,2,1722414949,'auth_manual','field_lock_phone1','unlocked',NULL),(1461,2,1722414949,'auth_manual','field_lock_phone2','unlocked',NULL),(1462,2,1722414949,'auth_manual','field_lock_address','unlocked',NULL),(1463,2,1722414949,'auth_manual','field_lock_firstnamephonetic','unlocked',NULL),(1464,2,1722414949,'auth_manual','field_lock_lastnamephonetic','unlocked',NULL),(1465,2,1722414949,'auth_manual','field_lock_middlename','unlocked',NULL),(1466,2,1722414949,'auth_manual','field_lock_alternatename','unlocked',NULL),(1467,2,1722414949,'auth_mnet','rpc_negotiation_timeout','30',NULL),(1468,2,1722414949,'auth_none','field_lock_firstname','unlocked',NULL),(1469,2,1722414949,'auth_none','field_lock_lastname','unlocked',NULL),(1470,2,1722414949,'auth_none','field_lock_email','unlocked',NULL),(1471,2,1722414949,'auth_none','field_lock_city','unlocked',NULL),(1472,2,1722414949,'auth_none','field_lock_country','unlocked',NULL),(1473,2,1722414949,'auth_none','field_lock_lang','unlocked',NULL),(1474,2,1722414949,'auth_none','field_lock_description','unlocked',NULL),(1475,2,1722414949,'auth_none','field_lock_idnumber','unlocked',NULL),(1476,2,1722414949,'auth_none','field_lock_institution','unlocked',NULL),(1477,2,1722414949,'auth_none','field_lock_department','unlocked',NULL),(1478,2,1722414949,'auth_none','field_lock_phone1','unlocked',NULL),(1479,2,1722414949,'auth_none','field_lock_phone2','unlocked',NULL),(1480,2,1722414949,'auth_none','field_lock_address','unlocked',NULL),(1481,2,1722414949,'auth_none','field_lock_firstnamephonetic','unlocked',NULL),(1482,2,1722414949,'auth_none','field_lock_lastnamephonetic','unlocked',NULL),(1483,2,1722414949,'auth_none','field_lock_middlename','unlocked',NULL),(1484,2,1722414949,'auth_none','field_lock_alternatename','unlocked',NULL),(1485,2,1722414949,'auth_oauth2','field_lock_firstname','unlocked',NULL),(1486,2,1722414949,'auth_oauth2','field_lock_lastname','unlocked',NULL),(1487,2,1722414949,'auth_oauth2','field_lock_email','unlocked',NULL),(1488,2,1722414949,'auth_oauth2','field_lock_city','unlocked',NULL),(1489,2,1722414949,'auth_oauth2','field_lock_country','unlocked',NULL),(1490,2,1722414949,'auth_oauth2','field_lock_lang','unlocked',NULL),(1491,2,1722414949,'auth_oauth2','field_lock_description','unlocked',NULL),(1492,2,1722414949,'auth_oauth2','field_lock_idnumber','unlocked',NULL),(1493,2,1722414949,'auth_oauth2','field_lock_institution','unlocked',NULL),(1494,2,1722414949,'auth_oauth2','field_lock_department','unlocked',NULL),(1495,2,1722414949,'auth_oauth2','field_lock_phone1','unlocked',NULL),(1496,2,1722414949,'auth_oauth2','field_lock_phone2','unlocked',NULL),(1497,2,1722414949,'auth_oauth2','field_lock_address','unlocked',NULL),(1498,2,1722414949,'auth_oauth2','field_lock_firstnamephonetic','unlocked',NULL),(1499,2,1722414949,'auth_oauth2','field_lock_lastnamephonetic','unlocked',NULL),(1500,2,1722414949,'auth_oauth2','field_lock_middlename','unlocked',NULL),(1501,2,1722414949,'auth_oauth2','field_lock_alternatename','unlocked',NULL),(1502,2,1722414949,'auth_shibboleth','user_attribute','',NULL),(1503,2,1722414949,'auth_shibboleth','convert_data','',NULL),(1504,2,1722414949,'auth_shibboleth','alt_login','off',NULL),(1505,2,1722414949,'auth_shibboleth','organization_selection','urn:mace:organization1:providerID, Example Organization 1\n        https://another.idp-id.com/shibboleth, Other Example Organization, /Shibboleth.sso/DS/SWITCHaai\n        urn:mace:organization2:providerID, Example Organization 2, /Shibboleth.sso/WAYF/SWITCHaai',NULL),(1506,2,1722414949,'auth_shibboleth','logout_handler','',NULL),(1507,2,1722414949,'auth_shibboleth','logout_return_url','',NULL),(1508,2,1722414949,'auth_shibboleth','login_name','Shibboleth Login',NULL),(1509,2,1722414949,'auth_shibboleth','auth_logo','',NULL),(1510,2,1722414949,'auth_shibboleth','auth_instructions','Use the <a href=\"https://www.moodle.loc/auth/shibboleth/index.php\">Shibboleth login</a> to get access via Shibboleth, if your institution supports it. Otherwise, use the normal login form shown here.',NULL),(1511,2,1722414949,'auth_shibboleth','changepasswordurl','',NULL),(1512,2,1722414949,'auth_shibboleth','field_map_firstname','',NULL),(1513,2,1722414949,'auth_shibboleth','field_updatelocal_firstname','oncreate',NULL),(1514,2,1722414949,'auth_shibboleth','field_lock_firstname','unlocked',NULL),(1515,2,1722414949,'auth_shibboleth','field_map_lastname','',NULL),(1516,2,1722414949,'auth_shibboleth','field_updatelocal_lastname','oncreate',NULL),(1517,2,1722414949,'auth_shibboleth','field_lock_lastname','unlocked',NULL),(1518,2,1722414949,'auth_shibboleth','field_map_email','',NULL),(1519,2,1722414949,'auth_shibboleth','field_updatelocal_email','oncreate',NULL),(1520,2,1722414949,'auth_shibboleth','field_lock_email','unlocked',NULL),(1521,2,1722414949,'auth_shibboleth','field_map_city','',NULL),(1522,2,1722414949,'auth_shibboleth','field_updatelocal_city','oncreate',NULL),(1523,2,1722414949,'auth_shibboleth','field_lock_city','unlocked',NULL),(1524,2,1722414949,'auth_shibboleth','field_map_country','',NULL),(1525,2,1722414949,'auth_shibboleth','field_updatelocal_country','oncreate',NULL),(1526,2,1722414949,'auth_shibboleth','field_lock_country','unlocked',NULL),(1527,2,1722414949,'auth_shibboleth','field_map_lang','',NULL),(1528,2,1722414949,'auth_shibboleth','field_updatelocal_lang','oncreate',NULL),(1529,2,1722414949,'auth_shibboleth','field_lock_lang','unlocked',NULL),(1530,2,1722414949,'auth_shibboleth','field_map_description','',NULL),(1531,2,1722414949,'auth_shibboleth','field_updatelocal_description','oncreate',NULL),(1532,2,1722414949,'auth_shibboleth','field_lock_description','unlocked',NULL),(1533,2,1722414949,'auth_shibboleth','field_map_idnumber','',NULL),(1534,2,1722414949,'auth_shibboleth','field_updatelocal_idnumber','oncreate',NULL),(1535,2,1722414949,'auth_shibboleth','field_lock_idnumber','unlocked',NULL),(1536,2,1722414949,'auth_shibboleth','field_map_institution','',NULL),(1537,2,1722414949,'auth_shibboleth','field_updatelocal_institution','oncreate',NULL),(1538,2,1722414949,'auth_shibboleth','field_lock_institution','unlocked',NULL),(1539,2,1722414949,'auth_shibboleth','field_map_department','',NULL),(1540,2,1722414949,'auth_shibboleth','field_updatelocal_department','oncreate',NULL),(1541,2,1722414949,'auth_shibboleth','field_lock_department','unlocked',NULL),(1542,2,1722414949,'auth_shibboleth','field_map_phone1','',NULL),(1543,2,1722414949,'auth_shibboleth','field_updatelocal_phone1','oncreate',NULL),(1544,2,1722414949,'auth_shibboleth','field_lock_phone1','unlocked',NULL),(1545,2,1722414949,'auth_shibboleth','field_map_phone2','',NULL),(1546,2,1722414949,'auth_shibboleth','field_updatelocal_phone2','oncreate',NULL),(1547,2,1722414949,'auth_shibboleth','field_lock_phone2','unlocked',NULL),(1548,2,1722414949,'auth_shibboleth','field_map_address','',NULL),(1549,2,1722414949,'auth_shibboleth','field_updatelocal_address','oncreate',NULL),(1550,2,1722414949,'auth_shibboleth','field_lock_address','unlocked',NULL),(1551,2,1722414949,'auth_shibboleth','field_map_firstnamephonetic','',NULL),(1552,2,1722414949,'auth_shibboleth','field_updatelocal_firstnamephonetic','oncreate',NULL),(1553,2,1722414949,'auth_shibboleth','field_lock_firstnamephonetic','unlocked',NULL),(1554,2,1722414949,'auth_shibboleth','field_map_lastnamephonetic','',NULL),(1555,2,1722414949,'auth_shibboleth','field_updatelocal_lastnamephonetic','oncreate',NULL),(1556,2,1722414949,'auth_shibboleth','field_lock_lastnamephonetic','unlocked',NULL),(1557,2,1722414949,'auth_shibboleth','field_map_middlename','',NULL),(1558,2,1722414949,'auth_shibboleth','field_updatelocal_middlename','oncreate',NULL),(1559,2,1722414949,'auth_shibboleth','field_lock_middlename','unlocked',NULL),(1560,2,1722414949,'auth_shibboleth','field_map_alternatename','',NULL),(1561,2,1722414949,'auth_shibboleth','field_updatelocal_alternatename','oncreate',NULL),(1562,2,1722414949,'auth_shibboleth','field_lock_alternatename','unlocked',NULL),(1563,2,1722414949,'block_accessreview','whattoshow','showboth',NULL),(1564,2,1722414949,'block_accessreview','errordisplay','showint',NULL),(1565,2,1722414949,'block_accessreview','toolpage','errors',NULL),(1566,2,1722414949,'block_activity_results','config_showbest','3',NULL),(1567,2,1722414949,'block_activity_results','config_showbest_locked','',NULL),(1568,2,1722414949,'block_activity_results','config_showworst','0',NULL),(1569,2,1722414949,'block_activity_results','config_showworst_locked','',NULL),(1570,2,1722414949,'block_activity_results','config_usegroups','0',NULL),(1571,2,1722414949,'block_activity_results','config_usegroups_locked','',NULL),(1572,2,1722414949,'block_activity_results','config_nameformat','1',NULL),(1573,2,1722414949,'block_activity_results','config_nameformat_locked','',NULL),(1574,2,1722414949,'block_activity_results','config_gradeformat','1',NULL),(1575,2,1722414949,'block_activity_results','config_gradeformat_locked','',NULL),(1576,2,1722414949,'block_activity_results','config_decimalpoints','2',NULL),(1577,2,1722414949,'block_activity_results','config_decimalpoints_locked','',NULL),(1578,2,1722414949,'block_myoverview','displaycategories','1',NULL),(1579,2,1722414949,'block_myoverview','layouts','card,list,summary',NULL),(1580,2,1722414949,'block_myoverview','displaygroupingallincludinghidden','0',NULL),(1581,2,1722414949,'block_myoverview','displaygroupingall','1',NULL),(1582,2,1722414949,'block_myoverview','displaygroupinginprogress','1',NULL),(1583,2,1722414949,'block_myoverview','displaygroupingpast','1',NULL),(1584,2,1722414949,'block_myoverview','displaygroupingfuture','1',NULL),(1585,2,1722414949,'block_myoverview','displaygroupingcustomfield','0',NULL),(1586,2,1722414949,'block_myoverview','customfiltergrouping','',NULL),(1587,2,1722414949,'block_myoverview','displaygroupingfavourites','1',NULL),(1588,2,1722414949,'block_myoverview','displaygroupinghidden','1',NULL),(1589,2,1722414949,NULL,'block_course_list_adminview','all',NULL),(1590,2,1722414949,NULL,'block_course_list_hideallcourseslink','0',NULL),(1591,2,1722414949,NULL,'block_online_users_timetosee','5',NULL),(1592,2,1722414949,NULL,'block_online_users_onlinestatushiding','1',NULL),(1593,2,1722414949,'block_recentlyaccessedcourses','displaycategories','1',NULL),(1594,2,1722414949,NULL,'block_rss_client_num_entries','5',NULL),(1595,2,1722414949,NULL,'block_rss_client_timeout','30',NULL),(1596,2,1722414949,'block_section_links','numsections1','22',NULL),(1597,2,1722414949,'block_section_links','incby1','2',NULL),(1598,2,1722414949,'block_section_links','numsections2','40',NULL),(1599,2,1722414949,'block_section_links','incby2','5',NULL),(1600,2,1722414949,'block_section_links','showsectionname','0',NULL),(1601,2,1722414949,'block_starredcourses','displaycategories','1',NULL),(1602,2,1722414949,NULL,'block_html_allowcssclasses','0',NULL),(1603,2,1722414949,'block_tag_youtube','apikey','',NULL),(1604,2,1722414949,'format_singleactivity','activitytype','forum',NULL),(1605,2,1722414949,'format_topics','indentation','1',NULL),(1606,2,1722414949,'format_weeks','indentation','1',NULL),(1607,2,1722414949,'fileconverter_googledrive','issuerid','',NULL),(1608,2,1722414949,NULL,'pathtounoconv','/usr/bin/unoconv',NULL),(1609,2,1722414949,'enrol_cohort','roleid','5',NULL),(1610,2,1722414949,'enrol_cohort','unenrolaction','0',NULL),(1611,2,1722414949,'enrol_meta','nosyncroleids','',NULL),(1612,2,1722414949,'enrol_meta','syncall','1',NULL),(1613,2,1722414949,'enrol_meta','unenrolaction','3',NULL),(1614,2,1722414949,'enrol_meta','coursesort','sortorder',NULL),(1615,2,1722414949,'enrol_fee','expiredaction','3',NULL),(1616,2,1722414949,'enrol_fee','status','1',NULL),(1617,2,1722414949,'enrol_fee','cost','0',NULL),(1618,2,1722414949,'enrol_fee','currency','USD',NULL),(1619,2,1722414949,'enrol_fee','roleid','5',NULL),(1620,2,1722414949,'enrol_fee','enrolperiod','0',NULL),(1621,2,1722414949,'enrol_database','dbtype','',NULL),(1622,2,1722414949,'enrol_database','dbhost','localhost',NULL),(1623,2,1722414949,'enrol_database','dbuser','',NULL),(1624,2,1722414949,'enrol_database','dbpass','',NULL),(1625,2,1722414949,'enrol_database','dbname','',NULL),(1626,2,1722414949,'enrol_database','dbencoding','utf-8',NULL),(1627,2,1722414949,'enrol_database','dbsetupsql','',NULL),(1628,2,1722414949,'enrol_database','dbsybasequoting','0',NULL),(1629,2,1722414949,'enrol_database','debugdb','0',NULL),(1630,2,1722414949,'enrol_database','localcoursefield','idnumber',NULL),(1631,2,1722414949,'enrol_database','localuserfield','idnumber',NULL),(1632,2,1722414949,'enrol_database','localrolefield','shortname',NULL),(1633,2,1722414949,'enrol_database','localcategoryfield','id',NULL),(1634,2,1722414949,'enrol_database','remoteenroltable','',NULL),(1635,2,1722414949,'enrol_database','remotecoursefield','',NULL),(1636,2,1722414949,'enrol_database','remoteuserfield','',NULL),(1637,2,1722414949,'enrol_database','remoterolefield','',NULL),(1638,2,1722414949,'enrol_database','remoteotheruserfield','',NULL),(1639,2,1722414949,'enrol_database','defaultrole','5',NULL),(1640,2,1722414949,'enrol_database','ignorehiddencourses','0',NULL),(1641,2,1722414949,'enrol_database','unenrolaction','0',NULL),(1642,2,1722414949,'enrol_database','newcoursetable','',NULL),(1643,2,1722414949,'enrol_database','newcoursefullname','fullname',NULL),(1644,2,1722414949,'enrol_database','newcourseshortname','shortname',NULL),(1645,2,1722414949,'enrol_database','newcourseidnumber','idnumber',NULL),(1646,2,1722414949,'enrol_database','newcoursecategory','',NULL),(1647,2,1722414949,'enrol_database','defaultcategory','1',NULL),(1648,2,1722414949,'enrol_database','templatecourse','',NULL),(1649,2,1722414949,'enrol_flatfile','location','',NULL),(1650,2,1722414949,'enrol_flatfile','encoding','UTF-8',NULL),(1651,2,1722414949,'enrol_flatfile','mailstudents','0',NULL),(1652,2,1722414949,'enrol_flatfile','mailteachers','0',NULL),(1653,2,1722414949,'enrol_flatfile','mailadmins','0',NULL),(1654,2,1722414949,'enrol_flatfile','unenrolaction','3',NULL),(1655,2,1722414949,'enrol_flatfile','expiredaction','3',NULL),(1656,2,1722414949,'enrol_guest','requirepassword','0',NULL),(1657,2,1722414949,'enrol_guest','usepasswordpolicy','0',NULL),(1658,2,1722414949,'enrol_guest','showhint','0',NULL),(1659,2,1722414949,'enrol_guest','defaultenrol','1',NULL),(1660,2,1722414949,'enrol_guest','status','1',NULL),(1661,2,1722414949,'enrol_guest','status_adv','',NULL),(1662,2,1722414949,'enrol_imsenterprise','imsfilelocation','',NULL),(1663,2,1722414949,'enrol_imsenterprise','logtolocation','',NULL),(1664,2,1722414949,'enrol_imsenterprise','mailadmins','0',NULL),(1665,2,1722414949,'enrol_imsenterprise','createnewusers','0',NULL),(1666,2,1722414949,'enrol_imsenterprise','imsupdateusers','0',NULL),(1667,2,1722414949,'enrol_imsenterprise','imsdeleteusers','0',NULL),(1668,2,1722414949,'enrol_imsenterprise','fixcaseusernames','0',NULL),(1669,2,1722414949,'enrol_imsenterprise','fixcasepersonalnames','0',NULL),(1670,2,1722414949,'enrol_imsenterprise','imssourcedidfallback','0',NULL),(1671,2,1722414949,'enrol_imsenterprise','imsrolemap01','5',NULL),(1672,2,1722414949,'enrol_imsenterprise','imsrolemap02','3',NULL),(1673,2,1722414949,'enrol_imsenterprise','imsrolemap03','3',NULL),(1674,2,1722414949,'enrol_imsenterprise','imsrolemap04','5',NULL),(1675,2,1722414949,'enrol_imsenterprise','imsrolemap05','0',NULL),(1676,2,1722414949,'enrol_imsenterprise','imsrolemap06','4',NULL),(1677,2,1722414949,'enrol_imsenterprise','imsrolemap07','0',NULL),(1678,2,1722414949,'enrol_imsenterprise','imsrolemap08','4',NULL),(1679,2,1722414949,'enrol_imsenterprise','truncatecoursecodes','0',NULL),(1680,2,1722414949,'enrol_imsenterprise','createnewcourses','0',NULL),(1681,2,1722414949,'enrol_imsenterprise','updatecourses','0',NULL),(1682,2,1722414949,'enrol_imsenterprise','createnewcategories','0',NULL),(1683,2,1722414949,'enrol_imsenterprise','nestedcategories','0',NULL),(1684,2,1722414949,'enrol_imsenterprise','categoryidnumber','0',NULL),(1685,2,1722414949,'enrol_imsenterprise','categoryseparator','',NULL),(1686,2,1722414949,'enrol_imsenterprise','imsunenrol','0',NULL),(1687,2,1722414949,'enrol_imsenterprise','unenrolaction','0',NULL),(1688,2,1722414949,'enrol_imsenterprise','imscoursemapshortname','coursecode',NULL),(1689,2,1722414949,'enrol_imsenterprise','imscoursemapfullname','short',NULL),(1690,2,1722414949,'enrol_imsenterprise','imscoursemapsummary','ignore',NULL),(1691,2,1722414949,'enrol_imsenterprise','imsrestricttarget','',NULL),(1692,2,1722414949,'enrol_imsenterprise','imscapitafix','0',NULL),(1693,2,1722414949,'enrol_ldap','host_url','',NULL),(1694,2,1722414949,'enrol_ldap','start_tls','0',NULL),(1695,2,1722414949,'enrol_ldap','ldap_version','3',NULL),(1696,2,1722414949,'enrol_ldap','ldapencoding','utf-8',NULL),(1697,2,1722414949,'enrol_ldap','pagesize','250',NULL),(1698,2,1722414949,'enrol_ldap','bind_dn','',NULL),(1699,2,1722414949,'enrol_ldap','bind_pw','',NULL),(1700,2,1722414949,'enrol_ldap','course_search_sub','0',NULL),(1701,2,1722414949,'enrol_ldap','memberattribute_isdn','0',NULL),(1702,2,1722414949,'enrol_ldap','user_contexts','',NULL),(1703,2,1722414949,'enrol_ldap','user_search_sub','0',NULL),(1704,2,1722414949,'enrol_ldap','user_type','default',NULL),(1705,2,1722414949,'enrol_ldap','opt_deref','0',NULL),(1706,2,1722414949,'enrol_ldap','idnumber_attribute','',NULL),(1707,2,1722414949,'enrol_ldap','objectclass','',NULL),(1708,2,1722414949,'enrol_ldap','course_idnumber','',NULL),(1709,2,1722414949,'enrol_ldap','course_shortname','',NULL),(1710,2,1722414949,'enrol_ldap','course_fullname','',NULL),(1711,2,1722414949,'enrol_ldap','course_summary','',NULL),(1712,2,1722414949,'enrol_ldap','ignorehiddencourses','0',NULL),(1713,2,1722414949,'enrol_ldap','unenrolaction','0',NULL),(1714,2,1722414949,'enrol_ldap','autocreate','0',NULL),(1715,2,1722414949,'enrol_ldap','category','1',NULL),(1716,2,1722414949,'enrol_ldap','template','',NULL),(1717,2,1722414949,'enrol_ldap','course_shortname_updateonsync','0',NULL),(1718,2,1722414949,'enrol_ldap','course_fullname_updateonsync','0',NULL),(1719,2,1722414949,'enrol_ldap','course_summary_updateonsync','0',NULL),(1720,2,1722414949,'enrol_ldap','nested_groups','0',NULL),(1721,2,1722414949,'enrol_ldap','group_memberofattribute','',NULL),(1722,2,1722414949,'enrol_manual','expiredaction','1',NULL),(1723,2,1722414949,'enrol_manual','expirynotifyhour','6',NULL),(1724,2,1722414949,'enrol_manual','defaultenrol','1',NULL),(1725,2,1722414949,'enrol_manual','status','0',NULL),(1726,2,1722414949,'enrol_manual','roleid','5',NULL),(1727,2,1722414949,'enrol_manual','enrolstart','4',NULL),(1728,2,1722414949,'enrol_manual','enrolperiod','0',NULL),(1729,2,1722414949,'enrol_manual','expirynotify','0',NULL),(1730,2,1722414949,'enrol_manual','expirythreshold','86400',NULL),(1731,2,1722414949,'enrol_mnet','roleid','5',NULL),(1732,2,1722414949,'enrol_mnet','roleid_adv','1',NULL),(1733,2,1722414949,'enrol_paypal','paypalbusiness','',NULL),(1734,2,1722414949,'enrol_paypal','mailstudents','0',NULL),(1735,2,1722414949,'enrol_paypal','mailteachers','0',NULL),(1736,2,1722414949,'enrol_paypal','mailadmins','0',NULL),(1737,2,1722414949,'enrol_paypal','expiredaction','3',NULL),(1738,2,1722414949,'enrol_paypal','status','1',NULL),(1739,2,1722414949,'enrol_paypal','cost','0',NULL),(1740,2,1722414949,'enrol_paypal','currency','USD',NULL),(1741,2,1722414949,'enrol_paypal','roleid','5',NULL),(1742,2,1722414949,'enrol_paypal','enrolperiod','0',NULL),(1743,2,1722414949,'enrol_lti','emaildisplay','2',NULL),(1744,2,1722414949,'enrol_lti','city','',NULL),(1745,2,1722414949,'enrol_lti','country','',NULL),(1746,2,1722414949,'enrol_lti','timezone','99',NULL),(1747,2,1722414949,'enrol_lti','lang','en',NULL),(1748,2,1722414950,'enrol_lti','institution','',NULL),(1749,2,1722414950,'enrol_self','requirepassword','0',NULL),(1750,2,1722414950,'enrol_self','usepasswordpolicy','0',NULL),(1751,2,1722414950,'enrol_self','showhint','0',NULL),(1752,2,1722414950,'enrol_self','expiredaction','1',NULL),(1753,2,1722414950,'enrol_self','expirynotifyhour','6',NULL),(1754,2,1722414950,'enrol_self','defaultenrol','1',NULL),(1755,2,1722414950,'enrol_self','status','1',NULL),(1756,2,1722414950,'enrol_self','newenrols','1',NULL),(1757,2,1722414950,'enrol_self','groupkey','0',NULL),(1758,2,1722414950,'enrol_self','roleid','5',NULL),(1759,2,1722414950,'enrol_self','enrolperiod','0',NULL),(1760,2,1722414950,'enrol_self','expirynotify','0',NULL),(1761,2,1722414950,'enrol_self','expirythreshold','86400',NULL),(1762,2,1722414950,'enrol_self','longtimenosee','0',NULL),(1763,2,1722414950,'enrol_self','maxenrolled','0',NULL),(1764,2,1722414950,'enrol_self','sendcoursewelcomemessage','1',NULL),(1765,2,1722414950,'filter_urltolink','formats','1,4,0',NULL),(1766,2,1722414950,'filter_urltolink','embedimages','1',NULL),(1767,2,1722414950,'filter_emoticon','formats','1,4,0',NULL),(1768,2,1722414950,'filter_displayh5p','allowedsources','',NULL),(1769,2,1722414950,'filter_mathjaxloader','httpsurl','https://cdn.jsdelivr.net/npm/mathjax@2.7.9/MathJax.js',NULL),(1770,2,1722414950,'filter_mathjaxloader','texfiltercompatibility','0',NULL),(1771,2,1722414950,'filter_mathjaxloader','mathjaxconfig','\nMathJax.Hub.Config({\n    config: [\"Accessible.js\", \"Safe.js\"],\n    errorSettings: { message: [\"!\"] },\n    skipStartupTypeset: true,\n    messageStyle: \"none\"\n});\n',NULL),(1772,2,1722414950,'filter_mathjaxloader','additionaldelimiters','',NULL),(1773,2,1722414950,NULL,'filter_multilang_force_old','0',NULL),(1774,2,1722414950,'filter_tex','latexpreamble','\\usepackage[latin1]{inputenc}\n\\usepackage{amsmath}\n\\usepackage{amsfonts}\n\\RequirePackage{amsmath,amssymb,latexsym}\n',NULL),(1775,2,1722414950,'filter_tex','latexbackground','#FFFFFF',NULL),(1776,2,1722414950,'filter_tex','density','120',NULL),(1777,2,1722414950,'filter_tex','pathlatex','/usr/bin/latex',NULL),(1778,2,1722414950,'filter_tex','pathdvips','/usr/bin/dvips',NULL),(1779,2,1722414950,'filter_tex','pathconvert','/usr/bin/convert',NULL),(1780,2,1722414950,'filter_tex','pathdvisvgm','/usr/bin/dvisvgm',NULL),(1781,2,1722414950,'filter_tex','pathmimetex','',NULL),(1782,2,1722414950,'filter_tex','convertformat','gif',NULL),(1783,2,1722414950,'local_asystgrade','apiendpoint','',NULL),(1784,2,1722414950,'logstore_database','dbdriver','',NULL),(1785,2,1722414950,'logstore_database','dbhost','',NULL),(1786,2,1722414950,'logstore_database','dbuser','',NULL),(1787,2,1722414950,'logstore_database','dbpass','',NULL),(1788,2,1722414950,'logstore_database','dbname','',NULL),(1789,2,1722414950,'logstore_database','dbtable','',NULL),(1790,2,1722414950,'logstore_database','dbpersist','0',NULL),(1791,2,1722414950,'logstore_database','dbsocket','',NULL),(1792,2,1722414950,'logstore_database','dbport','',NULL),(1793,2,1722414950,'logstore_database','dbschema','',NULL),(1794,2,1722414950,'logstore_database','dbcollation','',NULL),(1795,2,1722414950,'logstore_database','dbhandlesoptions','0',NULL),(1796,2,1722414950,'logstore_database','buffersize','50',NULL),(1797,2,1722414950,'logstore_database','jsonformat','1',NULL),(1798,2,1722414950,'logstore_database','logguests','0',NULL),(1799,2,1722414950,'logstore_database','includelevels','1,2,0',NULL),(1800,2,1722414950,'logstore_database','includeactions','c,r,u,d',NULL),(1801,2,1722414950,'logstore_standard','logguests','1',NULL),(1802,2,1722414950,'logstore_standard','jsonformat','1',NULL),(1803,2,1722414950,'logstore_standard','loglifetime','0',NULL),(1804,2,1722414950,'logstore_standard','buffersize','50',NULL),(1805,2,1722414950,'mlbackend_python','useserver','0',NULL),(1806,2,1722414950,'mlbackend_python','host','',NULL),(1807,2,1722414950,'mlbackend_python','port','0',NULL),(1808,2,1722414950,'mlbackend_python','secure','0',NULL),(1809,2,1722414950,'mlbackend_python','username','default',NULL),(1810,2,1722414950,'mlbackend_python','password','',NULL),(1811,2,1722414950,'media_videojs','videoextensions','html_video,media_source,.f4v,.flv',NULL),(1812,2,1722414950,'media_videojs','audioextensions','html_audio',NULL),(1813,2,1722414950,'media_videojs','youtube','1',NULL),(1814,2,1722414950,'media_videojs','videocssclass','video-js',NULL),(1815,2,1722414950,'media_videojs','audiocssclass','video-js',NULL),(1816,2,1722414950,'media_videojs','limitsize','1',NULL),(1817,2,1722414950,'media_vimeo','donottrack','0',NULL),(1818,2,1722414950,'media_youtube','nocookie','0',NULL),(1819,2,1722414950,'paygw_paypal','surcharge','0',NULL),(1820,2,1722414950,'qtype_multichoice','answerhowmany','1',NULL),(1821,2,1722414950,'qtype_multichoice','shuffleanswers','1',NULL),(1822,2,1722414950,'qtype_multichoice','answernumbering','abc',NULL),(1823,2,1722414950,'qtype_multichoice','showstandardinstruction','0',NULL),(1824,2,1722414950,'editor_atto','toolbar','collapse = collapse\nstyle1 = title, bold, italic\nlist = unorderedlist, orderedlist, indent\nlinks = link\nfiles = emojipicker, image, media, recordrtc, managefiles, h5p\naccessibility = accessibilitychecker, accessibilityhelper\nstyle2 = underline, strike, subscript, superscript\nalign = align\ninsert = equation, charmap, table, clear\nundo = undo\nother = html',NULL),(1825,2,1722414950,'editor_atto','autosavefrequency','60',NULL),(1826,2,1722414950,'atto_collapse','showgroups','6',NULL),(1827,2,1722414950,'atto_equation','librarygroup1','\n\\cdot\n\\times\n\\ast\n\\div\n\\diamond\n\\pm\n\\mp\n\\oplus\n\\ominus\n\\otimes\n\\oslash\n\\odot\n\\circ\n\\bullet\n\\asymp\n\\equiv\n\\subseteq\n\\supseteq\n\\leq\n\\geq\n\\preceq\n\\succeq\n\\sim\n\\simeq\n\\approx\n\\subset\n\\supset\n\\ll\n\\gg\n\\prec\n\\succ\n\\infty\n\\in\n\\ni\n\\forall\n\\exists\n\\neq\n',NULL),(1828,2,1722414950,'atto_equation','librarygroup2','\n\\leftarrow\n\\rightarrow\n\\uparrow\n\\downarrow\n\\leftrightarrow\n\\nearrow\n\\searrow\n\\swarrow\n\\nwarrow\n\\Leftarrow\n\\Rightarrow\n\\Uparrow\n\\Downarrow\n\\Leftrightarrow\n',NULL),(1829,2,1722414950,'atto_equation','librarygroup3','\n\\alpha\n\\beta\n\\gamma\n\\delta\n\\epsilon\n\\zeta\n\\eta\n\\theta\n\\iota\n\\kappa\n\\lambda\n\\mu\n\\nu\n\\xi\n\\pi\n\\rho\n\\sigma\n\\tau\n\\upsilon\n\\phi\n\\chi\n\\psi\n\\omega\n\\Gamma\n\\Delta\n\\Theta\n\\Lambda\n\\Xi\n\\Pi\n\\Sigma\n\\Upsilon\n\\Phi\n\\Psi\n\\Omega\n',NULL),(1830,2,1722414950,'atto_equation','librarygroup4','\n\\sum{a,b}\n\\sqrt[a]{b+c}\n\\int_{a}^{b}{c}\n\\iint_{a}^{b}{c}\n\\iiint_{a}^{b}{c}\n\\oint{a}\n(a)\n[a]\n\\lbrace{a}\\rbrace\n\\left| \\begin{matrix} a_1 & a_2 \\\\ a_3 & a_4 \\end{matrix} \\right|\n\\frac{a}{b+c}\n\\vec{a}\n\\binom {a} {b}\n{a \\brack b}\n{a \\brace b}\n',NULL),(1831,2,1722414950,'atto_recordrtc','allowedtypes','both',NULL),(1832,2,1722414950,'atto_recordrtc','audiobitrate','128000',NULL),(1833,2,1722414950,'atto_recordrtc','videobitrate','2500000',NULL),(1834,2,1722414950,'atto_recordrtc','audiotimelimit','120',NULL),(1835,2,1722414950,'atto_recordrtc','videotimelimit','120',NULL),(1836,2,1722414950,'atto_table','allowborders','0',NULL),(1837,2,1722414950,'atto_table','allowbackgroundcolour','0',NULL),(1838,2,1722414950,'atto_table','allowwidth','0',NULL),(1839,2,1722414950,'editor_tiny','branding','1',NULL),(1840,2,1722414950,'tiny_equation','librarygroup1','\n\\cdot\n\\times\n\\ast\n\\div\n\\diamond\n\\pm\n\\mp\n\\oplus\n\\ominus\n\\otimes\n\\oslash\n\\odot\n\\circ\n\\bullet\n\\asymp\n\\equiv\n\\subseteq\n\\supseteq\n\\leq\n\\geq\n\\preceq\n\\succeq\n\\sim\n\\simeq\n\\approx\n\\subset\n\\supset\n\\ll\n\\gg\n\\prec\n\\succ\n\\infty\n\\in\n\\ni\n\\forall\n\\exists\n\\neq\n',NULL),(1841,2,1722414950,'tiny_equation','librarygroup2','\n\\leftarrow\n\\rightarrow\n\\uparrow\n\\downarrow\n\\leftrightarrow\n\\nearrow\n\\searrow\n\\swarrow\n\\nwarrow\n\\Leftarrow\n\\Rightarrow\n\\Uparrow\n\\Downarrow\n\\Leftrightarrow\n',NULL),(1842,2,1722414950,'tiny_equation','librarygroup3','\n\\alpha\n\\beta\n\\gamma\n\\delta\n\\epsilon\n\\zeta\n\\eta\n\\theta\n\\iota\n\\kappa\n\\lambda\n\\mu\n\\nu\n\\xi\n\\pi\n\\rho\n\\sigma\n\\tau\n\\upsilon\n\\phi\n\\chi\n\\psi\n\\omega\n\\Gamma\n\\Delta\n\\Theta\n\\Lambda\n\\Xi\n\\Pi\n\\Sigma\n\\Upsilon\n\\Phi\n\\Psi\n\\Omega\n',NULL),(1843,2,1722414950,'tiny_equation','librarygroup4','\n\\sum{a,b}\n\\sqrt[a]{b+c}\n\\int_{a}^{b}{c}\n\\iint_{a}^{b}{c}\n\\iiint_{a}^{b}{c}\n\\oint{a}\n(a)\n[a]\n\\lbrace{a}\\rbrace\n\\left| \\begin{matrix} a_1 & a_2 \\\\ a_3 & a_4 \\end{matrix} \\right|\n\\frac{a}{b+c}\n\\vec{a}\n\\binom {a} {b}\n{a \\brack b}\n{a \\brace b}\n',NULL),(1844,2,1722414950,'tiny_premium','apikey','',NULL),(1845,2,1722414950,'tiny_recordrtc','allowedtypes','both',NULL),(1846,2,1722414950,'tiny_recordrtc','audiobitrate','128000',NULL),(1847,2,1722414950,'tiny_recordrtc','videobitrate','2500000',NULL),(1848,2,1722414950,'tiny_recordrtc','audiotimelimit','120',NULL),(1849,2,1722414950,'tiny_recordrtc','videotimelimit','120',NULL),(1850,2,1722414950,NULL,'profileroles','5,4,3',NULL),(1851,2,1722414950,NULL,'calendar_exportsalt','ZsLDRDZfgqX7ZjxCDtqAUv1d6cBt23tweL7k0Bn6j36oYCYqtRN8V8xJasj9','G2UtDNRZ5dswO0WMpec24V3Jfu3enR9SvaVcSfoXvpXJi0RrQVpHYBYkT8gy'),(1852,2,1722414950,NULL,'coursecontact','3',NULL),(1853,2,1722414950,NULL,'frontpage','6',NULL),(1854,2,1722414950,NULL,'frontpageloggedin','6',NULL),(1855,2,1722414950,NULL,'maxcategorydepth','2',NULL),(1856,2,1722414950,NULL,'frontpagecourselimit','200',NULL),(1857,2,1722414950,NULL,'commentsperpage','15',NULL),(1858,2,1722414950,NULL,'defaultfrontpageroleid','8',NULL),(1859,2,1722414950,NULL,'messageinbound_enabled','0',NULL),(1860,2,1722414950,NULL,'messageinbound_mailbox','',NULL),(1861,2,1722414950,NULL,'messageinbound_domain','',NULL),(1862,2,1722414950,NULL,'messageinbound_host','',NULL),(1863,2,1722414950,NULL,'messageinbound_hostssl','ssl',NULL),(1864,2,1722414950,NULL,'messageinbound_hostuser','',NULL),(1865,2,1722414950,NULL,'messageinbound_hostpass','',NULL),(1866,2,1722414950,'tool_mobile','apppolicy','',NULL),(1867,2,1722414950,'tool_mobile','typeoflogin','1',NULL),(1868,2,1722414950,'tool_mobile','autologout','0',NULL),(1869,2,1722414950,'tool_mobile','autologouttime','86400',NULL),(1870,2,1722414950,'tool_mobile','qrcodetype','2',NULL),(1871,2,1722414950,'tool_mobile','qrkeyttl','600',NULL),(1872,2,1722414950,'tool_mobile','qrsameipcheck','1',NULL),(1873,2,1722414950,'tool_mobile','forcedurlscheme','moodlemobile',NULL),(1874,2,1722414950,'tool_mobile','minimumversion','',NULL),(1875,2,1722414950,'tool_mobile','autologinmintimebetweenreq','360',NULL),(1876,2,1722414950,NULL,'mobilecssurl','',NULL),(1877,2,1722414950,'tool_mobile','enablesmartappbanners','0',NULL),(1878,2,1722414950,'tool_mobile','iosappid','633359593',NULL),(1879,2,1722414950,'tool_mobile','androidappid','com.moodle.moodlemobile',NULL),(1880,2,1722414950,'tool_mobile','setuplink','https://download.moodle.org/mobile',NULL),(1881,2,1722414950,'tool_mobile','forcelogout','0',NULL),(1882,2,1722414950,'tool_mobile','disabledfeatures','',NULL),(1883,2,1722414950,'tool_mobile','custommenuitems','',NULL),(1884,2,1722414950,'tool_mobile','filetypeexclusionlist','',NULL),(1885,2,1722414950,'tool_mobile','customlangstrings','',NULL),(1886,2,1722414953,NULL,'enablemobilewebservice','1',NULL),(1887,2,1722414953,'analytics','logstore','logstore_standard',NULL),(1888,2,1722414954,'tool_moodlenet','defaultmoodlenetname','MoodleNet Central',NULL),(1889,2,1722414954,'tool_moodlenet','defaultmoodlenet','https://moodle.net',NULL);
/*!40000 ALTER TABLE `mdl_config_log` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `mdl_config_plugins`
--

DROP TABLE IF EXISTS `mdl_config_plugins`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `mdl_config_plugins` (
  `id` bigint(10) NOT NULL AUTO_INCREMENT,
  `plugin` varchar(100) NOT NULL DEFAULT 'core',
  `name` varchar(100) NOT NULL DEFAULT '',
  `value` longtext NOT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `mdl_confplug_plunam_uix` (`plugin`,`name`)
) ENGINE=InnoDB AUTO_INCREMENT=2092 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='Moodle modules and plugins configuration variables';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `mdl_config_plugins`
--

LOCK TABLES `mdl_config_plugins` WRITE;
/*!40000 ALTER TABLE `mdl_config_plugins` DISABLE KEYS */;
INSERT INTO `mdl_config_plugins` (`id`, `plugin`, `name`, `value`) VALUES (1,'question','multichoice_sortorder','1'),(2,'question','truefalse_sortorder','2'),(3,'question','match_sortorder','3'),(4,'question','shortanswer_sortorder','4'),(5,'question','numerical_sortorder','5'),(6,'question','essay_sortorder','6'),(7,'core_competency','enabled','1'),(8,'moodlecourse','visible','1'),(9,'moodlecourse','downloadcontentsitedefault','0'),(10,'moodlecourse','participantsperpage','20'),(11,'moodlecourse','format','topics'),(12,'moodlecourse','maxsections','52'),(13,'moodlecourse','numsections','4'),(14,'moodlecourse','hiddensections','1'),(15,'moodlecourse','coursedisplay','0'),(16,'moodlecourse','courseenddateenabled','1'),(17,'moodlecourse','courseduration','31536000'),(18,'moodlecourse','lang',''),(19,'moodlecourse','newsitems','5'),(20,'moodlecourse','showgrades','1'),(21,'moodlecourse','showreports','0'),(22,'moodlecourse','showactivitydates','1'),(23,'moodlecourse','maxbytes','0'),(24,'moodlecourse','enablecompletion','1'),(25,'moodlecourse','showcompletionconditions','1'),(26,'moodlecourse','groupmode','0'),(27,'moodlecourse','groupmodeforce','0'),(28,'moodlecourse','coursecommunicationprovider','none'),(29,'backup','loglifetime','30'),(30,'backup','backup_general_users','1'),(31,'backup','backup_general_users_locked',''),(32,'backup','backup_general_anonymize','0'),(33,'backup','backup_general_anonymize_locked',''),(34,'backup','backup_general_role_assignments','1'),(35,'backup','backup_general_role_assignments_locked',''),(36,'backup','backup_general_activities','1'),(37,'backup','backup_general_activities_locked',''),(38,'backup','backup_general_blocks','1'),(39,'backup','backup_general_blocks_locked',''),(40,'backup','backup_general_files','1'),(41,'backup','backup_general_files_locked',''),(42,'backup','backup_general_filters','1'),(43,'backup','backup_general_filters_locked',''),(44,'backup','backup_general_comments','1'),(45,'backup','backup_general_comments_locked',''),(46,'backup','backup_general_badges','1'),(47,'backup','backup_general_badges_locked',''),(48,'backup','backup_general_calendarevents','1'),(49,'backup','backup_general_calendarevents_locked',''),(50,'backup','backup_general_userscompletion','1'),(51,'backup','backup_general_userscompletion_locked',''),(52,'backup','backup_general_logs','0'),(53,'backup','backup_general_logs_locked',''),(54,'backup','backup_general_histories','0'),(55,'backup','backup_general_histories_locked',''),(56,'backup','backup_general_questionbank','1'),(57,'backup','backup_general_questionbank_locked',''),(58,'backup','backup_general_groups','1'),(59,'backup','backup_general_groups_locked',''),(60,'backup','backup_general_competencies','1'),(61,'backup','backup_general_competencies_locked',''),(62,'backup','backup_general_contentbankcontent','1'),(63,'backup','backup_general_contentbankcontent_locked',''),(64,'backup','backup_general_xapistate','1'),(65,'backup','backup_general_xapistate_locked',''),(66,'backup','backup_general_legacyfiles','1'),(67,'backup','backup_general_legacyfiles_locked',''),(68,'backup','import_general_maxresults','10'),(69,'backup','import_general_duplicate_admin_allowed','0'),(70,'backup','backup_import_permissions','0'),(71,'backup','backup_import_permissions_locked',''),(72,'backup','backup_import_activities','1'),(73,'backup','backup_import_activities_locked',''),(74,'backup','backup_import_blocks','1'),(75,'backup','backup_import_blocks_locked',''),(76,'backup','backup_import_filters','1'),(77,'backup','backup_import_filters_locked',''),(78,'backup','backup_import_calendarevents','1'),(79,'backup','backup_import_calendarevents_locked',''),(80,'backup','backup_import_questionbank','1'),(81,'backup','backup_import_questionbank_locked',''),(82,'backup','backup_import_groups','1'),(83,'backup','backup_import_groups_locked',''),(84,'backup','backup_import_competencies','1'),(85,'backup','backup_import_competencies_locked',''),(86,'backup','backup_import_contentbankcontent','1'),(87,'backup','backup_import_contentbankcontent_locked',''),(88,'backup','backup_import_legacyfiles','1'),(89,'backup','backup_import_legacyfiles_locked',''),(90,'backup','backup_auto_active','0'),(91,'backup','backup_auto_weekdays','0000000'),(92,'backup','backup_auto_hour','0'),(93,'backup','backup_auto_minute','0'),(94,'backup','backup_auto_storage','0'),(95,'backup','backup_auto_destination',''),(96,'backup','backup_auto_max_kept','1'),(97,'backup','backup_auto_delete_days','0'),(98,'backup','backup_auto_min_kept','0'),(99,'backup','backup_shortname','0'),(100,'backup','backup_auto_skip_hidden','1'),(101,'backup','backup_auto_skip_modif_days','30'),(102,'backup','backup_auto_skip_modif_prev','0'),(103,'backup','backup_auto_users','1'),(104,'backup','backup_auto_role_assignments','1'),(105,'backup','backup_auto_activities','1'),(106,'backup','backup_auto_blocks','1'),(107,'backup','backup_auto_files','1'),(108,'backup','backup_auto_filters','1'),(109,'backup','backup_auto_comments','1'),(110,'backup','backup_auto_badges','1'),(111,'backup','backup_auto_calendarevents','1'),(112,'backup','backup_auto_userscompletion','1'),(113,'backup','backup_auto_logs','0'),(114,'backup','backup_auto_histories','0'),(115,'backup','backup_auto_questionbank','1'),(116,'backup','backup_auto_groups','1'),(117,'backup','backup_auto_competencies','1'),(118,'backup','backup_auto_contentbankcontent','1'),(119,'backup','backup_auto_xapistate','1'),(120,'backup','backup_auto_legacyfiles','1'),(121,'restore','restore_general_users','1'),(122,'restore','restore_general_users_locked',''),(123,'restore','restore_general_enrolments','1'),(124,'restore','restore_general_enrolments_locked',''),(125,'restore','restore_general_role_assignments','1'),(126,'restore','restore_general_role_assignments_locked',''),(127,'restore','restore_general_permissions','1'),(128,'restore','restore_general_permissions_locked',''),(129,'restore','restore_general_activities','1'),(130,'restore','restore_general_activities_locked',''),(131,'restore','restore_general_blocks','1'),(132,'restore','restore_general_blocks_locked',''),(133,'restore','restore_general_filters','1'),(134,'restore','restore_general_filters_locked',''),(135,'restore','restore_general_comments','1'),(136,'restore','restore_general_comments_locked',''),(137,'restore','restore_general_badges','1'),(138,'restore','restore_general_badges_locked',''),(139,'restore','restore_general_calendarevents','1'),(140,'restore','restore_general_calendarevents_locked',''),(141,'restore','restore_general_userscompletion','1'),(142,'restore','restore_general_userscompletion_locked',''),(143,'restore','restore_general_logs','1'),(144,'restore','restore_general_logs_locked',''),(145,'restore','restore_general_histories','1'),(146,'restore','restore_general_histories_locked',''),(147,'restore','restore_general_groups','1'),(148,'restore','restore_general_groups_locked',''),(149,'restore','restore_general_competencies','1'),(150,'restore','restore_general_competencies_locked',''),(151,'restore','restore_general_contentbankcontent','1'),(152,'restore','restore_general_contentbankcontent_locked',''),(153,'restore','restore_general_xapistate','1'),(154,'restore','restore_general_xapistate_locked',''),(155,'restore','restore_general_legacyfiles','1'),(156,'restore','restore_general_legacyfiles_locked',''),(157,'restore','restore_merge_overwrite_conf','0'),(158,'restore','restore_merge_overwrite_conf_locked',''),(159,'restore','restore_merge_course_fullname','1'),(160,'restore','restore_merge_course_fullname_locked',''),(161,'restore','restore_merge_course_shortname','1'),(162,'restore','restore_merge_course_shortname_locked',''),(163,'restore','restore_merge_course_startdate','1'),(164,'restore','restore_merge_course_startdate_locked',''),(165,'restore','restore_replace_overwrite_conf','0'),(166,'restore','restore_replace_overwrite_conf_locked',''),(167,'restore','restore_replace_course_fullname','1'),(168,'restore','restore_replace_course_fullname_locked',''),(169,'restore','restore_replace_course_shortname','1'),(170,'restore','restore_replace_course_shortname_locked',''),(171,'restore','restore_replace_course_startdate','1'),(172,'restore','restore_replace_course_startdate_locked',''),(173,'restore','restore_replace_keep_roles_and_enrolments','0'),(174,'restore','restore_replace_keep_roles_and_enrolments_locked',''),(175,'restore','restore_replace_keep_groups_and_groupings','0'),(176,'restore','restore_replace_keep_groups_and_groupings_locked',''),(177,'backup','backup_async_message_users','0'),(178,'backup','backup_async_message_subject','Moodle {operation} completed successfully'),(179,'backup','backup_async_message','Your {operation} (ID: {backupid}) has completed successfully. You can access it here: <a href=\"{link}\">{link}</a>.'),(180,'analytics','modeinstruction',''),(181,'analytics','percentonline','0'),(182,'analytics','typeinstitution',''),(183,'analytics','levelinstitution',''),(184,'analytics','predictionsprocessor','\\mlbackend_php\\processor'),(185,'analytics','defaulttimesplittingsevaluation','\\core\\analytics\\time_splitting\\quarters_accum,\\core\\analytics\\time_splitting\\quarters,\\core\\analytics\\time_splitting\\single_range'),(186,'analytics','modeloutputdir',''),(187,'analytics','onlycli','1'),(188,'analytics','modeltimelimit','1200'),(189,'analytics','calclifetime','35'),(190,'core_h5p','h5pcustomcss',''),(191,'antivirus','notifyemail',''),(192,'antivirus','notifylevel','2'),(193,'antivirus','threshold','1200'),(194,'antivirus','enablequarantine','0'),(195,'antivirus','quarantinetime','2419200'),(196,'cachestore_apcu','testperformance','0'),(197,'cachestore_redis','test_server',''),(198,'cachestore_redis','test_encryption','0'),(199,'cachestore_redis','test_cafile',''),(200,'cachestore_redis','test_password',''),(201,'cachestore_redis','test_ttl','0'),(202,'question_preview','behaviour','deferredfeedback'),(203,'question_preview','correctness','1'),(204,'question_preview','marks','2'),(205,'question_preview','markdp','2'),(206,'question_preview','feedback','1'),(207,'question_preview','generalfeedback','1'),(208,'question_preview','rightanswer','1'),(209,'question_preview','history','0'),(210,'tool_task','enablerunnow','1'),(211,'adminpresets','sensiblesettings','recaptchapublickey@@none, recaptchaprivatekey@@none, googlemapkey3@@none, secretphrase@@url, cronremotepassword@@none, smtpuser@@none, smtppass@@none, proxypassword@@none, quizpassword@@quiz, allowedip@@none, blockedip@@none, dbpass@@logstore_database, messageinbound_hostpass@@none, bind_pw@@auth_cas, pass@@auth_db, bind_pw@@auth_ldap, dbpass@@enrol_database, bind_pw@@enrol_ldap, server_password@@search_solr, ssl_keypassword@@search_solr, alternateserver_password@@search_solr, alternatessl_keypassword@@search_solr, test_password@@cachestore_redis, password@@mlbackend_python, badges_badgesalt@@none, calendar_exportsalt@@none'),(212,'theme_boost','unaddableblocks','navigation,settings,course_list,section_links'),(213,'theme_boost','preset','default.scss'),(214,'theme_boost','presetfiles',''),(215,'theme_boost','backgroundimage',''),(216,'theme_boost','loginbackgroundimage',''),(217,'theme_boost','brandcolor',''),(218,'theme_boost','scsspre',''),(219,'theme_boost','scss',''),(220,'theme_classic','navbardark','0'),(221,'theme_classic','unaddableblocks',''),(222,'theme_classic','preset','default.scss'),(223,'theme_classic','presetfiles',''),(224,'theme_classic','backgroundimage',''),(225,'theme_classic','loginbackgroundimage',''),(226,'theme_classic','brandcolor',''),(227,'theme_classic','scsspre',''),(228,'theme_classic','scss',''),(229,'core_admin','logo',''),(230,'core_admin','logocompact',''),(231,'core_admin','favicon',''),(232,'core_admin','coursecolor1','#81ecec'),(233,'core_admin','coursecolor2','#74b9ff'),(234,'core_admin','coursecolor3','#a29bfe'),(235,'core_admin','coursecolor4','#dfe6e9'),(236,'core_admin','coursecolor5','#00b894'),(237,'core_admin','coursecolor6','#0984e3'),(238,'core_admin','coursecolor7','#b2bec3'),(239,'core_admin','coursecolor8','#fdcb6e'),(240,'core_admin','coursecolor9','#fd79a8'),(241,'core_admin','coursecolor10','#6c5ce7'),(242,'core_competency','pushcourseratingstouserplans','1'),(243,'antivirus_clamav','version','2023100900'),(244,'availability_completion','version','2023100900'),(245,'availability_date','version','2023100900'),(246,'availability_grade','version','2023100900'),(247,'availability_group','version','2023100900'),(248,'availability_grouping','version','2023100900'),(249,'availability_profile','version','2023100900'),(250,'qtype_calculated','version','2023100900'),(251,'qtype_calculatedmulti','version','2023100900'),(252,'qtype_calculatedsimple','version','2023100900'),(253,'qtype_ddimageortext','version','2023100900'),(254,'qtype_ddmarker','version','2023100900'),(255,'qtype_ddwtos','version','2023100900'),(256,'qtype_description','version','2023100900'),(257,'qtype_essay','version','2023100900'),(258,'qtype_gapselect','version','2023100900'),(259,'qtype_match','version','2023100900'),(260,'qtype_missingtype','version','2023100900'),(261,'qtype_multianswer','version','2023100900'),(262,'qtype_multichoice','version','2023100900'),(263,'qtype_numerical','version','2023100900'),(264,'qtype_random','version','2023100900'),(265,'qtype_randomsamatch','version','2023100900'),(266,'qtype_shortanswer','version','2023100900'),(267,'qtype_truefalse','version','2023100900'),(268,'mod_assign','version','2023100900'),(269,'mod_bigbluebuttonbn','version','2023100900'),(271,'mod_book','version','2023100900'),(272,'mod_chat','version','2023100900'),(273,'mod_choice','version','2023100900'),(274,'mod_data','version','2023100900'),(275,'mod_feedback','version','2023100900'),(277,'mod_folder','version','2023100900'),(279,'mod_forum','version','2023100901'),(280,'mod_glossary','version','2023100900'),(281,'mod_h5pactivity','version','2023100901'),(282,'mod_imscp','version','2023100900'),(284,'mod_label','version','2023100900'),(285,'mod_lesson','version','2023100900'),(286,'mod_lti','version','2023100900'),(288,'mod_lti','kid','ded9c3f42999892ce5c1'),(289,'mod_lti','privatekey','-----BEGIN PRIVATE KEY-----\nMIIEvgIBADANBgkqhkiG9w0BAQEFAASCBKgwggSkAgEAAoIBAQDaPdCYiE+K9OQk\n6O8Nt5wFM0Bz5t0G2gRpwr6uTp3yKtJVyeIVe4W0GA+wEoeXnoOJUNlXROQ99Q38\n41zNHwhB3Nu7Mozo72dXjt7pTyQLqLwV1h+deJdPAn2OblYI6ygL/i/Ah+sjmFyU\n3xlHM4Al4tvglMJtIB/v9wTWd0l23lLjUypYyEsbuHI4MNgECSkWvuEZc/n8jlMP\nlZXxKChbk//iWdG5eg4FUz5MPPFfl+6D9rMxtQMCDCs7pRBWY8nLpS9qEfgcP0Z9\nFWMF1EgI1G36Eri7jhB1fn/Dc9CpNwNtyZfPMO/mYg3gSHymSUN6PpTrKMTAikKy\nOPDGr2D3AgMBAAECggEAKg77okmyup7TUOGrIEOgR8hGxY9aTTW63/7t7H2uJrtl\n6a6MaYNykvCIJXCMvQWJZ+8y04StT9toJLJUchtm5fqARiVJzqJEkjUwdFoSIkUU\nakjnsttInatnMwnEfteC0jzcSwhmomd8gBw2rOgZ7DM6GJ/SkGE+hmpefk5i1AtN\nV+k6+2ltLJe6OTJErYKNYzYXHvbD/dDXUcYeVRPlQ3sOcMo2Smnlw957JI4KM5mm\n4C/4ykWiXyyZXMHcfA5gW8RZdGv013iqF9NN+CXFkQ3xLIE7b+KkoVZ78WmIidNZ\nBz5OGPUf4STMKFjDL4dr1CvI80goECrH/9kdXvHQYQKBgQD1FAsc8GW4elb8NpGO\n7YRZp/PKB4SfX0uIDSJeszpbcUTA31cxeDv/qHwsGf2DDfnG5GzvmK8Ll2lkej7p\ngaZfa5cAvOKQF+neIB2JxEXm+Osb+m1iAuY83K5Ix21grmO6y/PCWt0E8LYcXJo8\n9k+A4GFNVjYjTPy/XR2H7epebwKBgQDj95sEMUj7LbTU+BXxprBe8YpNkqWOAVVW\nKlnq7KURUPJArUyBbtgjkagbawSiiiGcdUeqqWRoa9US2+1IEv1Lr0sq+M0dmZsk\nffAmiItN1IhZCxHHuD+h5bEtTELhlNVAtxdGsW9YaGwRrb2psH2F4f1xwrvWBet6\nR5XPkeJp+QKBgQCloboxALd+ihAnvKl7M0LzZPL6Y0Jag4kElfvYjMCv9ElHIKpJ\nIL1L946UL6yJ2fQpW0/UThhfeSEdaxEBt0G903TmZsGoKMFCAep0pVWo2Cntar5q\nMxNvpqWTQlTFtpZoNFa1z7r4D8bEPEFxWfY5X2vjXJSSHwHiQwgmScDPuQKBgQDI\n0kYP8m7NPt1vQ0DpiSMT8IoafhYzu772Uga2KlPbpkhSa5fa6c+jvduuk58YpMCp\nOLOyhti6GEwy+eTUuk3Cz6BTMaxX6ApAomTdPSoinRikAFlgbFI6B8MGGYlNebRG\n90Oc9hAVfJ+/DyPmiWB6gbOn9JlOGBbxuIAjw+sF2QKBgE+EacwkncnNxZv5YNw+\nB2AW/EM0ERpHYtwGjjFlFxGY6E3HIa6yKJ7/Dj6DFx5i8uN8r5RQqjd2D/KnFvOg\nybrPZvhG/9Itn2LUukDkaRVJKeCRu+0fTqaykReQ/EL9451qQ3bh09ljukeybxmN\nliM0ST+Z9sPfLE8llNlw9l38\n-----END PRIVATE KEY-----\n'),(290,'mod_page','version','2023100900'),(292,'mod_quiz','version','2023100901'),(293,'mod_resource','version','2023100900'),(294,'mod_scorm','version','2023100901'),(295,'mod_survey','version','2023100900'),(297,'mod_url','version','2023100900'),(299,'mod_wiki','version','2023100900'),(301,'mod_workshop','version','2023100900'),(302,'auth_cas','version','2023100900'),(304,'auth_db','version','2023100900'),(306,'auth_email','version','2023100900'),(307,'auth_ldap','version','2023100900'),(309,'auth_lti','version','2023100901'),(310,'auth_manual','version','2023100900'),(311,'auth_mnet','version','2023100900'),(313,'auth_nologin','version','2023100900'),(314,'auth_none','version','2023100900'),(315,'auth_oauth2','version','2023100900'),(316,'auth_shibboleth','version','2023100900'),(318,'auth_webservice','version','2023100900'),(319,'calendartype_gregorian','version','2023100900'),(320,'communication_customlink','version','2023100900'),(321,'communication_matrix','version','2023100900'),(322,'customfield_checkbox','version','2023100900'),(323,'customfield_date','version','2023100900'),(324,'customfield_select','version','2023100900'),(325,'customfield_text','version','2023100900'),(326,'customfield_textarea','version','2023100900'),(327,'enrol_category','version','2023100900'),(329,'enrol_cohort','version','2023100900'),(330,'enrol_database','version','2023100900'),(332,'enrol_fee','version','2023100900'),(333,'enrol_flatfile','version','2023100900'),(335,'enrol_flatfile','map_1','manager'),(336,'enrol_flatfile','map_2','coursecreator'),(337,'enrol_flatfile','map_3','editingteacher'),(338,'enrol_flatfile','map_4','teacher'),(339,'enrol_flatfile','map_5','student'),(340,'enrol_flatfile','map_6','guest'),(341,'enrol_flatfile','map_7','user'),(342,'enrol_flatfile','map_8','frontpage'),(343,'enrol_guest','version','2023100900'),(344,'enrol_imsenterprise','version','2023100900'),(346,'enrol_ldap','version','2023100900'),(348,'enrol_lti','version','2023100900'),(350,'enrol_lti','lti_13_kid','cbe7997383dbd3c99663'),(351,'enrol_lti','lti_13_privatekey','-----BEGIN PRIVATE KEY-----\nMIIEvwIBADANBgkqhkiG9w0BAQEFAASCBKkwggSlAgEAAoIBAQD19VR7MlXYDPt3\nCcXanrSSYgFSa104TMOn4gxMI7DDHl18MIfYBj+1FO3szD9mvrTyNivQeEoGTQ09\nenZ+mlKBFzAtlUKQpC1i+ShyzBOtoktdkV8wL8L14RFrdl7WB3nbSFsuB9PKkZvp\nlWhrL27xXtNz/FjpwHgOMIZDTzgiXTAEOchgkpBBk5tm4aWGjjlym/ayrSeqFFIx\nfWmxj3lVRJW+iqJJ9buhDMHVB60NdCUl9sajQSkUWXLeZxvdUWTXt7d/g1MJ3N3a\n3LTnx4i+iPk8YYWkGmwBh3gwtwyqLM3ltm/pJcu5dgQcb8kmtwANT8oKXxPmESXx\n8lPIvwyJAgMBAAECggEAA8pS7uujtGPfMLyol0+qtkI+HLMuDERhfMfJyEWwWYaC\nraohP/lnlmJN9UAyK5E3zACrb+k7X4hNoPn1BRC32QuF2DpZqx8NTrtKr1QGDie6\nEpmn9Ot2x1z5myhNVHmuM0mUwiKzvoZfGq27nof36wjGeePgPrdkX1Vs64haImxQ\nqXAOHKi4B9TZrfpiJvtuJcK4QeoFCbF1NNJPKH84pdUWOviGG+c0rL0nk9Fu+OyO\nKjBKpFgs6ToRMbQA609ipV50W03XfkdekYKfTcukqisc1jfsKZYLLDCJk3P0k0of\nrjPMWsG6PTFj3oN2h4WGRA7CeHEUCP7++MpGSzRuiQKBgQD9dpTx+bR8efQ4fSmq\ny3aJwyDoEMwUVb+JR3kcLeCDVQ4jdxBojpQI3iilSoajNLZSr/bxyNFfr3lqKkFi\nakzk7UdL4XND0d/sbKUYSj71dJzIa72xxrXtdXwQ97jf4DRjhRXjGQaX9mpKgIOk\nwlvmCtYe5wis8L2dXXlG3/c67QKBgQD4a4Txx9eZoDPdBF0k41zmDc7E3wj8ukDD\nOIKP+XQ1tq300Q/5uXs+wImtqdQmu6dd7TDIrMm6rr7/lENK5mYoLtRQTZpKS1g+\ntr5wfDQEMPcrZYPN87ckj7CUZsuKo9c9oBIjqe4HXbP4xbJK4NhrSSd9I3mVbe1h\nBc6CKLb4jQKBgQCY9H+LytG1MG9Fy5pifGgrWHq6MLDHMLvmXyBh9fl/p8thcY+Q\nWUJSW6aRoPjA8qV4HsJaRIK9SIpvm9JbTqTanaohy4qgib2k0ieLEfsOavHWLNaL\nusu84eId5zBEwes7h2ue4VJOUCDylr1apwOIPk/a1DczDhCPL4JpV+y9PQKBgQDc\nobG7g0ALI2usmlmXj49Mi2rfEy/KNimauS/Ma0M5CXxKePt1UbUSMLKW2MShefzV\nwPmY4U1xTg44tBdoCGUmvyC2CZZE8dH4MRnGkakpJ8v+cPS1EAXSpQOxafLQuV9L\nTkWOAzhytlhHVF5bfoL4FkrKK52qh61ShHO6yipnaQKBgQCQAx267F9W612xE6Mr\nuONwYK1K8RAqWyBWif2+1u3QyDwg7dTqDuAsF80LmKRPgfVfCnYoNfDuxipGCb/1\nqM2pSuhlYeVJSym6tEzIG4aApQryhYBYiYuemw/ARzGcelOLBbvasYtXpG3AXFuv\nyX2oh9+XIPj3iTjCDxg0Yt0iqg==\n-----END PRIVATE KEY-----\n'),(352,'enrol_manual','version','2023100900'),(354,'enrol_meta','version','2023100900'),(356,'enrol_mnet','version','2023100900'),(357,'enrol_paypal','version','2023100900'),(358,'enrol_self','version','2023100900'),(360,'message_airnotifier','version','2023100900'),(362,'message','airnotifier_provider_enrol_flatfile_flatfile_enrolment_locked','0'),(363,'message','airnotifier_provider_enrol_imsenterprise_imsenterprise_enrolment_locked','0'),(364,'message','airnotifier_provider_enrol_manual_expiry_notification_locked','0'),(365,'message','airnotifier_provider_enrol_paypal_paypal_enrolment_locked','0'),(366,'message','airnotifier_provider_enrol_self_expiry_notification_locked','0'),(367,'message','airnotifier_provider_mod_assign_assign_notification_locked','0'),(368,'message','airnotifier_provider_mod_bigbluebuttonbn_recording_ready_locked','0'),(369,'message','airnotifier_provider_mod_bigbluebuttonbn_instance_updated_locked','0'),(370,'message','airnotifier_provider_mod_feedback_submission_locked','0'),(371,'message','airnotifier_provider_mod_feedback_message_locked','0'),(372,'message','airnotifier_provider_mod_forum_posts_locked','0'),(373,'message','message_provider_mod_forum_posts_enabled','email,airnotifier'),(374,'message','airnotifier_provider_mod_forum_digests_locked','0'),(375,'message','airnotifier_provider_mod_lesson_graded_essay_locked','0'),(376,'message','message_provider_mod_lesson_graded_essay_enabled','email,airnotifier'),(377,'message','airnotifier_provider_mod_quiz_submission_locked','0'),(378,'message','airnotifier_provider_mod_quiz_confirmation_locked','0'),(379,'message','message_provider_mod_quiz_confirmation_enabled','email,airnotifier'),(380,'message','airnotifier_provider_mod_quiz_attempt_overdue_locked','0'),(381,'message','message_provider_mod_quiz_attempt_overdue_enabled','email,airnotifier'),(382,'message','airnotifier_provider_mod_quiz_attempt_grading_complete_locked','0'),(383,'message','message_provider_mod_quiz_attempt_grading_complete_enabled','email,airnotifier'),(384,'message','airnotifier_provider_moodle_newlogin_locked','0'),(385,'message','message_provider_moodle_newlogin_enabled','email,airnotifier'),(386,'message','airnotifier_provider_moodle_notices_locked','0'),(387,'message','airnotifier_provider_moodle_errors_locked','0'),(388,'message','airnotifier_provider_moodle_availableupdate_locked','0'),(389,'message','airnotifier_provider_moodle_instantmessage_locked','0'),(390,'message','airnotifier_provider_moodle_backup_locked','0'),(391,'message','airnotifier_provider_moodle_courserequested_locked','0'),(392,'message','airnotifier_provider_moodle_courserequestapproved_locked','0'),(393,'message','message_provider_moodle_courserequestapproved_enabled','email,airnotifier'),(394,'message','airnotifier_provider_moodle_courserequestrejected_locked','0'),(395,'message','message_provider_moodle_courserequestrejected_enabled','email,airnotifier'),(396,'message','airnotifier_provider_moodle_coursecompleted_locked','0'),(397,'message','message_provider_moodle_coursecompleted_enabled','email,airnotifier'),(398,'message','airnotifier_provider_moodle_coursecontentupdated_locked','0'),(399,'message','message_provider_moodle_coursecontentupdated_enabled','popup,email,airnotifier'),(400,'message','airnotifier_provider_moodle_badgerecipientnotice_locked','0'),(401,'message','message_provider_moodle_badgerecipientnotice_enabled','popup,email,airnotifier'),(402,'message','airnotifier_provider_moodle_badgecreatornotice_locked','0'),(403,'message','airnotifier_provider_moodle_competencyplancomment_locked','0'),(404,'message','airnotifier_provider_moodle_competencyusercompcomment_locked','0'),(405,'message','airnotifier_provider_moodle_insights_locked','0'),(406,'message','message_provider_moodle_insights_enabled','popup,email,airnotifier'),(407,'message','airnotifier_provider_moodle_messagecontactrequests_locked','0'),(408,'message','message_provider_moodle_messagecontactrequests_enabled','email,airnotifier'),(409,'message','airnotifier_provider_moodle_asyncbackupnotification_locked','0'),(410,'message','airnotifier_provider_moodle_gradenotifications_locked','0'),(411,'message','airnotifier_provider_moodle_infected_locked','0'),(412,'message','airnotifier_provider_moodle_reportbuilderschedule_locked','0'),(413,'message_email','version','2023100900'),(415,'message','email_provider_enrol_flatfile_flatfile_enrolment_locked','0'),(416,'message','message_provider_enrol_flatfile_flatfile_enrolment_enabled','email'),(417,'message','email_provider_enrol_imsenterprise_imsenterprise_enrolment_locked','0'),(418,'message','message_provider_enrol_imsenterprise_imsenterprise_enrolment_enabled','email'),(419,'message','email_provider_enrol_manual_expiry_notification_locked','0'),(420,'message','message_provider_enrol_manual_expiry_notification_enabled','email'),(421,'message','email_provider_enrol_paypal_paypal_enrolment_locked','0'),(422,'message','message_provider_enrol_paypal_paypal_enrolment_enabled','email'),(423,'message','email_provider_enrol_self_expiry_notification_locked','0'),(424,'message','message_provider_enrol_self_expiry_notification_enabled','email'),(425,'message','email_provider_mod_assign_assign_notification_locked','0'),(426,'message','message_provider_mod_assign_assign_notification_enabled','email'),(427,'message','email_provider_mod_bigbluebuttonbn_recording_ready_locked','0'),(428,'message','message_provider_mod_bigbluebuttonbn_recording_ready_enabled','email'),(429,'message','email_provider_mod_bigbluebuttonbn_instance_updated_locked','0'),(430,'message','message_provider_mod_bigbluebuttonbn_instance_updated_enabled','email'),(431,'message','email_provider_mod_feedback_submission_locked','0'),(432,'message','message_provider_mod_feedback_submission_enabled','email'),(433,'message','email_provider_mod_feedback_message_locked','0'),(434,'message','message_provider_mod_feedback_message_enabled','email'),(435,'message','email_provider_mod_forum_posts_locked','0'),(436,'message','email_provider_mod_forum_digests_locked','0'),(437,'message','message_provider_mod_forum_digests_enabled','email'),(438,'message','email_provider_mod_lesson_graded_essay_locked','0'),(439,'message','email_provider_mod_quiz_submission_locked','0'),(440,'message','message_provider_mod_quiz_submission_enabled','email'),(441,'message','email_provider_mod_quiz_confirmation_locked','0'),(442,'message','email_provider_mod_quiz_attempt_overdue_locked','0'),(443,'message','email_provider_mod_quiz_attempt_grading_complete_locked','0'),(444,'message','email_provider_moodle_newlogin_locked','0'),(445,'message','email_provider_moodle_notices_locked','0'),(446,'message','message_provider_moodle_notices_enabled','email'),(447,'message','email_provider_moodle_errors_locked','0'),(448,'message','message_provider_moodle_errors_enabled','email'),(449,'message','email_provider_moodle_availableupdate_locked','0'),(450,'message','message_provider_moodle_availableupdate_enabled','email'),(451,'message','email_provider_moodle_instantmessage_locked','0'),(452,'message','message_provider_moodle_instantmessage_enabled','popup,email'),(453,'message','email_provider_moodle_backup_locked','0'),(454,'message','message_provider_moodle_backup_enabled','email'),(455,'message','email_provider_moodle_courserequested_locked','0'),(456,'message','message_provider_moodle_courserequested_enabled','email'),(457,'message','email_provider_moodle_courserequestapproved_locked','0'),(458,'message','email_provider_moodle_courserequestrejected_locked','0'),(459,'message','email_provider_moodle_coursecompleted_locked','0'),(460,'message','email_provider_moodle_coursecontentupdated_locked','0'),(461,'message','email_provider_moodle_badgerecipientnotice_locked','0'),(462,'message','email_provider_moodle_badgecreatornotice_locked','0'),(463,'message','message_provider_moodle_badgecreatornotice_enabled','email'),(464,'message','email_provider_moodle_competencyplancomment_locked','0'),(465,'message','message_provider_moodle_competencyplancomment_enabled','email'),(466,'message','email_provider_moodle_competencyusercompcomment_locked','0'),(467,'message','message_provider_moodle_competencyusercompcomment_enabled','email'),(468,'message','email_provider_moodle_insights_locked','0'),(469,'message','email_provider_moodle_messagecontactrequests_locked','0'),(470,'message','email_provider_moodle_asyncbackupnotification_locked','0'),(471,'message','message_provider_moodle_asyncbackupnotification_enabled','popup,email'),(472,'message','email_provider_moodle_gradenotifications_locked','0'),(473,'message','message_provider_moodle_gradenotifications_enabled','popup,email'),(474,'message','email_provider_moodle_infected_locked','0'),(475,'message','message_provider_moodle_infected_enabled','email'),(476,'message','email_provider_moodle_reportbuilderschedule_locked','1'),(477,'message','message_provider_moodle_reportbuilderschedule_enabled','email'),(478,'message_popup','version','2023100900'),(480,'message','popup_provider_enrol_flatfile_flatfile_enrolment_locked','0'),(481,'message','popup_provider_enrol_imsenterprise_imsenterprise_enrolment_locked','0'),(482,'message','popup_provider_enrol_manual_expiry_notification_locked','0'),(483,'message','popup_provider_enrol_paypal_paypal_enrolment_locked','0'),(484,'message','popup_provider_enrol_self_expiry_notification_locked','0'),(485,'message','popup_provider_mod_assign_assign_notification_locked','0'),(486,'message','popup_provider_mod_bigbluebuttonbn_recording_ready_locked','0'),(487,'message','popup_provider_mod_bigbluebuttonbn_instance_updated_locked','0'),(488,'message','popup_provider_mod_feedback_submission_locked','0'),(489,'message','popup_provider_mod_feedback_message_locked','0'),(490,'message','popup_provider_mod_forum_posts_locked','0'),(491,'message','popup_provider_mod_forum_digests_locked','0'),(492,'message','popup_provider_mod_lesson_graded_essay_locked','0'),(493,'message','popup_provider_mod_quiz_submission_locked','0'),(494,'message','popup_provider_mod_quiz_confirmation_locked','0'),(495,'message','popup_provider_mod_quiz_attempt_overdue_locked','0'),(496,'message','popup_provider_mod_quiz_attempt_grading_complete_locked','0'),(497,'message','popup_provider_moodle_newlogin_locked','0'),(498,'message','popup_provider_moodle_notices_locked','0'),(499,'message','popup_provider_moodle_errors_locked','0'),(500,'message','popup_provider_moodle_availableupdate_locked','0'),(501,'message','popup_provider_moodle_instantmessage_locked','0'),(502,'message','popup_provider_moodle_backup_locked','0'),(503,'message','popup_provider_moodle_courserequested_locked','0'),(504,'message','popup_provider_moodle_courserequestapproved_locked','0'),(505,'message','popup_provider_moodle_courserequestrejected_locked','0'),(506,'message','popup_provider_moodle_coursecompleted_locked','0'),(507,'message','popup_provider_moodle_coursecontentupdated_locked','0'),(508,'message','popup_provider_moodle_badgerecipientnotice_locked','0'),(509,'message','popup_provider_moodle_badgecreatornotice_locked','0'),(510,'message','popup_provider_moodle_competencyplancomment_locked','0'),(511,'message','popup_provider_moodle_competencyusercompcomment_locked','0'),(512,'message','popup_provider_moodle_insights_locked','0'),(513,'message','popup_provider_moodle_messagecontactrequests_locked','0'),(514,'message','popup_provider_moodle_asyncbackupnotification_locked','0'),(515,'message','popup_provider_moodle_gradenotifications_locked','0'),(516,'message','popup_provider_moodle_infected_locked','0'),(517,'message','popup_provider_moodle_reportbuilderschedule_locked','0'),(518,'block_accessreview','version','2023100900'),(519,'block_activity_modules','version','2023100900'),(520,'block_activity_results','version','2023100900'),(521,'block_admin_bookmarks','version','2023100900'),(522,'block_badges','version','2023100900'),(523,'block_blog_menu','version','2023100900'),(524,'block_blog_recent','version','2023100900'),(525,'block_blog_tags','version','2023100900'),(526,'block_calendar_month','version','2023100900'),(527,'block_calendar_upcoming','version','2023100900'),(528,'block_comments','version','2023100900'),(529,'block_completionstatus','version','2023100900'),(530,'block_course_list','version','2023100900'),(531,'block_course_summary','version','2023100900'),(533,'block_feedback','version','2023100900'),(535,'block_globalsearch','version','2023100900'),(536,'block_glossary_random','version','2023100900'),(537,'block_html','version','2023100900'),(538,'block_login','version','2023100900'),(539,'block_lp','version','2023100900'),(540,'block_mentees','version','2023100900'),(541,'block_mnet_hosts','version','2023100900'),(542,'block_myoverview','version','2023100900'),(543,'block_myprofile','version','2023100900'),(544,'block_navigation','version','2023100900'),(545,'block_news_items','version','2023100900'),(546,'block_online_users','version','2023100900'),(547,'block_private_files','version','2023100900'),(548,'block_recent_activity','version','2023100900'),(549,'block_recentlyaccessedcourses','version','2023100900'),(551,'block_recentlyaccesseditems','version','2023100900'),(552,'block_rss_client','version','2023100900'),(554,'block_search_forums','version','2023100900'),(555,'block_section_links','version','2023100900'),(556,'block_selfcompletion','version','2023100900'),(558,'block_settings','version','2023100900'),(559,'block_site_main_menu','version','2023100900'),(560,'block_social_activities','version','2023100900'),(561,'block_starredcourses','version','2023100900'),(562,'block_tag_flickr','version','2023100900'),(563,'block_tag_youtube','version','2023100900'),(565,'block_tags','version','2023100900'),(566,'block_timeline','version','2023100900'),(568,'media_html5audio','version','2023100900'),(569,'media_html5video','version','2023100900'),(570,'media_videojs','version','2023100900'),(571,'media_vimeo','version','2023100900'),(572,'media_youtube','version','2023100900'),(573,'filter_activitynames','version','2023100900'),(575,'filter_algebra','version','2023100900'),(576,'filter_codehighlighter','version','2023100900'),(577,'filter_data','version','2023100900'),(579,'filter_displayh5p','version','2023100900'),(581,'filter_emailprotect','version','2023100900'),(582,'filter_emoticon','version','2023100900'),(584,'filter_glossary','version','2023100900'),(586,'filter_mathjaxloader','version','2023100900'),(588,'filter_mediaplugin','version','2023100900'),(590,'filter_multilang','version','2023100900'),(591,'filter_tex','version','2023100900'),(593,'filter_tidy','version','2023100900'),(594,'filter_urltolink','version','2023100900'),(596,'editor_atto','version','2023100900'),(597,'editor_textarea','version','2023100900'),(598,'editor_tiny','version','2023100900'),(600,'format_singleactivity','version','2023100900'),(601,'format_social','version','2023100900'),(602,'format_topics','version','2023100900'),(603,'format_weeks','version','2023100900'),(604,'dataformat_csv','version','2023100900'),(605,'dataformat_excel','version','2023100900'),(606,'dataformat_html','version','2023100900'),(607,'dataformat_json','version','2023100900'),(608,'dataformat_ods','version','2023100900'),(609,'dataformat_pdf','version','2023100900'),(610,'profilefield_checkbox','version','2023100900'),(611,'profilefield_datetime','version','2023100900'),(612,'profilefield_menu','version','2023100900'),(613,'profilefield_social','version','2023100900'),(614,'profilefield_text','version','2023100900'),(615,'profilefield_textarea','version','2023100900'),(616,'report_backups','version','2023100900'),(617,'report_competency','version','2023100900'),(618,'report_completion','version','2023100900'),(620,'report_configlog','version','2023100900'),(621,'report_courseoverview','version','2023100900'),(622,'report_eventlist','version','2023100900'),(623,'report_infectedfiles','version','2023100900'),(624,'report_insights','version','2023100900'),(625,'report_log','version','2023100900'),(627,'report_loglive','version','2023100900'),(628,'report_outline','version','2023100900'),(630,'report_participation','version','2023100900'),(632,'report_performance','version','2023100900'),(633,'report_progress','version','2023100900'),(635,'report_questioninstances','version','2023100900'),(636,'report_security','version','2023100900'),(637,'report_stats','version','2023100900'),(639,'report_status','version','2023100900'),(640,'report_usersessions','version','2023100900'),(641,'gradeexport_ods','version','2023100900'),(642,'gradeexport_txt','version','2023100900'),(643,'gradeexport_xls','version','2023100900'),(644,'gradeexport_xml','version','2023100900'),(645,'gradeimport_csv','version','2023100900'),(646,'gradeimport_direct','version','2023100900'),(647,'gradeimport_xml','version','2023100900'),(648,'gradereport_grader','version','2023100900'),(649,'gradereport_history','version','2023100900'),(650,'gradereport_outcomes','version','2023100900'),(651,'gradereport_overview','version','2023100900'),(652,'gradereport_singleview','version','2023100900'),(653,'gradereport_summary','version','2023100900'),(654,'gradereport_user','version','2023100900'),(655,'gradingform_guide','version','2023100900'),(656,'gradingform_rubric','version','2023100900'),(657,'mlbackend_php','version','2023100900'),(658,'mlbackend_python','version','2023100900'),(659,'mnetservice_enrol','version','2023100900'),(660,'webservice_rest','version','2023100900'),(661,'webservice_soap','version','2023100900'),(662,'repository_areafiles','version','2023100900'),(664,'areafiles','enablecourseinstances','0'),(665,'areafiles','enableuserinstances','0'),(666,'repository_contentbank','version','2023100900'),(668,'contentbank','enablecourseinstances','0'),(669,'contentbank','enableuserinstances','0'),(670,'repository_coursefiles','version','2023100900'),(671,'repository_dropbox','version','2023100900'),(672,'repository_equella','version','2023100900'),(673,'repository_filesystem','version','2023100900'),(674,'repository_flickr','version','2023100900'),(675,'repository_flickr_public','version','2023100900'),(676,'repository_googledocs','version','2023100900'),(677,'repository_local','version','2023100900'),(679,'local','enablecourseinstances','0'),(680,'local','enableuserinstances','0'),(681,'repository_merlot','version','2023100900'),(682,'repository_nextcloud','version','2023100900'),(683,'repository_onedrive','version','2023100900'),(684,'repository_recent','version','2023100900'),(686,'recent','enablecourseinstances','0'),(687,'recent','enableuserinstances','0'),(688,'repository_s3','version','2023100900'),(689,'repository_upload','version','2023100900'),(691,'upload','enablecourseinstances','0'),(692,'upload','enableuserinstances','0'),(693,'repository_url','version','2023100900'),(695,'url','enablecourseinstances','0'),(696,'url','enableuserinstances','0'),(697,'repository_user','version','2023100900'),(699,'user','enablecourseinstances','0'),(700,'user','enableuserinstances','0'),(701,'repository_webdav','version','2023100900'),(702,'repository_wikimedia','version','2023100900'),(704,'wikimedia','enablecourseinstances','0'),(705,'wikimedia','enableuserinstances','0'),(706,'repository_youtube','version','2023100900'),(708,'portfolio_download','version','2023100900'),(709,'portfolio_flickr','version','2023100900'),(710,'portfolio_googledocs','version','2023100900'),(711,'portfolio_mahara','version','2023100900'),(712,'search_simpledb','version','2023100900'),(714,'search_solr','version','2023100900'),(715,'qbank_bulkmove','version','2023100900'),(716,'qbank_columnsortorder','version','2023100900'),(717,'qbank_comment','version','2023100900'),(718,'qbank_customfields','version','2023100900'),(719,'qbank_deletequestion','version','2023100900'),(720,'qbank_editquestion','version','2023100900'),(721,'qbank_exportquestions','version','2023100900'),(722,'qbank_exporttoxml','version','2023100900'),(723,'qbank_history','version','2023100900'),(724,'qbank_importquestions','version','2023100900'),(725,'qbank_managecategories','version','2023100900'),(726,'qbank_previewquestion','version','2023100900'),(727,'qbank_statistics','version','2023100900'),(728,'qbank_tagquestion','version','2023100900'),(729,'qbank_usage','version','2023100900'),(730,'qbank_viewcreator','version','2023100900'),(731,'qbank_viewquestionname','version','2023100900'),(732,'qbank_viewquestiontext','version','2023100900'),(733,'qbank_viewquestiontype','version','2023100900'),(734,'qbehaviour_adaptive','version','2023100900'),(735,'qbehaviour_adaptivenopenalty','version','2023100900'),(736,'qbehaviour_deferredcbm','version','2023100900'),(737,'qbehaviour_deferredfeedback','version','2023100900'),(738,'qbehaviour_immediatecbm','version','2023100900'),(739,'qbehaviour_immediatefeedback','version','2023100900'),(740,'qbehaviour_informationitem','version','2023100900'),(741,'qbehaviour_interactive','version','2023100900'),(742,'qbehaviour_interactivecountback','version','2023100900'),(743,'qbehaviour_manualgraded','version','2023100900'),(745,'question','disabledbehaviours','manualgraded'),(746,'qbehaviour_missing','version','2023100900'),(747,'qformat_aiken','version','2023100900'),(748,'qformat_blackboard_six','version','2023100900'),(749,'qformat_gift','version','2023100900'),(750,'qformat_missingword','version','2023100900'),(751,'qformat_multianswer','version','2023100900'),(752,'qformat_xhtml','version','2023100900'),(753,'qformat_xml','version','2023100900'),(754,'tool_admin_presets','version','2023100900'),(755,'tool_analytics','version','2023100900'),(756,'tool_availabilityconditions','version','2023100900'),(757,'tool_behat','version','2023100900'),(758,'tool_brickfield','version','2023100900'),(760,'tool_capability','version','2023100900'),(761,'tool_cohortroles','version','2023100900'),(762,'tool_componentlibrary','version','2023100900'),(763,'tool_customlang','version','2023100900'),(765,'tool_dataprivacy','version','2023100900'),(766,'message','airnotifier_provider_tool_dataprivacy_contactdataprotectionofficer_locked','0'),(767,'message','email_provider_tool_dataprivacy_contactdataprotectionofficer_locked','0'),(768,'message','popup_provider_tool_dataprivacy_contactdataprotectionofficer_locked','0'),(769,'message','message_provider_tool_dataprivacy_contactdataprotectionofficer_enabled','email,popup'),(770,'message','airnotifier_provider_tool_dataprivacy_datarequestprocessingresults_locked','0'),(771,'message','email_provider_tool_dataprivacy_datarequestprocessingresults_locked','0'),(772,'message','popup_provider_tool_dataprivacy_datarequestprocessingresults_locked','0'),(773,'message','message_provider_tool_dataprivacy_datarequestprocessingresults_enabled','email,popup'),(774,'message','airnotifier_provider_tool_dataprivacy_notifyexceptions_locked','0'),(775,'message','email_provider_tool_dataprivacy_notifyexceptions_locked','0'),(776,'message','popup_provider_tool_dataprivacy_notifyexceptions_locked','0'),(777,'message','message_provider_tool_dataprivacy_notifyexceptions_enabled','email'),(778,'tool_dbtransfer','version','2023100900'),(779,'tool_filetypes','version','2023100900'),(780,'tool_generator','version','2023100900'),(781,'tool_httpsreplace','version','2023100900'),(782,'tool_innodb','version','2023100900'),(783,'tool_installaddon','version','2023100900'),(784,'tool_langimport','version','2023100900'),(785,'tool_licensemanager','version','2023100900'),(786,'tool_log','version','2023100900'),(788,'tool_log','enabled_stores','logstore_standard'),(789,'tool_lp','version','2023100900'),(790,'tool_lpimportcsv','version','2023100900'),(791,'tool_lpmigrate','version','2023100900'),(792,'tool_messageinbound','version','2023100900'),(793,'message','airnotifier_provider_tool_messageinbound_invalidrecipienthandler_locked','0'),(794,'message','email_provider_tool_messageinbound_invalidrecipienthandler_locked','0'),(795,'message','popup_provider_tool_messageinbound_invalidrecipienthandler_locked','0'),(796,'message','message_provider_tool_messageinbound_invalidrecipienthandler_enabled','email'),(797,'message','airnotifier_provider_tool_messageinbound_messageprocessingerror_locked','0'),(798,'message','email_provider_tool_messageinbound_messageprocessingerror_locked','0'),(799,'message','popup_provider_tool_messageinbound_messageprocessingerror_locked','0'),(800,'message','message_provider_tool_messageinbound_messageprocessingerror_enabled','email'),(801,'message','airnotifier_provider_tool_messageinbound_messageprocessingsuccess_locked','0'),(802,'message','email_provider_tool_messageinbound_messageprocessingsuccess_locked','0'),(803,'message','popup_provider_tool_messageinbound_messageprocessingsuccess_locked','0'),(804,'message','message_provider_tool_messageinbound_messageprocessingsuccess_enabled','email'),(805,'tool_mfa','version','2023100900'),(806,'tool_mobile','version','2023100900'),(807,'tool_monitor','version','2023100900'),(808,'message','airnotifier_provider_tool_monitor_notification_locked','0'),(809,'message','email_provider_tool_monitor_notification_locked','0'),(810,'message','popup_provider_tool_monitor_notification_locked','0'),(811,'message','message_provider_tool_monitor_notification_enabled','email'),(812,'tool_moodlenet','version','2023100900'),(814,'tool_multilangupgrade','version','2023100900'),(815,'tool_oauth2','version','2023100900'),(816,'tool_phpunit','version','2023100900'),(817,'tool_policy','version','2023100900'),(818,'tool_profiling','version','2023100900'),(819,'tool_recyclebin','version','2023100900'),(820,'tool_replace','version','2023100900'),(821,'tool_spamcleaner','version','2023100900'),(822,'tool_task','version','2023100900'),(823,'tool_templatelibrary','version','2023100900'),(824,'tool_unsuproles','version','2023100900'),(826,'tool_uploadcourse','version','2023100900'),(827,'tool_uploaduser','version','2023100900'),(828,'tool_usertours','version','2023100900'),(830,'tool_xmldb','version','2023100900'),(831,'cachestore_apcu','version','2023100900'),(832,'cachestore_file','version','2023100900'),(833,'cachestore_redis','version','2023100900'),(834,'cachestore_session','version','2023100900'),(835,'cachestore_static','version','2023100900'),(836,'cachelock_file','version','2023100900'),(837,'fileconverter_googledrive','version','2023100900'),(838,'fileconverter_unoconv','version','2023100900'),(840,'contenttype_h5p','version','2023100900'),(841,'theme_boost','version','2023100900'),(842,'theme_classic','version','2023100900'),(843,'local_asystgrade','version','2024032201'),(844,'h5plib_v126','version','2023100900'),(845,'paygw_paypal','version','2023100900'),(847,'assignsubmission_comments','version','2023100900'),(849,'assignsubmission_file','sortorder','1'),(850,'assignsubmission_comments','sortorder','2'),(851,'assignsubmission_onlinetext','sortorder','0'),(852,'assignsubmission_file','version','2023100900'),(853,'assignsubmission_onlinetext','version','2023100900'),(855,'assignfeedback_comments','version','2023100900'),(857,'assignfeedback_comments','sortorder','0'),(858,'assignfeedback_editpdf','sortorder','1'),(859,'assignfeedback_file','sortorder','3'),(860,'assignfeedback_offline','sortorder','2'),(861,'assignfeedback_editpdf','version','2023100900'),(863,'assignfeedback_file','version','2023100900'),(865,'assignfeedback_offline','version','2023100900'),(866,'booktool_exportimscp','version','2023100900'),(867,'booktool_importhtml','version','2023100900'),(868,'booktool_print','version','2023100900'),(869,'datafield_checkbox','version','2023100900'),(870,'datafield_date','version','2023100900'),(871,'datafield_file','version','2023100900'),(872,'datafield_latlong','version','2023100900'),(873,'datafield_menu','version','2023100900'),(874,'datafield_multimenu','version','2023100900'),(875,'datafield_number','version','2023100900'),(876,'datafield_picture','version','2023100900'),(877,'datafield_radiobutton','version','2023100900'),(878,'datafield_text','version','2023100900'),(879,'datafield_textarea','version','2023100900'),(880,'datafield_url','version','2023100900'),(881,'datapreset_imagegallery','version','2023100900'),(882,'datapreset_journal','version','2023100900'),(883,'datapreset_proposals','version','2023100900'),(884,'datapreset_resources','version','2023100900'),(885,'forumreport_summary','version','2023100900'),(886,'ltiservice_basicoutcomes','version','2023100900'),(887,'ltiservice_gradebookservices','version','2023100900'),(888,'ltiservice_memberships','version','2023100900'),(889,'ltiservice_profile','version','2023100900'),(890,'ltiservice_toolproxy','version','2023100900'),(891,'ltiservice_toolsettings','version','2023100900'),(892,'quiz_grading','version','2023100900'),(894,'quiz_overview','version','2023100900'),(896,'quiz_responses','version','2023100900'),(898,'quiz_statistics','version','2023100900'),(900,'quizaccess_delaybetweenattempts','version','2023100900'),(901,'quizaccess_ipaddress','version','2023100900'),(902,'quizaccess_numattempts','version','2023100900'),(903,'quizaccess_offlineattempts','version','2023100900'),(904,'quizaccess_openclosedate','version','2023100900'),(905,'quizaccess_password','version','2023100900'),(906,'quizaccess_seb','version','2023100900'),(908,'quizaccess_securewindow','version','2023100900'),(909,'quizaccess_timelimit','version','2023100900'),(910,'scormreport_basic','version','2023100900'),(911,'scormreport_graphs','version','2023100900'),(912,'scormreport_interactions','version','2023100900'),(913,'scormreport_objectives','version','2023100900'),(914,'workshopform_accumulative','version','2023100900'),(916,'workshopform_comments','version','2023100900'),(918,'workshopform_numerrors','version','2023100900'),(920,'workshopform_rubric','version','2023100900'),(922,'workshopallocation_manual','version','2023100900'),(923,'workshopallocation_random','version','2023100900'),(924,'workshopallocation_scheduled','version','2023100900'),(925,'workshopeval_best','version','2023100900'),(926,'atto_accessibilitychecker','version','2023100900'),(927,'atto_accessibilityhelper','version','2023100900'),(928,'atto_align','version','2023100900'),(929,'atto_backcolor','version','2023100900'),(930,'atto_bold','version','2023100900'),(931,'atto_charmap','version','2023100900'),(932,'atto_clear','version','2023100900'),(933,'atto_collapse','version','2023100900'),(934,'atto_emojipicker','version','2023100900'),(935,'atto_emoticon','version','2023100900'),(936,'atto_equation','version','2023100900'),(937,'atto_fontcolor','version','2023100900'),(938,'atto_h5p','version','2023100900'),(939,'atto_html','version','2023100900'),(940,'atto_image','version','2023100900'),(941,'atto_indent','version','2023100900'),(942,'atto_italic','version','2023100900'),(943,'atto_link','version','2023100900'),(944,'atto_managefiles','version','2023100900'),(945,'atto_media','version','2023100900'),(946,'atto_noautolink','version','2023100900'),(947,'atto_orderedlist','version','2023100900'),(948,'atto_recordrtc','version','2023100900'),(949,'atto_rtl','version','2023100900'),(950,'atto_strike','version','2023100900'),(951,'atto_subscript','version','2023100900'),(952,'atto_superscript','version','2023100900'),(953,'atto_table','version','2023100900'),(954,'atto_title','version','2023100900'),(955,'atto_underline','version','2023100900'),(956,'atto_undo','version','2023100900'),(957,'atto_unorderedlist','version','2023100900'),(958,'tiny_accessibilitychecker','version','2023100900'),(959,'tiny_autosave','version','2023100901'),(960,'tiny_equation','version','2023100900'),(961,'tiny_h5p','version','2023100900'),(962,'tiny_html','version','2023100900'),(963,'tiny_link','version','2023100900'),(964,'tiny_media','version','2023100900'),(965,'tiny_noautolink','version','2023100900'),(967,'tiny_noautolink','disabled','1'),(968,'tiny_premium','version','2023100900'),(969,'tiny_recordrtc','version','2023100900'),(970,'logstore_database','version','2023100900'),(971,'logstore_standard','version','2023100900'),(972,'factor_admin','version','2023100900'),(973,'factor_auth','version','2023100900'),(974,'factor_capability','version','2023100900'),(975,'factor_cohort','version','2023100900'),(976,'factor_email','version','2023100900'),(977,'factor_grace','version','2023100900'),(978,'factor_iprange','version','2023100900'),(979,'factor_nosetup','version','2023100900'),(980,'factor_role','version','2023100900'),(981,'factor_token','version','2023100900'),(982,'factor_totp','version','2023100900'),(983,'factor_webauthn','version','2023100900'),(984,'tool_moodlenet','enablemoodlenet','1'),(985,'tool_dataprivacy','contactdataprotectionofficer','0'),(986,'tool_dataprivacy','automaticdataexportapproval','0'),(987,'tool_dataprivacy','automaticdatadeletionapproval','0'),(988,'tool_dataprivacy','automaticdeletionrequests','1'),(989,'tool_dataprivacy','privacyrequestexpiry','604800'),(990,'tool_dataprivacy','requireallenddatesforuserdeletion','1'),(991,'tool_dataprivacy','showdataretentionsummary','1'),(992,'tool_dataprivacy','allowfiltering','0'),(993,'tool_log','exportlog','1'),(994,'message_airnotifier','encryptnotifications','0'),(995,'message_airnotifier','encryptprocessing','0'),(996,'assign','feedback_plugin_for_gradebook','assignfeedback_comments'),(997,'assign','showrecentsubmissions','0'),(998,'assign','submissionreceipts','1'),(999,'assign','submissionstatement','This submission is my own work, except where I have acknowledged the use of the works of other people.'),(1000,'assign','submissionstatementteamsubmission','This submission is the work of my group, except where we have acknowledged the use of the works of other people.'),(1001,'assign','submissionstatementteamsubmissionallsubmit','This submission is my own work as a group member, except where I have acknowledged the use of the works of other people.'),(1002,'assign','maxperpage','-1'),(1003,'assign','alwaysshowdescription','1'),(1004,'assign','alwaysshowdescription_adv',''),(1005,'assign','alwaysshowdescription_locked',''),(1006,'assign','allowsubmissionsfromdate','0'),(1007,'assign','allowsubmissionsfromdate_enabled','1'),(1008,'assign','allowsubmissionsfromdate_adv',''),(1009,'assign','duedate','604800'),(1010,'assign','duedate_enabled','1'),(1011,'assign','duedate_adv',''),(1012,'assign','cutoffdate','1209600'),(1013,'assign','cutoffdate_enabled',''),(1014,'assign','cutoffdate_adv',''),(1015,'assign','enabletimelimit','0'),(1016,'assign','gradingduedate','1209600'),(1017,'assign','gradingduedate_enabled','1'),(1018,'assign','gradingduedate_adv',''),(1019,'assign','submissiondrafts','0'),(1020,'assign','submissiondrafts_adv',''),(1021,'assign','submissiondrafts_locked',''),(1022,'assign','requiresubmissionstatement','0'),(1023,'assign','requiresubmissionstatement_adv',''),(1024,'assign','requiresubmissionstatement_locked',''),(1025,'assign','attemptreopenmethod','none'),(1026,'assign','attemptreopenmethod_adv',''),(1027,'assign','attemptreopenmethod_locked',''),(1028,'assign','maxattempts','-1'),(1029,'assign','maxattempts_adv',''),(1030,'assign','maxattempts_locked',''),(1031,'assign','teamsubmission','0'),(1032,'assign','teamsubmission_adv',''),(1033,'assign','teamsubmission_locked',''),(1034,'assign','preventsubmissionnotingroup','0'),(1035,'assign','preventsubmissionnotingroup_adv',''),(1036,'assign','preventsubmissionnotingroup_locked',''),(1037,'assign','requireallteammemberssubmit','0'),(1038,'assign','requireallteammemberssubmit_adv',''),(1039,'assign','requireallteammemberssubmit_locked',''),(1040,'assign','teamsubmissiongroupingid',''),(1041,'assign','teamsubmissiongroupingid_adv',''),(1042,'assign','sendnotifications','0'),(1043,'assign','sendnotifications_adv',''),(1044,'assign','sendnotifications_locked',''),(1045,'assign','sendlatenotifications','0'),(1046,'assign','sendlatenotifications_adv',''),(1047,'assign','sendlatenotifications_locked',''),(1048,'assign','sendstudentnotifications','1'),(1049,'assign','sendstudentnotifications_adv',''),(1050,'assign','sendstudentnotifications_locked',''),(1051,'assign','blindmarking','0'),(1052,'assign','blindmarking_adv',''),(1053,'assign','blindmarking_locked',''),(1054,'assign','hidegrader','0'),(1055,'assign','hidegrader_adv',''),(1056,'assign','hidegrader_locked',''),(1057,'assign','markingworkflow','0'),(1058,'assign','markingworkflow_adv',''),(1059,'assign','markingworkflow_locked',''),(1060,'assign','markingallocation','0'),(1061,'assign','markingallocation_adv',''),(1062,'assign','markingallocation_locked',''),(1063,'assignsubmission_file','default','1'),(1064,'assignsubmission_file','maxfiles','20'),(1065,'assignsubmission_file','filetypes',''),(1066,'assignsubmission_file','maxbytes','0'),(1067,'assignsubmission_onlinetext','default','0'),(1068,'assignfeedback_comments','default','1'),(1069,'assignfeedback_comments','inline','0'),(1070,'assignfeedback_comments','inline_adv',''),(1071,'assignfeedback_comments','inline_locked',''),(1072,'assignfeedback_editpdf','default','1'),(1073,'assignfeedback_editpdf','stamps',''),(1074,'assignfeedback_file','default','0'),(1075,'assignfeedback_offline','default','0'),(1076,'mod_bigbluebuttonbn','presentationdefault',''),(1077,'book','numberingoptions','0,1,2,3'),(1078,'book','numbering','1'),(1079,'resource','framesize','130'),(1080,'resource','displayoptions','0,1,4,5,6'),(1081,'resource','printintro','1'),(1082,'resource','display','0'),(1083,'resource','showsize','0'),(1084,'resource','showtype','1'),(1085,'resource','showdate','0'),(1086,'resource','popupwidth','620'),(1087,'resource','popupheight','450'),(1088,'resource','filterfiles','0'),(1089,'folder','showexpanded','1'),(1090,'folder','maxsizetodownload','0'),(1091,'mod_h5pactivity','enablesavestate','1'),(1092,'mod_h5pactivity','savestatefreq','60'),(1093,'imscp','keepold','1'),(1094,'imscp','keepold_adv',''),(1095,'mod_lesson','mediafile',''),(1096,'mod_lesson','mediafile_adv','1'),(1097,'mod_lesson','mediawidth','640'),(1098,'mod_lesson','mediaheight','480'),(1099,'mod_lesson','mediaclose','0'),(1100,'mod_lesson','progressbar','0'),(1101,'mod_lesson','progressbar_adv',''),(1102,'mod_lesson','ongoing','0'),(1103,'mod_lesson','ongoing_adv','1'),(1104,'mod_lesson','displayleftmenu','0'),(1105,'mod_lesson','displayleftmenu_adv',''),(1106,'mod_lesson','displayleftif','0'),(1107,'mod_lesson','displayleftif_adv','1'),(1108,'mod_lesson','slideshow','0'),(1109,'mod_lesson','slideshow_adv','1'),(1110,'mod_lesson','slideshowwidth','640'),(1111,'mod_lesson','slideshowheight','480'),(1112,'mod_lesson','slideshowbgcolor','#FFFFFF'),(1113,'mod_lesson','maxanswers','5'),(1114,'mod_lesson','maxanswers_adv','1'),(1115,'mod_lesson','defaultfeedback','0'),(1116,'mod_lesson','defaultfeedback_adv','1'),(1117,'mod_lesson','activitylink',''),(1118,'mod_lesson','activitylink_adv','1'),(1119,'mod_lesson','timelimit','0'),(1120,'mod_lesson','timelimit_adv',''),(1121,'mod_lesson','password','0'),(1122,'mod_lesson','password_adv','1'),(1123,'mod_lesson','modattempts','0'),(1124,'mod_lesson','modattempts_adv',''),(1125,'mod_lesson','displayreview','0'),(1126,'mod_lesson','displayreview_adv',''),(1127,'mod_lesson','maximumnumberofattempts','1'),(1128,'mod_lesson','maximumnumberofattempts_adv',''),(1129,'mod_lesson','defaultnextpage','0'),(1130,'mod_lesson','defaultnextpage_adv','1'),(1131,'mod_lesson','numberofpagestoshow','1'),(1132,'mod_lesson','numberofpagestoshow_adv','1'),(1133,'mod_lesson','practice','0'),(1134,'mod_lesson','practice_adv',''),(1135,'mod_lesson','customscoring','1'),(1136,'mod_lesson','customscoring_adv','1'),(1137,'mod_lesson','retakesallowed','0'),(1138,'mod_lesson','retakesallowed_adv',''),(1139,'mod_lesson','handlingofretakes','0'),(1140,'mod_lesson','handlingofretakes_adv','1'),(1141,'mod_lesson','minimumnumberofquestions','0'),(1142,'mod_lesson','minimumnumberofquestions_adv','1'),(1143,'page','displayoptions','5'),(1144,'page','printintro','0'),(1145,'page','printlastmodified','1'),(1146,'page','display','5'),(1147,'page','popupwidth','620'),(1148,'page','popupheight','450'),(1149,'quiz','timelimit','0'),(1150,'quiz','timelimit_adv',''),(1151,'quiz','timelimit_locked',''),(1152,'quiz','notifyattemptgradeddelay','18000'),(1153,'quiz','overduehandling','autosubmit'),(1154,'quiz','overduehandling_adv',''),(1155,'quiz','overduehandling_locked',''),(1156,'quiz','graceperiod','86400'),(1157,'quiz','graceperiod_adv',''),(1158,'quiz','graceperiod_locked',''),(1159,'quiz','graceperiodmin','60'),(1160,'quiz','attempts','0'),(1161,'quiz','attempts_adv',''),(1162,'quiz','attempts_locked',''),(1163,'quiz','grademethod','1'),(1164,'quiz','grademethod_adv',''),(1165,'quiz','grademethod_locked',''),(1166,'quiz','maximumgrade','10'),(1167,'quiz','maximumgrade_locked',''),(1168,'quiz','questionsperpage','1'),(1169,'quiz','questionsperpage_adv',''),(1170,'quiz','questionsperpage_locked',''),(1171,'quiz','navmethod','free'),(1172,'quiz','navmethod_adv','1'),(1173,'quiz','navmethod_locked',''),(1174,'quiz','shuffleanswers','1'),(1175,'quiz','shuffleanswers_adv',''),(1176,'quiz','shuffleanswers_locked',''),(1177,'quiz','preferredbehaviour','deferredfeedback'),(1178,'quiz','preferredbehaviour_locked',''),(1179,'quiz','canredoquestions','0'),(1180,'quiz','canredoquestions_adv','1'),(1181,'quiz','canredoquestions_locked',''),(1182,'quiz','attemptonlast','0'),(1183,'quiz','attemptonlast_adv','1'),(1184,'quiz','attemptonlast_locked',''),(1185,'quiz','reviewattempt','69904'),(1186,'quiz','reviewcorrectness','69904'),(1187,'quiz','reviewmaxmarks','69904'),(1188,'quiz','reviewmarks','69904'),(1189,'quiz','reviewspecificfeedback','69904'),(1190,'quiz','reviewgeneralfeedback','69904'),(1191,'quiz','reviewrightanswer','69904'),(1192,'quiz','reviewoverallfeedback','4368'),(1193,'quiz','showuserpicture','0'),(1194,'quiz','showuserpicture_adv',''),(1195,'quiz','showuserpicture_locked',''),(1196,'quiz','decimalpoints','2'),(1197,'quiz','decimalpoints_adv',''),(1198,'quiz','decimalpoints_locked',''),(1199,'quiz','questiondecimalpoints','-1'),(1200,'quiz','questiondecimalpoints_adv',''),(1201,'quiz','questiondecimalpoints_locked',''),(1202,'quiz','showblocks','0'),(1203,'quiz','showblocks_adv','1'),(1204,'quiz','showblocks_locked',''),(1205,'quiz','quizpassword',''),(1206,'quiz','quizpassword_adv',''),(1207,'quiz','quizpassword_required',''),(1208,'quiz','quizpassword_locked',''),(1209,'quiz','subnet',''),(1210,'quiz','subnet_adv','1'),(1211,'quiz','subnet_locked',''),(1212,'quiz','delay1','0'),(1213,'quiz','delay1_adv','1'),(1214,'quiz','delay1_locked',''),(1215,'quiz','delay2','0'),(1216,'quiz','delay2_adv','1'),(1217,'quiz','delay2_locked',''),(1218,'quiz','browsersecurity','-'),(1219,'quiz','browsersecurity_adv','1'),(1220,'quiz','browsersecurity_locked',''),(1221,'quiz','initialnumfeedbacks','2'),(1222,'quiz','autosaveperiod','60'),(1223,'quiz_statistics','getstatslocktimeout','900'),(1224,'quizaccess_seb','autoreconfigureseb','1'),(1225,'quizaccess_seb','showseblinks','seb,http'),(1226,'quizaccess_seb','downloadlink','https://safeexambrowser.org/download_en.html'),(1227,'quizaccess_seb','quizpasswordrequired','0'),(1228,'quizaccess_seb','displayblocksbeforestart','0'),(1229,'quizaccess_seb','displayblockswhenfinished','1'),(1230,'scorm','displaycoursestructure','0'),(1231,'scorm','displaycoursestructure_adv',''),(1232,'scorm','popup','0'),(1233,'scorm','popup_adv',''),(1234,'scorm','framewidth','100'),(1235,'scorm','framewidth_adv','1'),(1236,'scorm','frameheight','500'),(1237,'scorm','frameheight_adv','1'),(1238,'scorm','winoptgrp_adv','1'),(1239,'scorm','scrollbars','0'),(1240,'scorm','directories','0'),(1241,'scorm','location','0'),(1242,'scorm','menubar','0'),(1243,'scorm','toolbar','0'),(1244,'scorm','status','0'),(1245,'scorm','skipview','0'),(1246,'scorm','skipview_adv','1'),(1247,'scorm','hidebrowse','0'),(1248,'scorm','hidebrowse_adv','1'),(1249,'scorm','hidetoc','0'),(1250,'scorm','hidetoc_adv','1'),(1251,'scorm','nav','1'),(1252,'scorm','nav_adv','1'),(1253,'scorm','navpositionleft','-100'),(1254,'scorm','navpositionleft_adv','1'),(1255,'scorm','navpositiontop','-100'),(1256,'scorm','navpositiontop_adv','1'),(1257,'scorm','collapsetocwinsize','767'),(1258,'scorm','collapsetocwinsize_adv','1'),(1259,'scorm','displayattemptstatus','1'),(1260,'scorm','displayattemptstatus_adv',''),(1261,'scorm','grademethod','1'),(1262,'scorm','maxgrade','100'),(1263,'scorm','maxattempt','0'),(1264,'scorm','whatgrade','0'),(1265,'scorm','forcecompleted','0'),(1266,'scorm','forcenewattempt','0'),(1267,'scorm','autocommit','0'),(1268,'scorm','masteryoverride','1'),(1269,'scorm','lastattemptlock','0'),(1270,'scorm','auto','0'),(1271,'scorm','updatefreq','0'),(1272,'scorm','scormstandard','0'),(1273,'scorm','allowtypeexternal','0'),(1274,'scorm','allowtypelocalsync','0'),(1275,'scorm','allowtypeexternalaicc','0'),(1276,'scorm','allowaicchacp','0'),(1277,'scorm','aicchacptimeout','30'),(1278,'scorm','aicchacpkeepsessiondata','1'),(1279,'scorm','aiccuserid','1'),(1280,'scorm','forcejavascript','1'),(1281,'scorm','allowapidebug','0'),(1282,'scorm','apidebugmask','.*'),(1283,'scorm','protectpackagedownloads','0'),(1284,'label','dndmedia','1'),(1285,'label','dndresizewidth','400'),(1286,'label','dndresizeheight','400'),(1287,'url','framesize','130'),(1288,'url','secretphrase',''),(1289,'url','rolesinparams','0'),(1290,'url','displayoptions','0,1,5,6'),(1291,'url','printintro','1'),(1292,'url','display','0'),(1293,'url','popupwidth','620'),(1294,'url','popupheight','450'),(1295,'workshop','grade','80'),(1296,'workshop','gradinggrade','20'),(1297,'workshop','gradedecimals','0'),(1298,'workshop','maxbytes','0'),(1299,'workshop','strategy','accumulative'),(1300,'workshop','examplesmode','0'),(1301,'workshopallocation_random','numofreviews','5'),(1302,'workshopform_numerrors','grade0','No'),(1303,'workshopform_numerrors','grade1','Yes'),(1304,'workshopeval_best','comparison','5'),(1305,'tool_brickfield','analysistype','0'),(1306,'tool_brickfield','deletehistoricaldata','1'),(1307,'tool_brickfield','batch','1000'),(1308,'tool_brickfield','perpage','50'),(1309,'tool_mfa','enabled','0'),(1310,'tool_mfa','lockout','10'),(1311,'tool_mfa','debugmode','0'),(1312,'tool_mfa','redir_exclusions',''),(1313,'tool_mfa','guidance','0'),(1314,'tool_mfa','guidancecontent',''),(1315,'tool_mfa','guidancefiles',''),(1316,'factor_admin','enabled','0'),(1317,'factor_admin','weight','100'),(1318,'factor_auth','enabled','0'),(1319,'factor_auth','weight','100'),(1320,'factor_auth','goodauth',''),(1321,'factor_capability','enabled','0'),(1322,'factor_capability','weight','100'),(1323,'factor_capability','adminpasses','1'),(1324,'factor_cohort','enabled','0'),(1325,'factor_cohort','weight','100'),(1326,'factor_email','enabled','0'),(1327,'factor_email','weight','100'),(1328,'factor_email','duration','1800'),(1329,'factor_email','suspend','0'),(1330,'factor_grace','enabled','0'),(1331,'factor_grace','weight','100'),(1332,'factor_grace','forcesetup','0'),(1333,'factor_grace','graceperiod','604800'),(1334,'factor_grace','ignorelist',''),(1335,'factor_grace','customwarning',''),(1336,'factor_iprange','enabled','0'),(1337,'factor_iprange','weight','100'),(1338,'factor_iprange','safeips',''),(1339,'factor_nosetup','enabled','0'),(1340,'factor_nosetup','weight','100'),(1341,'factor_role','enabled','0'),(1342,'factor_role','weight','100'),(1343,'factor_role','roles','admin'),(1344,'factor_token','enabled','0'),(1345,'factor_token','weight','100'),(1346,'factor_token','expiry','86400'),(1347,'factor_token','expireovernight','1'),(1348,'factor_totp','enabled','0'),(1349,'factor_totp','weight','100'),(1350,'factor_totp','window','30'),(1351,'factor_totp','totplink','1'),(1352,'factor_webauthn','enabled','0'),(1353,'factor_webauthn','weight','100'),(1354,'factor_webauthn','authenticatortypes','usb,nfc,ble,hybrid,internal'),(1355,'factor_webauthn','userverification','preferred'),(1356,'tool_recyclebin','coursebinenable','1'),(1357,'tool_recyclebin','coursebinexpiry','604800'),(1358,'tool_recyclebin','categorybinenable','1'),(1359,'tool_recyclebin','categorybinexpiry','604800'),(1360,'tool_recyclebin','autohide','1'),(1361,'antivirus_clamav','runningmethod','commandline'),(1362,'antivirus_clamav','pathtoclam',''),(1363,'antivirus_clamav','pathtounixsocket',''),(1364,'antivirus_clamav','tcpsockethost',''),(1365,'antivirus_clamav','tcpsocketport','3310'),(1366,'antivirus_clamav','clamfailureonupload','tryagain'),(1367,'antivirus_clamav','tries','1'),(1368,'auth_cas','auth_name','CAS'),(1369,'auth_cas','auth_logo',''),(1370,'auth_cas','hostname',''),(1371,'auth_cas','baseuri',''),(1372,'auth_cas','port','0'),(1373,'auth_cas','casversion','2.0'),(1374,'auth_cas','language','CAS_Languages_English'),(1375,'auth_cas','proxycas','0'),(1376,'auth_cas','logoutcas','0'),(1377,'auth_cas','multiauth','0'),(1378,'auth_cas','certificate_check','0'),(1379,'auth_cas','certificate_path',''),(1380,'auth_cas','curl_ssl_version',''),(1381,'auth_cas','logout_return_url',''),(1382,'auth_cas','host_url',''),(1383,'auth_cas','ldap_version','3'),(1384,'auth_cas','start_tls','0'),(1385,'auth_cas','ldapencoding','utf-8'),(1386,'auth_cas','pagesize','250'),(1387,'auth_cas','bind_dn',''),(1388,'auth_cas','bind_pw',''),(1389,'auth_cas','user_type','default'),(1390,'auth_cas','contexts',''),(1391,'auth_cas','search_sub','0'),(1392,'auth_cas','opt_deref','0'),(1393,'auth_cas','user_attribute',''),(1394,'auth_cas','memberattribute',''),(1395,'auth_cas','memberattribute_isdn','0'),(1396,'auth_cas','objectclass',''),(1397,'auth_cas','attrcreators',''),(1398,'auth_cas','groupecreators',''),(1399,'auth_cas','removeuser','0'),(1400,'auth_cas','field_map_firstname',''),(1401,'auth_cas','field_updatelocal_firstname','oncreate'),(1402,'auth_cas','field_updateremote_firstname','0'),(1403,'auth_cas','field_lock_firstname','unlocked'),(1404,'auth_cas','field_map_lastname',''),(1405,'auth_cas','field_updatelocal_lastname','oncreate'),(1406,'auth_cas','field_updateremote_lastname','0'),(1407,'auth_cas','field_lock_lastname','unlocked'),(1408,'auth_cas','field_map_email',''),(1409,'auth_cas','field_updatelocal_email','oncreate'),(1410,'auth_cas','field_updateremote_email','0'),(1411,'auth_cas','field_lock_email','unlocked'),(1412,'auth_cas','field_map_city',''),(1413,'auth_cas','field_updatelocal_city','oncreate'),(1414,'auth_cas','field_updateremote_city','0'),(1415,'auth_cas','field_lock_city','unlocked'),(1416,'auth_cas','field_map_country',''),(1417,'auth_cas','field_updatelocal_country','oncreate'),(1418,'auth_cas','field_updateremote_country','0'),(1419,'auth_cas','field_lock_country','unlocked'),(1420,'auth_cas','field_map_lang',''),(1421,'auth_cas','field_updatelocal_lang','oncreate'),(1422,'auth_cas','field_updateremote_lang','0'),(1423,'auth_cas','field_lock_lang','unlocked'),(1424,'auth_cas','field_map_description',''),(1425,'auth_cas','field_updatelocal_description','oncreate'),(1426,'auth_cas','field_updateremote_description','0'),(1427,'auth_cas','field_lock_description','unlocked'),(1428,'auth_cas','field_map_idnumber',''),(1429,'auth_cas','field_updatelocal_idnumber','oncreate'),(1430,'auth_cas','field_updateremote_idnumber','0'),(1431,'auth_cas','field_lock_idnumber','unlocked'),(1432,'auth_cas','field_map_institution',''),(1433,'auth_cas','field_updatelocal_institution','oncreate'),(1434,'auth_cas','field_updateremote_institution','0'),(1435,'auth_cas','field_lock_institution','unlocked'),(1436,'auth_cas','field_map_department',''),(1437,'auth_cas','field_updatelocal_department','oncreate'),(1438,'auth_cas','field_updateremote_department','0'),(1439,'auth_cas','field_lock_department','unlocked'),(1440,'auth_cas','field_map_phone1',''),(1441,'auth_cas','field_updatelocal_phone1','oncreate'),(1442,'auth_cas','field_updateremote_phone1','0'),(1443,'auth_cas','field_lock_phone1','unlocked'),(1444,'auth_cas','field_map_phone2',''),(1445,'auth_cas','field_updatelocal_phone2','oncreate'),(1446,'auth_cas','field_updateremote_phone2','0'),(1447,'auth_cas','field_lock_phone2','unlocked'),(1448,'auth_cas','field_map_address',''),(1449,'auth_cas','field_updatelocal_address','oncreate'),(1450,'auth_cas','field_updateremote_address','0'),(1451,'auth_cas','field_lock_address','unlocked'),(1452,'auth_cas','field_map_firstnamephonetic',''),(1453,'auth_cas','field_updatelocal_firstnamephonetic','oncreate'),(1454,'auth_cas','field_updateremote_firstnamephonetic','0'),(1455,'auth_cas','field_lock_firstnamephonetic','unlocked'),(1456,'auth_cas','field_map_lastnamephonetic',''),(1457,'auth_cas','field_updatelocal_lastnamephonetic','oncreate'),(1458,'auth_cas','field_updateremote_lastnamephonetic','0'),(1459,'auth_cas','field_lock_lastnamephonetic','unlocked'),(1460,'auth_cas','field_map_middlename',''),(1461,'auth_cas','field_updatelocal_middlename','oncreate'),(1462,'auth_cas','field_updateremote_middlename','0'),(1463,'auth_cas','field_lock_middlename','unlocked'),(1464,'auth_cas','field_map_alternatename',''),(1465,'auth_cas','field_updatelocal_alternatename','oncreate'),(1466,'auth_cas','field_updateremote_alternatename','0'),(1467,'auth_cas','field_lock_alternatename','unlocked'),(1468,'auth_email','recaptcha','0'),(1469,'auth_email','field_lock_firstname','unlocked'),(1470,'auth_email','field_lock_lastname','unlocked'),(1471,'auth_email','field_lock_email','unlocked'),(1472,'auth_email','field_lock_city','unlocked'),(1473,'auth_email','field_lock_country','unlocked'),(1474,'auth_email','field_lock_lang','unlocked'),(1475,'auth_email','field_lock_description','unlocked'),(1476,'auth_email','field_lock_idnumber','unlocked'),(1477,'auth_email','field_lock_institution','unlocked'),(1478,'auth_email','field_lock_department','unlocked'),(1479,'auth_email','field_lock_phone1','unlocked'),(1480,'auth_email','field_lock_phone2','unlocked'),(1481,'auth_email','field_lock_address','unlocked'),(1482,'auth_email','field_lock_firstnamephonetic','unlocked'),(1483,'auth_email','field_lock_lastnamephonetic','unlocked'),(1484,'auth_email','field_lock_middlename','unlocked'),(1485,'auth_email','field_lock_alternatename','unlocked'),(1486,'auth_db','host','127.0.0.1'),(1487,'auth_db','type','mysqli'),(1488,'auth_db','sybasequoting','0'),(1489,'auth_db','name',''),(1490,'auth_db','user',''),(1491,'auth_db','pass',''),(1492,'auth_db','table',''),(1493,'auth_db','fielduser',''),(1494,'auth_db','fieldpass',''),(1495,'auth_db','passtype','plaintext'),(1496,'auth_db','extencoding','utf-8'),(1497,'auth_db','setupsql',''),(1498,'auth_db','debugauthdb','0'),(1499,'auth_db','changepasswordurl',''),(1500,'auth_db','removeuser','0'),(1501,'auth_db','updateusers','0'),(1502,'auth_db','field_map_firstname',''),(1503,'auth_db','field_updatelocal_firstname','oncreate'),(1504,'auth_db','field_updateremote_firstname','0'),(1505,'auth_db','field_lock_firstname','unlocked'),(1506,'auth_db','field_map_lastname',''),(1507,'auth_db','field_updatelocal_lastname','oncreate'),(1508,'auth_db','field_updateremote_lastname','0'),(1509,'auth_db','field_lock_lastname','unlocked'),(1510,'auth_db','field_map_email',''),(1511,'auth_db','field_updatelocal_email','oncreate'),(1512,'auth_db','field_updateremote_email','0'),(1513,'auth_db','field_lock_email','unlocked'),(1514,'auth_db','field_map_city',''),(1515,'auth_db','field_updatelocal_city','oncreate'),(1516,'auth_db','field_updateremote_city','0'),(1517,'auth_db','field_lock_city','unlocked'),(1518,'auth_db','field_map_country',''),(1519,'auth_db','field_updatelocal_country','oncreate'),(1520,'auth_db','field_updateremote_country','0'),(1521,'auth_db','field_lock_country','unlocked'),(1522,'auth_db','field_map_lang',''),(1523,'auth_db','field_updatelocal_lang','oncreate'),(1524,'auth_db','field_updateremote_lang','0'),(1525,'auth_db','field_lock_lang','unlocked'),(1526,'auth_db','field_map_description',''),(1527,'auth_db','field_updatelocal_description','oncreate'),(1528,'auth_db','field_updateremote_description','0'),(1529,'auth_db','field_lock_description','unlocked'),(1530,'auth_db','field_map_idnumber',''),(1531,'auth_db','field_updatelocal_idnumber','oncreate'),(1532,'auth_db','field_updateremote_idnumber','0'),(1533,'auth_db','field_lock_idnumber','unlocked'),(1534,'auth_db','field_map_institution',''),(1535,'auth_db','field_updatelocal_institution','oncreate'),(1536,'auth_db','field_updateremote_institution','0'),(1537,'auth_db','field_lock_institution','unlocked'),(1538,'auth_db','field_map_department',''),(1539,'auth_db','field_updatelocal_department','oncreate'),(1540,'auth_db','field_updateremote_department','0'),(1541,'auth_db','field_lock_department','unlocked'),(1542,'auth_db','field_map_phone1',''),(1543,'auth_db','field_updatelocal_phone1','oncreate'),(1544,'auth_db','field_updateremote_phone1','0'),(1545,'auth_db','field_lock_phone1','unlocked'),(1546,'auth_db','field_map_phone2',''),(1547,'auth_db','field_updatelocal_phone2','oncreate'),(1548,'auth_db','field_updateremote_phone2','0'),(1549,'auth_db','field_lock_phone2','unlocked'),(1550,'auth_db','field_map_address',''),(1551,'auth_db','field_updatelocal_address','oncreate'),(1552,'auth_db','field_updateremote_address','0'),(1553,'auth_db','field_lock_address','unlocked'),(1554,'auth_db','field_map_firstnamephonetic',''),(1555,'auth_db','field_updatelocal_firstnamephonetic','oncreate'),(1556,'auth_db','field_updateremote_firstnamephonetic','0'),(1557,'auth_db','field_lock_firstnamephonetic','unlocked'),(1558,'auth_db','field_map_lastnamephonetic',''),(1559,'auth_db','field_updatelocal_lastnamephonetic','oncreate'),(1560,'auth_db','field_updateremote_lastnamephonetic','0'),(1561,'auth_db','field_lock_lastnamephonetic','unlocked'),(1562,'auth_db','field_map_middlename',''),(1563,'auth_db','field_updatelocal_middlename','oncreate'),(1564,'auth_db','field_updateremote_middlename','0'),(1565,'auth_db','field_lock_middlename','unlocked'),(1566,'auth_db','field_map_alternatename',''),(1567,'auth_db','field_updatelocal_alternatename','oncreate'),(1568,'auth_db','field_updateremote_alternatename','0'),(1569,'auth_db','field_lock_alternatename','unlocked'),(1570,'auth_ldap','host_url',''),(1571,'auth_ldap','ldap_version','3'),(1572,'auth_ldap','start_tls','0'),(1573,'auth_ldap','ldapencoding','utf-8'),(1574,'auth_ldap','pagesize','250'),(1575,'auth_ldap','preventpassindb','0'),(1576,'auth_ldap','bind_dn',''),(1577,'auth_ldap','bind_pw',''),(1578,'auth_ldap','user_type','default'),(1579,'auth_ldap','contexts',''),(1580,'auth_ldap','search_sub','0'),(1581,'auth_ldap','opt_deref','0'),(1582,'auth_ldap','user_attribute',''),(1583,'auth_ldap','suspended_attribute',''),(1584,'auth_ldap','memberattribute',''),(1585,'auth_ldap','memberattribute_isdn','0'),(1586,'auth_ldap','objectclass',''),(1587,'auth_ldap','forcechangepassword','0'),(1588,'auth_ldap','stdchangepassword','0'),(1589,'auth_ldap','passtype','plaintext'),(1590,'auth_ldap','changepasswordurl',''),(1591,'auth_ldap','expiration','0'),(1592,'auth_ldap','expiration_warning',''),(1593,'auth_ldap','expireattr',''),(1594,'auth_ldap','gracelogins','0'),(1595,'auth_ldap','graceattr',''),(1596,'auth_ldap','auth_user_create','0'),(1597,'auth_ldap','create_context',''),(1598,'auth_ldap','managercontext',''),(1599,'auth_ldap','coursecreatorcontext',''),(1600,'auth_ldap','removeuser','0'),(1601,'auth_ldap','sync_suspended','0'),(1602,'auth_ldap','ntlmsso_enabled','0'),(1603,'auth_ldap','ntlmsso_subnet',''),(1604,'auth_ldap','ntlmsso_ie_fastpath','0'),(1605,'auth_ldap','ntlmsso_type','ntlm'),(1606,'auth_ldap','ntlmsso_remoteuserformat',''),(1607,'auth_ldap','field_map_firstname',''),(1608,'auth_ldap','field_updatelocal_firstname','oncreate'),(1609,'auth_ldap','field_updateremote_firstname','0'),(1610,'auth_ldap','field_lock_firstname','unlocked'),(1611,'auth_ldap','field_map_lastname',''),(1612,'auth_ldap','field_updatelocal_lastname','oncreate'),(1613,'auth_ldap','field_updateremote_lastname','0'),(1614,'auth_ldap','field_lock_lastname','unlocked'),(1615,'auth_ldap','field_map_email',''),(1616,'auth_ldap','field_updatelocal_email','oncreate'),(1617,'auth_ldap','field_updateremote_email','0'),(1618,'auth_ldap','field_lock_email','unlocked'),(1619,'auth_ldap','field_map_city',''),(1620,'auth_ldap','field_updatelocal_city','oncreate'),(1621,'auth_ldap','field_updateremote_city','0'),(1622,'auth_ldap','field_lock_city','unlocked'),(1623,'auth_ldap','field_map_country',''),(1624,'auth_ldap','field_updatelocal_country','oncreate'),(1625,'auth_ldap','field_updateremote_country','0'),(1626,'auth_ldap','field_lock_country','unlocked'),(1627,'auth_ldap','field_map_lang',''),(1628,'auth_ldap','field_updatelocal_lang','oncreate'),(1629,'auth_ldap','field_updateremote_lang','0'),(1630,'auth_ldap','field_lock_lang','unlocked'),(1631,'auth_ldap','field_map_description',''),(1632,'auth_ldap','field_updatelocal_description','oncreate'),(1633,'auth_ldap','field_updateremote_description','0'),(1634,'auth_ldap','field_lock_description','unlocked'),(1635,'auth_ldap','field_map_idnumber',''),(1636,'auth_ldap','field_updatelocal_idnumber','oncreate'),(1637,'auth_ldap','field_updateremote_idnumber','0'),(1638,'auth_ldap','field_lock_idnumber','unlocked'),(1639,'auth_ldap','field_map_institution',''),(1640,'auth_ldap','field_updatelocal_institution','oncreate'),(1641,'auth_ldap','field_updateremote_institution','0'),(1642,'auth_ldap','field_lock_institution','unlocked'),(1643,'auth_ldap','field_map_department',''),(1644,'auth_ldap','field_updatelocal_department','oncreate'),(1645,'auth_ldap','field_updateremote_department','0'),(1646,'auth_ldap','field_lock_department','unlocked'),(1647,'auth_ldap','field_map_phone1',''),(1648,'auth_ldap','field_updatelocal_phone1','oncreate'),(1649,'auth_ldap','field_updateremote_phone1','0'),(1650,'auth_ldap','field_lock_phone1','unlocked'),(1651,'auth_ldap','field_map_phone2',''),(1652,'auth_ldap','field_updatelocal_phone2','oncreate'),(1653,'auth_ldap','field_updateremote_phone2','0'),(1654,'auth_ldap','field_lock_phone2','unlocked'),(1655,'auth_ldap','field_map_address',''),(1656,'auth_ldap','field_updatelocal_address','oncreate'),(1657,'auth_ldap','field_updateremote_address','0'),(1658,'auth_ldap','field_lock_address','unlocked'),(1659,'auth_ldap','field_map_firstnamephonetic',''),(1660,'auth_ldap','field_updatelocal_firstnamephonetic','oncreate'),(1661,'auth_ldap','field_updateremote_firstnamephonetic','0'),(1662,'auth_ldap','field_lock_firstnamephonetic','unlocked'),(1663,'auth_ldap','field_map_lastnamephonetic',''),(1664,'auth_ldap','field_updatelocal_lastnamephonetic','oncreate'),(1665,'auth_ldap','field_updateremote_lastnamephonetic','0'),(1666,'auth_ldap','field_lock_lastnamephonetic','unlocked'),(1667,'auth_ldap','field_map_middlename',''),(1668,'auth_ldap','field_updatelocal_middlename','oncreate'),(1669,'auth_ldap','field_updateremote_middlename','0'),(1670,'auth_ldap','field_lock_middlename','unlocked'),(1671,'auth_ldap','field_map_alternatename',''),(1672,'auth_ldap','field_updatelocal_alternatename','oncreate'),(1673,'auth_ldap','field_updateremote_alternatename','0'),(1674,'auth_ldap','field_lock_alternatename','unlocked'),(1675,'auth_manual','expiration','0'),(1676,'auth_manual','expirationtime','30'),(1677,'auth_manual','expiration_warning','0'),(1678,'auth_manual','field_lock_firstname','unlocked'),(1679,'auth_manual','field_lock_lastname','unlocked'),(1680,'auth_manual','field_lock_email','unlocked'),(1681,'auth_manual','field_lock_city','unlocked'),(1682,'auth_manual','field_lock_country','unlocked'),(1683,'auth_manual','field_lock_lang','unlocked'),(1684,'auth_manual','field_lock_description','unlocked'),(1685,'auth_manual','field_lock_idnumber','unlocked'),(1686,'auth_manual','field_lock_institution','unlocked'),(1687,'auth_manual','field_lock_department','unlocked'),(1688,'auth_manual','field_lock_phone1','unlocked'),(1689,'auth_manual','field_lock_phone2','unlocked'),(1690,'auth_manual','field_lock_address','unlocked'),(1691,'auth_manual','field_lock_firstnamephonetic','unlocked'),(1692,'auth_manual','field_lock_lastnamephonetic','unlocked'),(1693,'auth_manual','field_lock_middlename','unlocked'),(1694,'auth_manual','field_lock_alternatename','unlocked'),(1695,'auth_mnet','rpc_negotiation_timeout','30'),(1696,'auth_none','field_lock_firstname','unlocked'),(1697,'auth_none','field_lock_lastname','unlocked'),(1698,'auth_none','field_lock_email','unlocked'),(1699,'auth_none','field_lock_city','unlocked'),(1700,'auth_none','field_lock_country','unlocked'),(1701,'auth_none','field_lock_lang','unlocked'),(1702,'auth_none','field_lock_description','unlocked'),(1703,'auth_none','field_lock_idnumber','unlocked'),(1704,'auth_none','field_lock_institution','unlocked'),(1705,'auth_none','field_lock_department','unlocked'),(1706,'auth_none','field_lock_phone1','unlocked'),(1707,'auth_none','field_lock_phone2','unlocked'),(1708,'auth_none','field_lock_address','unlocked'),(1709,'auth_none','field_lock_firstnamephonetic','unlocked'),(1710,'auth_none','field_lock_lastnamephonetic','unlocked'),(1711,'auth_none','field_lock_middlename','unlocked'),(1712,'auth_none','field_lock_alternatename','unlocked'),(1713,'auth_oauth2','field_lock_firstname','unlocked'),(1714,'auth_oauth2','field_lock_lastname','unlocked'),(1715,'auth_oauth2','field_lock_email','unlocked'),(1716,'auth_oauth2','field_lock_city','unlocked'),(1717,'auth_oauth2','field_lock_country','unlocked'),(1718,'auth_oauth2','field_lock_lang','unlocked'),(1719,'auth_oauth2','field_lock_description','unlocked'),(1720,'auth_oauth2','field_lock_idnumber','unlocked'),(1721,'auth_oauth2','field_lock_institution','unlocked'),(1722,'auth_oauth2','field_lock_department','unlocked'),(1723,'auth_oauth2','field_lock_phone1','unlocked'),(1724,'auth_oauth2','field_lock_phone2','unlocked'),(1725,'auth_oauth2','field_lock_address','unlocked'),(1726,'auth_oauth2','field_lock_firstnamephonetic','unlocked'),(1727,'auth_oauth2','field_lock_lastnamephonetic','unlocked'),(1728,'auth_oauth2','field_lock_middlename','unlocked'),(1729,'auth_oauth2','field_lock_alternatename','unlocked'),(1730,'auth_shibboleth','user_attribute',''),(1731,'auth_shibboleth','convert_data',''),(1732,'auth_shibboleth','alt_login','off'),(1733,'auth_shibboleth','organization_selection','urn:mace:organization1:providerID, Example Organization 1\n        https://another.idp-id.com/shibboleth, Other Example Organization, /Shibboleth.sso/DS/SWITCHaai\n        urn:mace:organization2:providerID, Example Organization 2, /Shibboleth.sso/WAYF/SWITCHaai'),(1734,'auth_shibboleth','logout_handler',''),(1735,'auth_shibboleth','logout_return_url',''),(1736,'auth_shibboleth','login_name','Shibboleth Login'),(1737,'auth_shibboleth','auth_logo',''),(1738,'auth_shibboleth','auth_instructions','Use the <a href=\"https://www.moodle.loc/auth/shibboleth/index.php\">Shibboleth login</a> to get access via Shibboleth, if your institution supports it. Otherwise, use the normal login form shown here.'),(1739,'auth_shibboleth','changepasswordurl',''),(1740,'auth_shibboleth','field_map_firstname',''),(1741,'auth_shibboleth','field_updatelocal_firstname','oncreate'),(1742,'auth_shibboleth','field_lock_firstname','unlocked'),(1743,'auth_shibboleth','field_map_lastname',''),(1744,'auth_shibboleth','field_updatelocal_lastname','oncreate'),(1745,'auth_shibboleth','field_lock_lastname','unlocked'),(1746,'auth_shibboleth','field_map_email',''),(1747,'auth_shibboleth','field_updatelocal_email','oncreate'),(1748,'auth_shibboleth','field_lock_email','unlocked'),(1749,'auth_shibboleth','field_map_city',''),(1750,'auth_shibboleth','field_updatelocal_city','oncreate'),(1751,'auth_shibboleth','field_lock_city','unlocked'),(1752,'auth_shibboleth','field_map_country',''),(1753,'auth_shibboleth','field_updatelocal_country','oncreate'),(1754,'auth_shibboleth','field_lock_country','unlocked'),(1755,'auth_shibboleth','field_map_lang',''),(1756,'auth_shibboleth','field_updatelocal_lang','oncreate'),(1757,'auth_shibboleth','field_lock_lang','unlocked'),(1758,'auth_shibboleth','field_map_description',''),(1759,'auth_shibboleth','field_updatelocal_description','oncreate'),(1760,'auth_shibboleth','field_lock_description','unlocked'),(1761,'auth_shibboleth','field_map_idnumber',''),(1762,'auth_shibboleth','field_updatelocal_idnumber','oncreate'),(1763,'auth_shibboleth','field_lock_idnumber','unlocked'),(1764,'auth_shibboleth','field_map_institution',''),(1765,'auth_shibboleth','field_updatelocal_institution','oncreate'),(1766,'auth_shibboleth','field_lock_institution','unlocked'),(1767,'auth_shibboleth','field_map_department',''),(1768,'auth_shibboleth','field_updatelocal_department','oncreate'),(1769,'auth_shibboleth','field_lock_department','unlocked'),(1770,'auth_shibboleth','field_map_phone1',''),(1771,'auth_shibboleth','field_updatelocal_phone1','oncreate'),(1772,'auth_shibboleth','field_lock_phone1','unlocked'),(1773,'auth_shibboleth','field_map_phone2',''),(1774,'auth_shibboleth','field_updatelocal_phone2','oncreate'),(1775,'auth_shibboleth','field_lock_phone2','unlocked'),(1776,'auth_shibboleth','field_map_address',''),(1777,'auth_shibboleth','field_updatelocal_address','oncreate'),(1778,'auth_shibboleth','field_lock_address','unlocked'),(1779,'auth_shibboleth','field_map_firstnamephonetic',''),(1780,'auth_shibboleth','field_updatelocal_firstnamephonetic','oncreate'),(1781,'auth_shibboleth','field_lock_firstnamephonetic','unlocked'),(1782,'auth_shibboleth','field_map_lastnamephonetic',''),(1783,'auth_shibboleth','field_updatelocal_lastnamephonetic','oncreate'),(1784,'auth_shibboleth','field_lock_lastnamephonetic','unlocked'),(1785,'auth_shibboleth','field_map_middlename',''),(1786,'auth_shibboleth','field_updatelocal_middlename','oncreate'),(1787,'auth_shibboleth','field_lock_middlename','unlocked'),(1788,'auth_shibboleth','field_map_alternatename',''),(1789,'auth_shibboleth','field_updatelocal_alternatename','oncreate'),(1790,'auth_shibboleth','field_lock_alternatename','unlocked'),(1791,'block_accessreview','whattoshow','showboth'),(1792,'block_accessreview','errordisplay','showint'),(1793,'block_accessreview','toolpage','errors'),(1794,'block_activity_results','config_showbest','3'),(1795,'block_activity_results','config_showbest_locked',''),(1796,'block_activity_results','config_showworst','0'),(1797,'block_activity_results','config_showworst_locked',''),(1798,'block_activity_results','config_usegroups','0'),(1799,'block_activity_results','config_usegroups_locked',''),(1800,'block_activity_results','config_nameformat','1'),(1801,'block_activity_results','config_nameformat_locked',''),(1802,'block_activity_results','config_gradeformat','1'),(1803,'block_activity_results','config_gradeformat_locked',''),(1804,'block_activity_results','config_decimalpoints','2'),(1805,'block_activity_results','config_decimalpoints_locked',''),(1806,'block_myoverview','displaycategories','1'),(1807,'block_myoverview','layouts','card,list,summary'),(1808,'block_myoverview','displaygroupingallincludinghidden','0'),(1809,'block_myoverview','displaygroupingall','1'),(1810,'block_myoverview','displaygroupinginprogress','1'),(1811,'block_myoverview','displaygroupingpast','1'),(1812,'block_myoverview','displaygroupingfuture','1'),(1813,'block_myoverview','displaygroupingcustomfield','0'),(1814,'block_myoverview','customfiltergrouping',''),(1815,'block_myoverview','displaygroupingfavourites','1'),(1816,'block_myoverview','displaygroupinghidden','1'),(1817,'block_recentlyaccessedcourses','displaycategories','1'),(1818,'block_section_links','numsections1','22'),(1819,'block_section_links','incby1','2'),(1820,'block_section_links','numsections2','40'),(1821,'block_section_links','incby2','5'),(1822,'block_section_links','showsectionname','0'),(1823,'block_starredcourses','displaycategories','1'),(1824,'block_tag_youtube','apikey',''),(1825,'format_singleactivity','activitytype','forum'),(1826,'format_topics','indentation','1'),(1827,'format_weeks','indentation','1'),(1828,'fileconverter_googledrive','issuerid',''),(1829,'enrol_cohort','roleid','5'),(1830,'enrol_cohort','unenrolaction','0'),(1831,'enrol_meta','nosyncroleids',''),(1832,'enrol_meta','syncall','1'),(1833,'enrol_meta','unenrolaction','3'),(1834,'enrol_meta','coursesort','sortorder'),(1835,'enrol_fee','expiredaction','3'),(1836,'enrol_fee','status','1'),(1837,'enrol_fee','cost','0'),(1838,'enrol_fee','currency','USD'),(1839,'enrol_fee','roleid','5'),(1840,'enrol_fee','enrolperiod','0'),(1841,'enrol_database','dbtype',''),(1842,'enrol_database','dbhost','localhost'),(1843,'enrol_database','dbuser',''),(1844,'enrol_database','dbpass',''),(1845,'enrol_database','dbname',''),(1846,'enrol_database','dbencoding','utf-8'),(1847,'enrol_database','dbsetupsql',''),(1848,'enrol_database','dbsybasequoting','0'),(1849,'enrol_database','debugdb','0'),(1850,'enrol_database','localcoursefield','idnumber'),(1851,'enrol_database','localuserfield','idnumber'),(1852,'enrol_database','localrolefield','shortname'),(1853,'enrol_database','localcategoryfield','id'),(1854,'enrol_database','remoteenroltable',''),(1855,'enrol_database','remotecoursefield',''),(1856,'enrol_database','remoteuserfield',''),(1857,'enrol_database','remoterolefield',''),(1858,'enrol_database','remoteotheruserfield',''),(1859,'enrol_database','defaultrole','5'),(1860,'enrol_database','ignorehiddencourses','0'),(1861,'enrol_database','unenrolaction','0'),(1862,'enrol_database','newcoursetable',''),(1863,'enrol_database','newcoursefullname','fullname'),(1864,'enrol_database','newcourseshortname','shortname'),(1865,'enrol_database','newcourseidnumber','idnumber'),(1866,'enrol_database','newcoursecategory',''),(1867,'enrol_database','defaultcategory','1'),(1868,'enrol_database','templatecourse',''),(1869,'enrol_flatfile','location',''),(1870,'enrol_flatfile','encoding','UTF-8'),(1871,'enrol_flatfile','mailstudents','0'),(1872,'enrol_flatfile','mailteachers','0'),(1873,'enrol_flatfile','mailadmins','0'),(1874,'enrol_flatfile','unenrolaction','3'),(1875,'enrol_flatfile','expiredaction','3'),(1876,'enrol_guest','requirepassword','0'),(1877,'enrol_guest','usepasswordpolicy','0'),(1878,'enrol_guest','showhint','0'),(1879,'enrol_guest','defaultenrol','1'),(1880,'enrol_guest','status','1'),(1881,'enrol_guest','status_adv',''),(1882,'enrol_imsenterprise','imsfilelocation',''),(1883,'enrol_imsenterprise','logtolocation',''),(1884,'enrol_imsenterprise','mailadmins','0'),(1885,'enrol_imsenterprise','createnewusers','0'),(1886,'enrol_imsenterprise','imsupdateusers','0'),(1887,'enrol_imsenterprise','imsdeleteusers','0'),(1888,'enrol_imsenterprise','fixcaseusernames','0'),(1889,'enrol_imsenterprise','fixcasepersonalnames','0'),(1890,'enrol_imsenterprise','imssourcedidfallback','0'),(1891,'enrol_imsenterprise','imsrolemap01','5'),(1892,'enrol_imsenterprise','imsrolemap02','3'),(1893,'enrol_imsenterprise','imsrolemap03','3'),(1894,'enrol_imsenterprise','imsrolemap04','5'),(1895,'enrol_imsenterprise','imsrolemap05','0'),(1896,'enrol_imsenterprise','imsrolemap06','4'),(1897,'enrol_imsenterprise','imsrolemap07','0'),(1898,'enrol_imsenterprise','imsrolemap08','4'),(1899,'enrol_imsenterprise','truncatecoursecodes','0'),(1900,'enrol_imsenterprise','createnewcourses','0'),(1901,'enrol_imsenterprise','updatecourses','0'),(1902,'enrol_imsenterprise','createnewcategories','0'),(1903,'enrol_imsenterprise','nestedcategories','0'),(1904,'enrol_imsenterprise','categoryidnumber','0'),(1905,'enrol_imsenterprise','categoryseparator',''),(1906,'enrol_imsenterprise','imsunenrol','0'),(1907,'enrol_imsenterprise','unenrolaction','0'),(1908,'enrol_imsenterprise','imscoursemapshortname','coursecode'),(1909,'enrol_imsenterprise','imscoursemapfullname','short'),(1910,'enrol_imsenterprise','imscoursemapsummary','ignore'),(1911,'enrol_imsenterprise','imsrestricttarget',''),(1912,'enrol_imsenterprise','imscapitafix','0'),(1913,'enrol_ldap','host_url',''),(1914,'enrol_ldap','start_tls','0'),(1915,'enrol_ldap','ldap_version','3'),(1916,'enrol_ldap','ldapencoding','utf-8'),(1917,'enrol_ldap','pagesize','250'),(1918,'enrol_ldap','bind_dn',''),(1919,'enrol_ldap','bind_pw',''),(1920,'enrol_ldap','course_search_sub','0'),(1921,'enrol_ldap','memberattribute_isdn','0'),(1922,'enrol_ldap','user_contexts',''),(1923,'enrol_ldap','user_search_sub','0'),(1924,'enrol_ldap','user_type','default'),(1925,'enrol_ldap','opt_deref','0'),(1926,'enrol_ldap','idnumber_attribute',''),(1927,'enrol_ldap','objectclass','(objectClass=*)'),(1928,'enrol_ldap','course_idnumber',''),(1929,'enrol_ldap','course_shortname',''),(1930,'enrol_ldap','course_fullname',''),(1931,'enrol_ldap','course_summary',''),(1932,'enrol_ldap','ignorehiddencourses','0'),(1933,'enrol_ldap','unenrolaction','0'),(1934,'enrol_ldap','autocreate','0'),(1935,'enrol_ldap','category','1'),(1936,'enrol_ldap','template',''),(1937,'enrol_ldap','course_shortname_updateonsync','0'),(1938,'enrol_ldap','course_fullname_updateonsync','0'),(1939,'enrol_ldap','course_summary_updateonsync','0'),(1940,'enrol_ldap','nested_groups','0'),(1941,'enrol_ldap','group_memberofattribute',''),(1942,'enrol_manual','expiredaction','1'),(1943,'enrol_manual','expirynotifyhour','6'),(1944,'enrol_manual','defaultenrol','1'),(1945,'enrol_manual','status','0'),(1946,'enrol_manual','roleid','5'),(1947,'enrol_manual','enrolstart','4'),(1948,'enrol_manual','enrolperiod','0'),(1949,'enrol_manual','expirynotify','0'),(1950,'enrol_manual','expirythreshold','86400'),(1951,'enrol_mnet','roleid','5'),(1952,'enrol_mnet','roleid_adv','1'),(1953,'enrol_paypal','paypalbusiness',''),(1954,'enrol_paypal','mailstudents','0'),(1955,'enrol_paypal','mailteachers','0'),(1956,'enrol_paypal','mailadmins','0'),(1957,'enrol_paypal','expiredaction','3'),(1958,'enrol_paypal','status','1'),(1959,'enrol_paypal','cost','0'),(1960,'enrol_paypal','currency','USD'),(1961,'enrol_paypal','roleid','5'),(1962,'enrol_paypal','enrolperiod','0'),(1963,'enrol_lti','emaildisplay','2'),(1964,'enrol_lti','city',''),(1965,'enrol_lti','country',''),(1966,'enrol_lti','timezone','99'),(1967,'enrol_lti','lang','en'),(1968,'enrol_lti','institution',''),(1969,'enrol_self','requirepassword','0'),(1970,'enrol_self','usepasswordpolicy','0'),(1971,'enrol_self','showhint','0'),(1972,'enrol_self','expiredaction','1'),(1973,'enrol_self','expirynotifyhour','6'),(1974,'enrol_self','defaultenrol','1'),(1975,'enrol_self','status','1'),(1976,'enrol_self','newenrols','1'),(1977,'enrol_self','groupkey','0'),(1978,'enrol_self','roleid','5'),(1979,'enrol_self','enrolperiod','0'),(1980,'enrol_self','expirynotify','0'),(1981,'enrol_self','expirythreshold','86400'),(1982,'enrol_self','longtimenosee','0'),(1983,'enrol_self','maxenrolled','0'),(1984,'enrol_self','sendcoursewelcomemessage','1'),(1985,'filter_urltolink','formats','1,4,0'),(1986,'filter_urltolink','embedimages','1'),(1987,'filter_emoticon','formats','1,4,0'),(1988,'filter_displayh5p','allowedsources',''),(1989,'filter_mathjaxloader','httpsurl','https://cdn.jsdelivr.net/npm/mathjax@2.7.9/MathJax.js'),(1990,'filter_mathjaxloader','texfiltercompatibility','0'),(1991,'filter_mathjaxloader','mathjaxconfig','\nMathJax.Hub.Config({\n    config: [\"Accessible.js\", \"Safe.js\"],\n    errorSettings: { message: [\"!\"] },\n    skipStartupTypeset: true,\n    messageStyle: \"none\"\n});\n'),(1992,'filter_mathjaxloader','additionaldelimiters',''),(1993,'filter_tex','latexpreamble','\\usepackage[latin1]{inputenc}\n\\usepackage{amsmath}\n\\usepackage{amsfonts}\n\\RequirePackage{amsmath,amssymb,latexsym}\n'),(1994,'filter_tex','latexbackground','#FFFFFF'),(1995,'filter_tex','density','120'),(1996,'filter_tex','pathlatex','/usr/bin/latex'),(1997,'filter_tex','pathdvips','/usr/bin/dvips'),(1998,'filter_tex','pathconvert','/usr/bin/convert'),(1999,'filter_tex','pathdvisvgm','/usr/bin/dvisvgm'),(2000,'filter_tex','pathmimetex',''),(2001,'filter_tex','convertformat','gif'),(2002,'local_asystgrade','apiendpoint',''),(2003,'logstore_database','dbdriver',''),(2004,'logstore_database','dbhost',''),(2005,'logstore_database','dbuser',''),(2006,'logstore_database','dbpass',''),(2007,'logstore_database','dbname',''),(2008,'logstore_database','dbtable',''),(2009,'logstore_database','dbpersist','0'),(2010,'logstore_database','dbsocket',''),(2011,'logstore_database','dbport',''),(2012,'logstore_database','dbschema',''),(2013,'logstore_database','dbcollation',''),(2014,'logstore_database','dbhandlesoptions','0'),(2015,'logstore_database','buffersize','50'),(2016,'logstore_database','jsonformat','1'),(2017,'logstore_database','logguests','0'),(2018,'logstore_database','includelevels','1,2,0'),(2019,'logstore_database','includeactions','c,r,u,d'),(2020,'logstore_standard','logguests','1'),(2021,'logstore_standard','jsonformat','1'),(2022,'logstore_standard','loglifetime','0'),(2023,'logstore_standard','buffersize','50'),(2024,'mlbackend_python','useserver','0'),(2025,'mlbackend_python','host',''),(2026,'mlbackend_python','port','0'),(2027,'mlbackend_python','secure','0'),(2028,'mlbackend_python','username','default'),(2029,'mlbackend_python','password',''),(2030,'media_videojs','videoextensions','html_video,media_source,.f4v,.flv'),(2031,'media_videojs','audioextensions','html_audio'),(2032,'media_videojs','youtube','1'),(2033,'media_videojs','videocssclass','video-js'),(2034,'media_videojs','audiocssclass','video-js'),(2035,'media_videojs','limitsize','1'),(2036,'media_vimeo','donottrack','0'),(2037,'media_youtube','nocookie','0'),(2038,'paygw_paypal','surcharge','0'),(2039,'qtype_multichoice','answerhowmany','1'),(2040,'qtype_multichoice','shuffleanswers','1'),(2041,'qtype_multichoice','answernumbering','abc'),(2042,'qtype_multichoice','showstandardinstruction','0'),(2043,'editor_atto','toolbar','collapse = collapse\nstyle1 = title, bold, italic\nlist = unorderedlist, orderedlist, indent\nlinks = link\nfiles = emojipicker, image, media, recordrtc, managefiles, h5p\naccessibility = accessibilitychecker, accessibilityhelper\nstyle2 = underline, strike, subscript, superscript\nalign = align\ninsert = equation, charmap, table, clear\nundo = undo\nother = html'),(2044,'editor_atto','autosavefrequency','60'),(2045,'atto_collapse','showgroups','6'),(2046,'atto_equation','librarygroup1','\n\\cdot\n\\times\n\\ast\n\\div\n\\diamond\n\\pm\n\\mp\n\\oplus\n\\ominus\n\\otimes\n\\oslash\n\\odot\n\\circ\n\\bullet\n\\asymp\n\\equiv\n\\subseteq\n\\supseteq\n\\leq\n\\geq\n\\preceq\n\\succeq\n\\sim\n\\simeq\n\\approx\n\\subset\n\\supset\n\\ll\n\\gg\n\\prec\n\\succ\n\\infty\n\\in\n\\ni\n\\forall\n\\exists\n\\neq\n'),(2047,'atto_equation','librarygroup2','\n\\leftarrow\n\\rightarrow\n\\uparrow\n\\downarrow\n\\leftrightarrow\n\\nearrow\n\\searrow\n\\swarrow\n\\nwarrow\n\\Leftarrow\n\\Rightarrow\n\\Uparrow\n\\Downarrow\n\\Leftrightarrow\n'),(2048,'atto_equation','librarygroup3','\n\\alpha\n\\beta\n\\gamma\n\\delta\n\\epsilon\n\\zeta\n\\eta\n\\theta\n\\iota\n\\kappa\n\\lambda\n\\mu\n\\nu\n\\xi\n\\pi\n\\rho\n\\sigma\n\\tau\n\\upsilon\n\\phi\n\\chi\n\\psi\n\\omega\n\\Gamma\n\\Delta\n\\Theta\n\\Lambda\n\\Xi\n\\Pi\n\\Sigma\n\\Upsilon\n\\Phi\n\\Psi\n\\Omega\n'),(2049,'atto_equation','librarygroup4','\n\\sum{a,b}\n\\sqrt[a]{b+c}\n\\int_{a}^{b}{c}\n\\iint_{a}^{b}{c}\n\\iiint_{a}^{b}{c}\n\\oint{a}\n(a)\n[a]\n\\lbrace{a}\\rbrace\n\\left| \\begin{matrix} a_1 & a_2 \\\\ a_3 & a_4 \\end{matrix} \\right|\n\\frac{a}{b+c}\n\\vec{a}\n\\binom {a} {b}\n{a \\brack b}\n{a \\brace b}\n'),(2050,'atto_recordrtc','allowedtypes','both'),(2051,'atto_recordrtc','audiobitrate','128000'),(2052,'atto_recordrtc','videobitrate','2500000'),(2053,'atto_recordrtc','audiotimelimit','120'),(2054,'atto_recordrtc','videotimelimit','120'),(2055,'atto_table','allowborders','0'),(2056,'atto_table','allowbackgroundcolour','0'),(2057,'atto_table','allowwidth','0'),(2058,'editor_tiny','branding','1'),(2059,'tiny_equation','librarygroup1','\n\\cdot\n\\times\n\\ast\n\\div\n\\diamond\n\\pm\n\\mp\n\\oplus\n\\ominus\n\\otimes\n\\oslash\n\\odot\n\\circ\n\\bullet\n\\asymp\n\\equiv\n\\subseteq\n\\supseteq\n\\leq\n\\geq\n\\preceq\n\\succeq\n\\sim\n\\simeq\n\\approx\n\\subset\n\\supset\n\\ll\n\\gg\n\\prec\n\\succ\n\\infty\n\\in\n\\ni\n\\forall\n\\exists\n\\neq\n'),(2060,'tiny_equation','librarygroup2','\n\\leftarrow\n\\rightarrow\n\\uparrow\n\\downarrow\n\\leftrightarrow\n\\nearrow\n\\searrow\n\\swarrow\n\\nwarrow\n\\Leftarrow\n\\Rightarrow\n\\Uparrow\n\\Downarrow\n\\Leftrightarrow\n'),(2061,'tiny_equation','librarygroup3','\n\\alpha\n\\beta\n\\gamma\n\\delta\n\\epsilon\n\\zeta\n\\eta\n\\theta\n\\iota\n\\kappa\n\\lambda\n\\mu\n\\nu\n\\xi\n\\pi\n\\rho\n\\sigma\n\\tau\n\\upsilon\n\\phi\n\\chi\n\\psi\n\\omega\n\\Gamma\n\\Delta\n\\Theta\n\\Lambda\n\\Xi\n\\Pi\n\\Sigma\n\\Upsilon\n\\Phi\n\\Psi\n\\Omega\n'),(2062,'tiny_equation','librarygroup4','\n\\sum{a,b}\n\\sqrt[a]{b+c}\n\\int_{a}^{b}{c}\n\\iint_{a}^{b}{c}\n\\iiint_{a}^{b}{c}\n\\oint{a}\n(a)\n[a]\n\\lbrace{a}\\rbrace\n\\left| \\begin{matrix} a_1 & a_2 \\\\ a_3 & a_4 \\end{matrix} \\right|\n\\frac{a}{b+c}\n\\vec{a}\n\\binom {a} {b}\n{a \\brack b}\n{a \\brace b}\n'),(2063,'tiny_premium','apikey',''),(2064,'tiny_recordrtc','allowedtypes','both'),(2065,'tiny_recordrtc','audiobitrate','128000'),(2066,'tiny_recordrtc','videobitrate','2500000'),(2067,'tiny_recordrtc','audiotimelimit','120'),(2068,'tiny_recordrtc','videotimelimit','120'),(2069,'tool_mobile','apppolicy',''),(2070,'tool_mobile','typeoflogin','1'),(2071,'tool_mobile','autologout','0'),(2072,'tool_mobile','autologouttime','86400'),(2073,'tool_mobile','qrcodetype','2'),(2074,'tool_mobile','qrkeyttl','600'),(2075,'tool_mobile','qrsameipcheck','1'),(2076,'tool_mobile','forcedurlscheme','moodlemobile'),(2077,'tool_mobile','minimumversion',''),(2078,'tool_mobile','autologinmintimebetweenreq','360'),(2079,'tool_mobile','enablesmartappbanners','0'),(2080,'tool_mobile','iosappid','633359593'),(2081,'tool_mobile','androidappid','com.moodle.moodlemobile'),(2082,'tool_mobile','setuplink','https://download.moodle.org/mobile'),(2083,'tool_mobile','forcelogout','0'),(2084,'tool_mobile','disabledfeatures',''),(2085,'tool_mobile','custommenuitems',''),(2086,'tool_mobile','filetypeexclusionlist',''),(2087,'tool_mobile','customlangstrings',''),(2088,'analytics','logstore','logstore_standard'),(2089,'tool_moodlenet','defaultmoodlenetname','MoodleNet Central'),(2090,'tool_moodlenet','defaultmoodlenet','https://moodle.net'),(2091,'theme_boost','themerev','1722414957');
/*!40000 ALTER TABLE `mdl_config_plugins` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `mdl_contentbank_content`
--

DROP TABLE IF EXISTS `mdl_contentbank_content`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `mdl_contentbank_content` (
  `id` bigint(10) NOT NULL AUTO_INCREMENT,
  `name` varchar(255) NOT NULL DEFAULT '',
  `contenttype` varchar(100) NOT NULL DEFAULT '',
  `contextid` bigint(10) NOT NULL,
  `visibility` tinyint(1) NOT NULL DEFAULT 1,
  `instanceid` bigint(10) DEFAULT NULL,
  `configdata` longtext DEFAULT NULL,
  `usercreated` bigint(10) NOT NULL,
  `usermodified` bigint(10) DEFAULT NULL,
  `timecreated` bigint(10) NOT NULL DEFAULT 0,
  `timemodified` bigint(10) DEFAULT 0,
  PRIMARY KEY (`id`),
  KEY `mdl_contcont_nam_ix` (`name`),
  KEY `mdl_contcont_conconins_ix` (`contextid`,`contenttype`,`instanceid`),
  KEY `mdl_contcont_con_ix` (`contextid`),
  KEY `mdl_contcont_use_ix` (`usermodified`),
  KEY `mdl_contcont_use2_ix` (`usercreated`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='This table stores content data in the content bank.';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `mdl_contentbank_content`
--

LOCK TABLES `mdl_contentbank_content` WRITE;
/*!40000 ALTER TABLE `mdl_contentbank_content` DISABLE KEYS */;
/*!40000 ALTER TABLE `mdl_contentbank_content` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `mdl_context`
--

DROP TABLE IF EXISTS `mdl_context`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `mdl_context` (
  `id` bigint(10) NOT NULL AUTO_INCREMENT,
  `contextlevel` bigint(10) NOT NULL DEFAULT 0,
  `instanceid` bigint(10) NOT NULL DEFAULT 0,
  `path` varchar(255) DEFAULT NULL,
  `depth` tinyint(2) NOT NULL DEFAULT 0,
  `locked` tinyint(2) NOT NULL DEFAULT 0,
  PRIMARY KEY (`id`),
  UNIQUE KEY `mdl_cont_conins_uix` (`contextlevel`,`instanceid`),
  KEY `mdl_cont_ins_ix` (`instanceid`),
  KEY `mdl_cont_pat_ix` (`path`)
) ENGINE=InnoDB AUTO_INCREMENT=27 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='one of these must be set';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `mdl_context`
--

LOCK TABLES `mdl_context` WRITE;
/*!40000 ALTER TABLE `mdl_context` DISABLE KEYS */;
INSERT INTO `mdl_context` (`id`, `contextlevel`, `instanceid`, `path`, `depth`, `locked`) VALUES (1,10,0,'/1',1,0),(2,50,1,'/1/2',2,0),(3,40,1,'/1/3',2,0),(4,30,1,'/1/4',2,0),(5,30,2,'/1/5',2,0),(6,80,1,'/1/6',2,0),(7,80,2,'/1/7',2,0),(8,80,3,'/1/8',2,0),(9,80,4,'/1/9',2,0),(10,80,5,'/1/10',2,0),(11,50,2,'/1/3/11',3,0),(12,70,1,'/1/3/11/12',4,0),(13,80,6,'/1/13',2,0),(14,80,7,'/1/14',2,0),(15,70,2,'/1/3/11/15',4,0),(16,80,8,'/1/5/16',3,0),(17,80,9,'/1/5/17',3,0),(18,80,10,'/1/5/18',3,0),(19,30,3,'/1/19',2,0),(20,30,4,'/1/20',2,0),(21,80,11,'/1/19/21',3,0),(22,80,12,'/1/19/22',3,0),(23,80,13,'/1/19/23',3,0),(24,80,14,'/1/20/24',3,0),(25,80,15,'/1/20/25',3,0),(26,80,16,'/1/20/26',3,0);
/*!40000 ALTER TABLE `mdl_context` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `mdl_context_temp`
--

DROP TABLE IF EXISTS `mdl_context_temp`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `mdl_context_temp` (
  `id` bigint(10) NOT NULL,
  `path` varchar(255) NOT NULL DEFAULT '',
  `depth` tinyint(2) NOT NULL,
  `locked` tinyint(2) NOT NULL DEFAULT 0,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='Used by build_context_path() in upgrade and cron to keep con';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `mdl_context_temp`
--

LOCK TABLES `mdl_context_temp` WRITE;
/*!40000 ALTER TABLE `mdl_context_temp` DISABLE KEYS */;
/*!40000 ALTER TABLE `mdl_context_temp` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `mdl_course`
--

DROP TABLE IF EXISTS `mdl_course`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `mdl_course` (
  `id` bigint(10) NOT NULL AUTO_INCREMENT,
  `category` bigint(10) NOT NULL DEFAULT 0,
  `sortorder` bigint(10) NOT NULL DEFAULT 0,
  `fullname` varchar(254) NOT NULL DEFAULT '',
  `shortname` varchar(255) NOT NULL DEFAULT '',
  `idnumber` varchar(100) NOT NULL DEFAULT '',
  `summary` longtext DEFAULT NULL,
  `summaryformat` tinyint(2) NOT NULL DEFAULT 0,
  `format` varchar(21) NOT NULL DEFAULT 'topics',
  `showgrades` tinyint(2) NOT NULL DEFAULT 1,
  `newsitems` mediumint(5) NOT NULL DEFAULT 1,
  `startdate` bigint(10) NOT NULL DEFAULT 0,
  `enddate` bigint(10) NOT NULL DEFAULT 0,
  `relativedatesmode` tinyint(1) NOT NULL DEFAULT 0,
  `marker` bigint(10) NOT NULL DEFAULT 0,
  `maxbytes` bigint(10) NOT NULL DEFAULT 0,
  `legacyfiles` smallint(4) NOT NULL DEFAULT 0,
  `showreports` smallint(4) NOT NULL DEFAULT 0,
  `visible` tinyint(1) NOT NULL DEFAULT 1,
  `visibleold` tinyint(1) NOT NULL DEFAULT 1,
  `downloadcontent` tinyint(1) DEFAULT NULL,
  `groupmode` smallint(4) NOT NULL DEFAULT 0,
  `groupmodeforce` smallint(4) NOT NULL DEFAULT 0,
  `defaultgroupingid` bigint(10) NOT NULL DEFAULT 0,
  `lang` varchar(30) NOT NULL DEFAULT '',
  `calendartype` varchar(30) NOT NULL DEFAULT '',
  `theme` varchar(50) NOT NULL DEFAULT '',
  `timecreated` bigint(10) NOT NULL DEFAULT 0,
  `timemodified` bigint(10) NOT NULL DEFAULT 0,
  `requested` tinyint(1) NOT NULL DEFAULT 0,
  `enablecompletion` tinyint(1) NOT NULL DEFAULT 0,
  `completionnotify` tinyint(1) NOT NULL DEFAULT 0,
  `cacherev` bigint(10) NOT NULL DEFAULT 0,
  `originalcourseid` bigint(10) DEFAULT NULL,
  `showactivitydates` tinyint(1) NOT NULL DEFAULT 0,
  `showcompletionconditions` tinyint(1) DEFAULT NULL,
  `pdfexportfont` varchar(50) DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `mdl_cour_cat_ix` (`category`),
  KEY `mdl_cour_idn_ix` (`idnumber`),
  KEY `mdl_cour_sho_ix` (`shortname`),
  KEY `mdl_cour_sor_ix` (`sortorder`),
  KEY `mdl_cour_ori_ix` (`originalcourseid`)
) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='Central course table';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `mdl_course`
--

LOCK TABLES `mdl_course` WRITE;
/*!40000 ALTER TABLE `mdl_course` DISABLE KEYS */;
INSERT INTO `mdl_course` (`id`, `category`, `sortorder`, `fullname`, `shortname`, `idnumber`, `summary`, `summaryformat`, `format`, `showgrades`, `newsitems`, `startdate`, `enddate`, `relativedatesmode`, `marker`, `maxbytes`, `legacyfiles`, `showreports`, `visible`, `visibleold`, `downloadcontent`, `groupmode`, `groupmodeforce`, `defaultgroupingid`, `lang`, `calendartype`, `theme`, `timecreated`, `timemodified`, `requested`, `enablecompletion`, `completionnotify`, `cacherev`, `originalcourseid`, `showactivitydates`, `showcompletionconditions`, `pdfexportfont`) VALUES (1,0,1,'Moodle LMS Site','Moodle','','',0,'site',1,3,0,0,0,0,0,0,0,1,1,NULL,0,0,0,'','','',1722414907,1722414950,0,0,0,1722414942,NULL,0,NULL,NULL),(2,1,10001,'Exemplary Course','Exemplary Course','','',1,'topics',1,5,1722463200,1753999200,0,0,0,0,0,1,1,NULL,0,0,0,'','','',1722415073,1722415073,0,1,0,1722415542,NULL,1,1,NULL);
/*!40000 ALTER TABLE `mdl_course` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `mdl_course_categories`
--

DROP TABLE IF EXISTS `mdl_course_categories`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `mdl_course_categories` (
  `id` bigint(10) NOT NULL AUTO_INCREMENT,
  `name` varchar(255) NOT NULL DEFAULT '',
  `idnumber` varchar(100) DEFAULT NULL,
  `description` longtext DEFAULT NULL,
  `descriptionformat` tinyint(2) NOT NULL DEFAULT 0,
  `parent` bigint(10) NOT NULL DEFAULT 0,
  `sortorder` bigint(10) NOT NULL DEFAULT 0,
  `coursecount` bigint(10) NOT NULL DEFAULT 0,
  `visible` tinyint(1) NOT NULL DEFAULT 1,
  `visibleold` tinyint(1) NOT NULL DEFAULT 1,
  `timemodified` bigint(10) NOT NULL DEFAULT 0,
  `depth` bigint(10) NOT NULL DEFAULT 0,
  `path` varchar(255) NOT NULL DEFAULT '',
  `theme` varchar(50) DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `mdl_courcate_par_ix` (`parent`)
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='Course categories';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `mdl_course_categories`
--

LOCK TABLES `mdl_course_categories` WRITE;
/*!40000 ALTER TABLE `mdl_course_categories` DISABLE KEYS */;
INSERT INTO `mdl_course_categories` (`id`, `name`, `idnumber`, `description`, `descriptionformat`, `parent`, `sortorder`, `coursecount`, `visible`, `visibleold`, `timemodified`, `depth`, `path`, `theme`) VALUES (1,'Category 1',NULL,NULL,1,0,10000,1,1,1,1722414907,1,'/1',NULL);
/*!40000 ALTER TABLE `mdl_course_categories` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `mdl_course_completion_aggr_methd`
--

DROP TABLE IF EXISTS `mdl_course_completion_aggr_methd`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `mdl_course_completion_aggr_methd` (
  `id` bigint(10) NOT NULL AUTO_INCREMENT,
  `course` bigint(10) NOT NULL DEFAULT 0,
  `criteriatype` bigint(10) DEFAULT NULL,
  `method` tinyint(1) NOT NULL DEFAULT 0,
  `value` decimal(10,5) DEFAULT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `mdl_courcompaggrmeth_coucr_uix` (`course`,`criteriatype`),
  KEY `mdl_courcompaggrmeth_cou_ix` (`course`),
  KEY `mdl_courcompaggrmeth_cri_ix` (`criteriatype`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='Course completion aggregation methods for criteria';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `mdl_course_completion_aggr_methd`
--

LOCK TABLES `mdl_course_completion_aggr_methd` WRITE;
/*!40000 ALTER TABLE `mdl_course_completion_aggr_methd` DISABLE KEYS */;
/*!40000 ALTER TABLE `mdl_course_completion_aggr_methd` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `mdl_course_completion_crit_compl`
--

DROP TABLE IF EXISTS `mdl_course_completion_crit_compl`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `mdl_course_completion_crit_compl` (
  `id` bigint(10) NOT NULL AUTO_INCREMENT,
  `userid` bigint(10) NOT NULL DEFAULT 0,
  `course` bigint(10) NOT NULL DEFAULT 0,
  `criteriaid` bigint(10) NOT NULL DEFAULT 0,
  `gradefinal` decimal(10,5) DEFAULT NULL,
  `unenroled` bigint(10) DEFAULT NULL,
  `timecompleted` bigint(10) DEFAULT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `mdl_courcompcritcomp_useco_uix` (`userid`,`course`,`criteriaid`),
  KEY `mdl_courcompcritcomp_use_ix` (`userid`),
  KEY `mdl_courcompcritcomp_cou_ix` (`course`),
  KEY `mdl_courcompcritcomp_cri_ix` (`criteriaid`),
  KEY `mdl_courcompcritcomp_tim_ix` (`timecompleted`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='Course completion user records';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `mdl_course_completion_crit_compl`
--

LOCK TABLES `mdl_course_completion_crit_compl` WRITE;
/*!40000 ALTER TABLE `mdl_course_completion_crit_compl` DISABLE KEYS */;
/*!40000 ALTER TABLE `mdl_course_completion_crit_compl` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `mdl_course_completion_criteria`
--

DROP TABLE IF EXISTS `mdl_course_completion_criteria`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `mdl_course_completion_criteria` (
  `id` bigint(10) NOT NULL AUTO_INCREMENT,
  `course` bigint(10) NOT NULL DEFAULT 0,
  `criteriatype` bigint(10) NOT NULL DEFAULT 0,
  `module` varchar(100) DEFAULT NULL,
  `moduleinstance` bigint(10) DEFAULT NULL,
  `courseinstance` bigint(10) DEFAULT NULL,
  `enrolperiod` bigint(10) DEFAULT NULL,
  `timeend` bigint(10) DEFAULT NULL,
  `gradepass` decimal(10,5) DEFAULT NULL,
  `role` bigint(10) DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `mdl_courcompcrit_cou_ix` (`course`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='Course completion criteria';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `mdl_course_completion_criteria`
--

LOCK TABLES `mdl_course_completion_criteria` WRITE;
/*!40000 ALTER TABLE `mdl_course_completion_criteria` DISABLE KEYS */;
/*!40000 ALTER TABLE `mdl_course_completion_criteria` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `mdl_course_completion_defaults`
--

DROP TABLE IF EXISTS `mdl_course_completion_defaults`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `mdl_course_completion_defaults` (
  `id` bigint(10) NOT NULL AUTO_INCREMENT,
  `course` bigint(10) NOT NULL,
  `module` bigint(10) NOT NULL,
  `completion` tinyint(1) NOT NULL DEFAULT 0,
  `completionview` tinyint(1) NOT NULL DEFAULT 0,
  `completionusegrade` tinyint(1) NOT NULL DEFAULT 0,
  `completionpassgrade` tinyint(1) NOT NULL DEFAULT 0,
  `completionexpected` bigint(10) NOT NULL DEFAULT 0,
  `customrules` longtext DEFAULT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `mdl_courcompdefa_coumod_uix` (`course`,`module`),
  KEY `mdl_courcompdefa_mod_ix` (`module`),
  KEY `mdl_courcompdefa_cou_ix` (`course`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='Default settings for activities completion';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `mdl_course_completion_defaults`
--

LOCK TABLES `mdl_course_completion_defaults` WRITE;
/*!40000 ALTER TABLE `mdl_course_completion_defaults` DISABLE KEYS */;
/*!40000 ALTER TABLE `mdl_course_completion_defaults` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `mdl_course_completions`
--

DROP TABLE IF EXISTS `mdl_course_completions`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `mdl_course_completions` (
  `id` bigint(10) NOT NULL AUTO_INCREMENT,
  `userid` bigint(10) NOT NULL DEFAULT 0,
  `course` bigint(10) NOT NULL DEFAULT 0,
  `timeenrolled` bigint(10) NOT NULL DEFAULT 0,
  `timestarted` bigint(10) NOT NULL DEFAULT 0,
  `timecompleted` bigint(10) DEFAULT NULL,
  `reaggregate` bigint(10) NOT NULL DEFAULT 0,
  PRIMARY KEY (`id`),
  UNIQUE KEY `mdl_courcomp_usecou_uix` (`userid`,`course`),
  KEY `mdl_courcomp_use_ix` (`userid`),
  KEY `mdl_courcomp_cou_ix` (`course`),
  KEY `mdl_courcomp_tim_ix` (`timecompleted`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='Course completion records';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `mdl_course_completions`
--

LOCK TABLES `mdl_course_completions` WRITE;
/*!40000 ALTER TABLE `mdl_course_completions` DISABLE KEYS */;
/*!40000 ALTER TABLE `mdl_course_completions` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `mdl_course_format_options`
--

DROP TABLE IF EXISTS `mdl_course_format_options`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `mdl_course_format_options` (
  `id` bigint(10) NOT NULL AUTO_INCREMENT,
  `courseid` bigint(10) NOT NULL,
  `format` varchar(21) NOT NULL DEFAULT '',
  `sectionid` bigint(10) NOT NULL DEFAULT 0,
  `name` varchar(100) NOT NULL DEFAULT '',
  `value` longtext DEFAULT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `mdl_courformopti_couforsec_uix` (`courseid`,`format`,`sectionid`,`name`),
  KEY `mdl_courformopti_cou_ix` (`courseid`)
) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='Stores format-specific options for the course or course sect';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `mdl_course_format_options`
--

LOCK TABLES `mdl_course_format_options` WRITE;
/*!40000 ALTER TABLE `mdl_course_format_options` DISABLE KEYS */;
INSERT INTO `mdl_course_format_options` (`id`, `courseid`, `format`, `sectionid`, `name`, `value`) VALUES (1,1,'site',0,'numsections','1'),(2,2,'topics',0,'hiddensections','1'),(3,2,'topics',0,'coursedisplay','0');
/*!40000 ALTER TABLE `mdl_course_format_options` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `mdl_course_modules`
--

DROP TABLE IF EXISTS `mdl_course_modules`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `mdl_course_modules` (
  `id` bigint(10) NOT NULL AUTO_INCREMENT,
  `course` bigint(10) NOT NULL DEFAULT 0,
  `module` bigint(10) NOT NULL DEFAULT 0,
  `instance` bigint(10) NOT NULL DEFAULT 0,
  `section` bigint(10) NOT NULL DEFAULT 0,
  `idnumber` varchar(100) DEFAULT NULL,
  `added` bigint(10) NOT NULL DEFAULT 0,
  `score` smallint(4) NOT NULL DEFAULT 0,
  `indent` mediumint(5) NOT NULL DEFAULT 0,
  `visible` tinyint(1) NOT NULL DEFAULT 1,
  `visibleoncoursepage` tinyint(1) NOT NULL DEFAULT 1,
  `visibleold` tinyint(1) NOT NULL DEFAULT 1,
  `groupmode` smallint(4) NOT NULL DEFAULT 0,
  `groupingid` bigint(10) NOT NULL DEFAULT 0,
  `completion` tinyint(1) NOT NULL DEFAULT 0,
  `completiongradeitemnumber` bigint(10) DEFAULT NULL,
  `completionview` tinyint(1) NOT NULL DEFAULT 0,
  `completionexpected` bigint(10) NOT NULL DEFAULT 0,
  `completionpassgrade` tinyint(1) NOT NULL DEFAULT 0,
  `showdescription` tinyint(1) NOT NULL DEFAULT 0,
  `availability` longtext DEFAULT NULL,
  `deletioninprogress` tinyint(1) NOT NULL DEFAULT 0,
  `downloadcontent` tinyint(1) DEFAULT 1,
  `lang` varchar(30) DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `mdl_courmodu_vis_ix` (`visible`),
  KEY `mdl_courmodu_cou_ix` (`course`),
  KEY `mdl_courmodu_mod_ix` (`module`),
  KEY `mdl_courmodu_ins_ix` (`instance`),
  KEY `mdl_courmodu_idncou_ix` (`idnumber`,`course`),
  KEY `mdl_courmodu_gro_ix` (`groupingid`)
) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='course_modules table retrofitted from MySQL';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `mdl_course_modules`
--

LOCK TABLES `mdl_course_modules` WRITE;
/*!40000 ALTER TABLE `mdl_course_modules` DISABLE KEYS */;
INSERT INTO `mdl_course_modules` (`id`, `course`, `module`, `instance`, `section`, `idnumber`, `added`, `score`, `indent`, `visible`, `visibleoncoursepage`, `visibleold`, `groupmode`, `groupingid`, `completion`, `completiongradeitemnumber`, `completionview`, `completionexpected`, `completionpassgrade`, `showdescription`, `availability`, `deletioninprogress`, `downloadcontent`, `lang`) VALUES (1,2,9,1,1,NULL,1722415073,0,0,1,1,1,0,0,0,NULL,0,0,0,0,NULL,0,1,NULL),(2,2,17,1,2,'',1722415540,0,0,1,1,1,0,0,0,NULL,0,0,0,0,NULL,0,1,'');
/*!40000 ALTER TABLE `mdl_course_modules` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `mdl_course_modules_completion`
--

DROP TABLE IF EXISTS `mdl_course_modules_completion`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `mdl_course_modules_completion` (
  `id` bigint(10) NOT NULL AUTO_INCREMENT,
  `coursemoduleid` bigint(10) NOT NULL,
  `userid` bigint(10) NOT NULL,
  `completionstate` tinyint(1) NOT NULL,
  `overrideby` bigint(10) DEFAULT NULL,
  `timemodified` bigint(10) NOT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `mdl_courmoducomp_usecou_uix` (`userid`,`coursemoduleid`),
  KEY `mdl_courmoducomp_cou_ix` (`coursemoduleid`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='Stores the completion state (completed or not completed, etc';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `mdl_course_modules_completion`
--

LOCK TABLES `mdl_course_modules_completion` WRITE;
/*!40000 ALTER TABLE `mdl_course_modules_completion` DISABLE KEYS */;
/*!40000 ALTER TABLE `mdl_course_modules_completion` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `mdl_course_modules_viewed`
--

DROP TABLE IF EXISTS `mdl_course_modules_viewed`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `mdl_course_modules_viewed` (
  `id` bigint(10) NOT NULL AUTO_INCREMENT,
  `coursemoduleid` bigint(10) NOT NULL,
  `userid` bigint(10) NOT NULL,
  `timecreated` bigint(10) NOT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `mdl_courmoduview_usecou_uix` (`userid`,`coursemoduleid`),
  KEY `mdl_courmoduview_cou_ix` (`coursemoduleid`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='Tracks the completion viewed (viewed with cmid/userid and ot';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `mdl_course_modules_viewed`
--

LOCK TABLES `mdl_course_modules_viewed` WRITE;
/*!40000 ALTER TABLE `mdl_course_modules_viewed` DISABLE KEYS */;
/*!40000 ALTER TABLE `mdl_course_modules_viewed` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `mdl_course_published`
--

DROP TABLE IF EXISTS `mdl_course_published`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `mdl_course_published` (
  `id` bigint(10) NOT NULL AUTO_INCREMENT,
  `huburl` varchar(255) DEFAULT NULL,
  `courseid` bigint(10) NOT NULL,
  `timepublished` bigint(10) NOT NULL,
  `enrollable` tinyint(1) NOT NULL DEFAULT 1,
  `hubcourseid` bigint(10) NOT NULL,
  `status` tinyint(1) DEFAULT 0,
  `timechecked` bigint(10) DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `mdl_courpubl_hub_ix` (`hubcourseid`),
  KEY `mdl_courpubl_cou_ix` (`courseid`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='Information about how and when an local courses were publish';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `mdl_course_published`
--

LOCK TABLES `mdl_course_published` WRITE;
/*!40000 ALTER TABLE `mdl_course_published` DISABLE KEYS */;
/*!40000 ALTER TABLE `mdl_course_published` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `mdl_course_request`
--

DROP TABLE IF EXISTS `mdl_course_request`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `mdl_course_request` (
  `id` bigint(10) NOT NULL AUTO_INCREMENT,
  `fullname` varchar(254) NOT NULL DEFAULT '',
  `shortname` varchar(100) NOT NULL DEFAULT '',
  `summary` longtext NOT NULL,
  `summaryformat` tinyint(2) NOT NULL DEFAULT 0,
  `category` bigint(10) NOT NULL DEFAULT 0,
  `reason` longtext NOT NULL,
  `requester` bigint(10) NOT NULL DEFAULT 0,
  `password` varchar(50) NOT NULL DEFAULT '',
  PRIMARY KEY (`id`),
  KEY `mdl_courrequ_sho_ix` (`shortname`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='course requests';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `mdl_course_request`
--

LOCK TABLES `mdl_course_request` WRITE;
/*!40000 ALTER TABLE `mdl_course_request` DISABLE KEYS */;
/*!40000 ALTER TABLE `mdl_course_request` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `mdl_course_sections`
--

DROP TABLE IF EXISTS `mdl_course_sections`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `mdl_course_sections` (
  `id` bigint(10) NOT NULL AUTO_INCREMENT,
  `course` bigint(10) NOT NULL DEFAULT 0,
  `section` bigint(10) NOT NULL DEFAULT 0,
  `name` varchar(255) DEFAULT NULL,
  `summary` longtext DEFAULT NULL,
  `summaryformat` tinyint(2) NOT NULL DEFAULT 0,
  `sequence` longtext DEFAULT NULL,
  `visible` tinyint(1) NOT NULL DEFAULT 1,
  `availability` longtext DEFAULT NULL,
  `timemodified` bigint(10) NOT NULL DEFAULT 0,
  PRIMARY KEY (`id`),
  UNIQUE KEY `mdl_coursect_cousec_uix` (`course`,`section`)
) ENGINE=InnoDB AUTO_INCREMENT=6 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='to define the sections for each course';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `mdl_course_sections`
--

LOCK TABLES `mdl_course_sections` WRITE;
/*!40000 ALTER TABLE `mdl_course_sections` DISABLE KEYS */;
INSERT INTO `mdl_course_sections` (`id`, `course`, `section`, `name`, `summary`, `summaryformat`, `sequence`, `visible`, `availability`, `timemodified`) VALUES (1,2,0,NULL,'',1,'1',1,NULL,1722415073),(2,2,1,NULL,'',1,'2',1,NULL,1722415073),(3,2,2,NULL,'',1,'',1,NULL,1722415073),(4,2,3,NULL,'',1,'',1,NULL,1722415073),(5,2,4,NULL,'',1,'',1,NULL,1722415073);
/*!40000 ALTER TABLE `mdl_course_sections` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `mdl_customfield_category`
--

DROP TABLE IF EXISTS `mdl_customfield_category`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `mdl_customfield_category` (
  `id` bigint(10) NOT NULL AUTO_INCREMENT,
  `name` varchar(400) NOT NULL DEFAULT '',
  `description` longtext DEFAULT NULL,
  `descriptionformat` bigint(10) DEFAULT NULL,
  `sortorder` bigint(10) DEFAULT NULL,
  `timecreated` bigint(10) NOT NULL,
  `timemodified` bigint(10) NOT NULL,
  `component` varchar(100) NOT NULL DEFAULT '',
  `area` varchar(100) NOT NULL DEFAULT '',
  `itemid` bigint(10) NOT NULL DEFAULT 0,
  `contextid` bigint(10) DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `mdl_custcate_comareitesor_ix` (`component`,`area`,`itemid`,`sortorder`),
  KEY `mdl_custcate_con_ix` (`contextid`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='core_customfield category table';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `mdl_customfield_category`
--

LOCK TABLES `mdl_customfield_category` WRITE;
/*!40000 ALTER TABLE `mdl_customfield_category` DISABLE KEYS */;
/*!40000 ALTER TABLE `mdl_customfield_category` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `mdl_customfield_data`
--

DROP TABLE IF EXISTS `mdl_customfield_data`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `mdl_customfield_data` (
  `id` bigint(10) NOT NULL AUTO_INCREMENT,
  `fieldid` bigint(10) NOT NULL,
  `instanceid` bigint(10) NOT NULL,
  `intvalue` bigint(10) DEFAULT NULL,
  `decvalue` decimal(10,5) DEFAULT NULL,
  `shortcharvalue` varchar(255) DEFAULT NULL,
  `charvalue` varchar(1333) DEFAULT NULL,
  `value` longtext NOT NULL,
  `valueformat` bigint(10) NOT NULL,
  `timecreated` bigint(10) NOT NULL,
  `timemodified` bigint(10) NOT NULL,
  `contextid` bigint(10) DEFAULT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `mdl_custdata_insfie_uix` (`instanceid`,`fieldid`),
  KEY `mdl_custdata_fieint_ix` (`fieldid`,`intvalue`),
  KEY `mdl_custdata_fiesho_ix` (`fieldid`,`shortcharvalue`),
  KEY `mdl_custdata_fiedec_ix` (`fieldid`,`decvalue`),
  KEY `mdl_custdata_fie_ix` (`fieldid`),
  KEY `mdl_custdata_con_ix` (`contextid`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='core_customfield data table';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `mdl_customfield_data`
--

LOCK TABLES `mdl_customfield_data` WRITE;
/*!40000 ALTER TABLE `mdl_customfield_data` DISABLE KEYS */;
/*!40000 ALTER TABLE `mdl_customfield_data` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `mdl_customfield_field`
--

DROP TABLE IF EXISTS `mdl_customfield_field`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `mdl_customfield_field` (
  `id` bigint(10) NOT NULL AUTO_INCREMENT,
  `shortname` varchar(100) NOT NULL DEFAULT '',
  `name` varchar(400) NOT NULL DEFAULT '',
  `type` varchar(100) NOT NULL DEFAULT '',
  `description` longtext DEFAULT NULL,
  `descriptionformat` bigint(10) DEFAULT NULL,
  `sortorder` bigint(10) DEFAULT NULL,
  `categoryid` bigint(10) DEFAULT NULL,
  `configdata` longtext DEFAULT NULL,
  `timecreated` bigint(10) NOT NULL,
  `timemodified` bigint(10) NOT NULL,
  PRIMARY KEY (`id`),
  KEY `mdl_custfiel_catsor_ix` (`categoryid`,`sortorder`),
  KEY `mdl_custfiel_cat_ix` (`categoryid`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='core_customfield field table';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `mdl_customfield_field`
--

LOCK TABLES `mdl_customfield_field` WRITE;
/*!40000 ALTER TABLE `mdl_customfield_field` DISABLE KEYS */;
/*!40000 ALTER TABLE `mdl_customfield_field` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `mdl_data`
--

DROP TABLE IF EXISTS `mdl_data`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `mdl_data` (
  `id` bigint(10) NOT NULL AUTO_INCREMENT,
  `course` bigint(10) NOT NULL DEFAULT 0,
  `name` varchar(255) NOT NULL DEFAULT '',
  `intro` longtext NOT NULL,
  `introformat` smallint(4) NOT NULL DEFAULT 0,
  `comments` smallint(4) NOT NULL DEFAULT 0,
  `timeavailablefrom` bigint(10) NOT NULL DEFAULT 0,
  `timeavailableto` bigint(10) NOT NULL DEFAULT 0,
  `timeviewfrom` bigint(10) NOT NULL DEFAULT 0,
  `timeviewto` bigint(10) NOT NULL DEFAULT 0,
  `requiredentries` int(8) NOT NULL DEFAULT 0,
  `requiredentriestoview` int(8) NOT NULL DEFAULT 0,
  `maxentries` int(8) NOT NULL DEFAULT 0,
  `rssarticles` smallint(4) NOT NULL DEFAULT 0,
  `singletemplate` longtext DEFAULT NULL,
  `listtemplate` longtext DEFAULT NULL,
  `listtemplateheader` longtext DEFAULT NULL,
  `listtemplatefooter` longtext DEFAULT NULL,
  `addtemplate` longtext DEFAULT NULL,
  `rsstemplate` longtext DEFAULT NULL,
  `rsstitletemplate` longtext DEFAULT NULL,
  `csstemplate` longtext DEFAULT NULL,
  `jstemplate` longtext DEFAULT NULL,
  `asearchtemplate` longtext DEFAULT NULL,
  `approval` smallint(4) NOT NULL DEFAULT 0,
  `manageapproved` smallint(4) NOT NULL DEFAULT 1,
  `scale` bigint(10) NOT NULL DEFAULT 0,
  `assessed` bigint(10) NOT NULL DEFAULT 0,
  `assesstimestart` bigint(10) NOT NULL DEFAULT 0,
  `assesstimefinish` bigint(10) NOT NULL DEFAULT 0,
  `defaultsort` bigint(10) NOT NULL DEFAULT 0,
  `defaultsortdir` smallint(4) NOT NULL DEFAULT 0,
  `editany` smallint(4) NOT NULL DEFAULT 0,
  `notification` bigint(10) NOT NULL DEFAULT 0,
  `timemodified` bigint(10) NOT NULL DEFAULT 0,
  `config` longtext DEFAULT NULL,
  `completionentries` bigint(10) DEFAULT 0,
  PRIMARY KEY (`id`),
  KEY `mdl_data_cou_ix` (`course`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='all database activities';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `mdl_data`
--

LOCK TABLES `mdl_data` WRITE;
/*!40000 ALTER TABLE `mdl_data` DISABLE KEYS */;
/*!40000 ALTER TABLE `mdl_data` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `mdl_data_content`
--

DROP TABLE IF EXISTS `mdl_data_content`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `mdl_data_content` (
  `id` bigint(10) NOT NULL AUTO_INCREMENT,
  `fieldid` bigint(10) NOT NULL DEFAULT 0,
  `recordid` bigint(10) NOT NULL DEFAULT 0,
  `content` longtext DEFAULT NULL,
  `content1` longtext DEFAULT NULL,
  `content2` longtext DEFAULT NULL,
  `content3` longtext DEFAULT NULL,
  `content4` longtext DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `mdl_datacont_rec_ix` (`recordid`),
  KEY `mdl_datacont_fie_ix` (`fieldid`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='the content introduced in each record/fields';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `mdl_data_content`
--

LOCK TABLES `mdl_data_content` WRITE;
/*!40000 ALTER TABLE `mdl_data_content` DISABLE KEYS */;
/*!40000 ALTER TABLE `mdl_data_content` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `mdl_data_fields`
--

DROP TABLE IF EXISTS `mdl_data_fields`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `mdl_data_fields` (
  `id` bigint(10) NOT NULL AUTO_INCREMENT,
  `dataid` bigint(10) NOT NULL DEFAULT 0,
  `type` varchar(255) NOT NULL DEFAULT '',
For faster browsing, not all history is shown. View entire blame