From b8cd96e37128010558b1c81d828c69069dbccc23 Mon Sep 17 00:00:00 2001 From: cahrens Date: Wed, 20 Jul 2016 15:44:47 -0400 Subject: [PATCH] Delete XBlockDisableConfig model. TNL-4672 --- common/djangoapps/xblock_django/admin.py | 5 +-- .../0004_delete_xblock_disable_config.py | 21 ++++++++++ common/djangoapps/xblock_django/models.py | 37 ----------------- .../test/db_cache/bok_choy_data_default.json | 2 +- .../bok_choy_migrations_data_default.sql | 4 +- ...migrations_data_student_module_history.sql | 4 +- .../test/db_cache/bok_choy_schema_default.sql | 39 +++++++++--------- ...bok_choy_schema_student_module_history.sql | 2 +- common/test/db_cache/lettuce.db | Bin 1496064 -> 1549312 bytes .../lettuce_student_module_history.db | Bin 21504 -> 22528 bytes 10 files changed, 48 insertions(+), 66 deletions(-) create mode 100644 common/djangoapps/xblock_django/migrations/0004_delete_xblock_disable_config.py diff --git a/common/djangoapps/xblock_django/admin.py b/common/djangoapps/xblock_django/admin.py index 1f9cc6a20a..0c36384c89 100644 --- a/common/djangoapps/xblock_django/admin.py +++ b/common/djangoapps/xblock_django/admin.py @@ -5,14 +5,11 @@ Django admin dashboard configuration. from django.contrib import admin from config_models.admin import ConfigurationModelAdmin, KeyedConfigurationModelAdmin from xblock_django.models import ( - XBlockDisableConfig, XBlockConfiguration, XBlockStudioConfiguration, XBlockStudioConfigurationFlag + XBlockConfiguration, XBlockStudioConfiguration, XBlockStudioConfigurationFlag ) from django.utils.translation import ugettext_lazy as _ -admin.site.register(XBlockDisableConfig, ConfigurationModelAdmin) - - class XBlockConfigurationAdmin(KeyedConfigurationModelAdmin): """ Admin for XBlockConfiguration. diff --git a/common/djangoapps/xblock_django/migrations/0004_delete_xblock_disable_config.py b/common/djangoapps/xblock_django/migrations/0004_delete_xblock_disable_config.py new file mode 100644 index 0000000000..44715cf286 --- /dev/null +++ b/common/djangoapps/xblock_django/migrations/0004_delete_xblock_disable_config.py @@ -0,0 +1,21 @@ +# -*- coding: utf-8 -*- +from __future__ import unicode_literals + +from django.db import migrations, models + + +class Migration(migrations.Migration): + + dependencies = [ + ('xblock_django', '0003_add_new_config_models'), + ] + + operations = [ + migrations.RemoveField( + model_name='xblockdisableconfig', + name='changed_by', + ), + migrations.DeleteModel( + name='XBlockDisableConfig', + ), + ] diff --git a/common/djangoapps/xblock_django/models.py b/common/djangoapps/xblock_django/models.py index bdac48d963..5233459550 100644 --- a/common/djangoapps/xblock_django/models.py +++ b/common/djangoapps/xblock_django/models.py @@ -11,43 +11,6 @@ from django.db import models from config_models.models import ConfigurationModel -class XBlockDisableConfig(ConfigurationModel): - """ - Configuration for disabling and deprecating XBlocks. - """ - - class Meta(ConfigurationModel.Meta): - app_label = 'xblock_django' - - disabled_blocks = TextField( - default='', blank=True, - help_text=_('Space-separated list of XBlocks which should not render.') - ) - - disabled_create_blocks = TextField( - default='', blank=True, - help_text=_( - "Space-separated list of XBlock types whose creation to disable in Studio." - ) - ) - - @classmethod - def is_block_type_disabled(cls, block_type): - """ Return True if block_type is disabled. """ - - config = cls.current() - if not config.enabled: - return False - - return block_type in config.disabled_blocks.split() - - def __unicode__(self): - config = XBlockDisableConfig.current() - return u"Disabled xblocks = {disabled_xblocks}".format( - disabled_xblocks=config.disabled_blocks - ) - - class XBlockConfiguration(ConfigurationModel): """ XBlock configuration used by both LMS and Studio, and not specific to a particular template. diff --git a/common/test/db_cache/bok_choy_data_default.json b/common/test/db_cache/bok_choy_data_default.json index a64aadd0c4..2d0d76e724 100644 --- a/common/test/db_cache/bok_choy_data_default.json +++ b/common/test/db_cache/bok_choy_data_default.json @@ -1 +1 @@ -[{"fields": {"model": "apiaccessrequest", "app_label": "api_admin"}, "model": "contenttypes.contenttype", "pk": 1}, {"fields": {"model": "permission", "app_label": "auth"}, "model": "contenttypes.contenttype", "pk": 2}, {"fields": {"model": "group", "app_label": "auth"}, "model": "contenttypes.contenttype", "pk": 3}, {"fields": {"model": "user", "app_label": "auth"}, "model": "contenttypes.contenttype", "pk": 4}, {"fields": {"model": "contenttype", "app_label": "contenttypes"}, "model": "contenttypes.contenttype", "pk": 5}, {"fields": {"model": "redirect", "app_label": "redirects"}, "model": "contenttypes.contenttype", "pk": 6}, {"fields": {"model": "session", "app_label": "sessions"}, "model": "contenttypes.contenttype", "pk": 7}, {"fields": {"model": "site", "app_label": "sites"}, "model": "contenttypes.contenttype", "pk": 8}, {"fields": {"model": "taskmeta", "app_label": "djcelery"}, "model": "contenttypes.contenttype", "pk": 9}, {"fields": {"model": "tasksetmeta", "app_label": "djcelery"}, "model": "contenttypes.contenttype", "pk": 10}, {"fields": {"model": "intervalschedule", "app_label": "djcelery"}, "model": "contenttypes.contenttype", "pk": 11}, {"fields": {"model": "crontabschedule", "app_label": "djcelery"}, "model": "contenttypes.contenttype", "pk": 12}, {"fields": {"model": "periodictasks", "app_label": "djcelery"}, "model": "contenttypes.contenttype", "pk": 13}, {"fields": {"model": "periodictask", "app_label": "djcelery"}, "model": "contenttypes.contenttype", "pk": 14}, {"fields": {"model": "workerstate", "app_label": "djcelery"}, "model": "contenttypes.contenttype", "pk": 15}, {"fields": {"model": "taskstate", "app_label": "djcelery"}, "model": "contenttypes.contenttype", "pk": 16}, {"fields": {"model": "globalstatusmessage", "app_label": "status"}, "model": "contenttypes.contenttype", "pk": 17}, {"fields": {"model": "coursemessage", "app_label": "status"}, "model": "contenttypes.contenttype", "pk": 18}, {"fields": {"model": "assetbaseurlconfig", "app_label": "static_replace"}, "model": "contenttypes.contenttype", "pk": 19}, {"fields": {"model": "assetexcludedextensionsconfig", "app_label": "static_replace"}, "model": "contenttypes.contenttype", "pk": 20}, {"fields": {"model": "courseassetcachettlconfig", "app_label": "contentserver"}, "model": "contenttypes.contenttype", "pk": 21}, {"fields": {"model": "cdnuseragentsconfig", "app_label": "contentserver"}, "model": "contenttypes.contenttype", "pk": 22}, {"fields": {"model": "sitetheme", "app_label": "theming"}, "model": "contenttypes.contenttype", "pk": 23}, {"fields": {"model": "siteconfiguration", "app_label": "site_configuration"}, "model": "contenttypes.contenttype", "pk": 24}, {"fields": {"model": "siteconfigurationhistory", "app_label": "site_configuration"}, "model": "contenttypes.contenttype", "pk": 25}, {"fields": {"model": "studentmodule", "app_label": "courseware"}, "model": "contenttypes.contenttype", "pk": 26}, {"fields": {"model": "studentmodulehistory", "app_label": "courseware"}, "model": "contenttypes.contenttype", "pk": 27}, {"fields": {"model": "xmoduleuserstatesummaryfield", "app_label": "courseware"}, "model": "contenttypes.contenttype", "pk": 28}, {"fields": {"model": "xmodulestudentprefsfield", "app_label": "courseware"}, "model": "contenttypes.contenttype", "pk": 29}, {"fields": {"model": "xmodulestudentinfofield", "app_label": "courseware"}, "model": "contenttypes.contenttype", "pk": 30}, {"fields": {"model": "offlinecomputedgrade", "app_label": "courseware"}, "model": "contenttypes.contenttype", "pk": 31}, {"fields": {"model": "offlinecomputedgradelog", "app_label": "courseware"}, "model": "contenttypes.contenttype", "pk": 32}, {"fields": {"model": "studentfieldoverride", "app_label": "courseware"}, "model": "contenttypes.contenttype", "pk": 33}, {"fields": {"model": "anonymoususerid", "app_label": "student"}, "model": "contenttypes.contenttype", "pk": 34}, {"fields": {"model": "userstanding", "app_label": "student"}, "model": "contenttypes.contenttype", "pk": 35}, {"fields": {"model": "userprofile", "app_label": "student"}, "model": "contenttypes.contenttype", "pk": 36}, {"fields": {"model": "usersignupsource", "app_label": "student"}, "model": "contenttypes.contenttype", "pk": 37}, {"fields": {"model": "usertestgroup", "app_label": "student"}, "model": "contenttypes.contenttype", "pk": 38}, {"fields": {"model": "registration", "app_label": "student"}, "model": "contenttypes.contenttype", "pk": 39}, {"fields": {"model": "pendingnamechange", "app_label": "student"}, "model": "contenttypes.contenttype", "pk": 40}, {"fields": {"model": "pendingemailchange", "app_label": "student"}, "model": "contenttypes.contenttype", "pk": 41}, {"fields": {"model": "passwordhistory", "app_label": "student"}, "model": "contenttypes.contenttype", "pk": 42}, {"fields": {"model": "loginfailures", "app_label": "student"}, "model": "contenttypes.contenttype", "pk": 43}, {"fields": {"model": "historicalcourseenrollment", "app_label": "student"}, "model": "contenttypes.contenttype", "pk": 44}, {"fields": {"model": "courseenrollment", "app_label": "student"}, "model": "contenttypes.contenttype", "pk": 45}, {"fields": {"model": "manualenrollmentaudit", "app_label": "student"}, "model": "contenttypes.contenttype", "pk": 46}, {"fields": {"model": "courseenrollmentallowed", "app_label": "student"}, "model": "contenttypes.contenttype", "pk": 47}, {"fields": {"model": "courseaccessrole", "app_label": "student"}, "model": "contenttypes.contenttype", "pk": 48}, {"fields": {"model": "dashboardconfiguration", "app_label": "student"}, "model": "contenttypes.contenttype", "pk": 49}, {"fields": {"model": "linkedinaddtoprofileconfiguration", "app_label": "student"}, "model": "contenttypes.contenttype", "pk": 50}, {"fields": {"model": "entranceexamconfiguration", "app_label": "student"}, "model": "contenttypes.contenttype", "pk": 51}, {"fields": {"model": "languageproficiency", "app_label": "student"}, "model": "contenttypes.contenttype", "pk": 52}, {"fields": {"model": "courseenrollmentattribute", "app_label": "student"}, "model": "contenttypes.contenttype", "pk": 53}, {"fields": {"model": "enrollmentrefundconfiguration", "app_label": "student"}, "model": "contenttypes.contenttype", "pk": 54}, {"fields": {"model": "userattribute", "app_label": "student"}, "model": "contenttypes.contenttype", "pk": 55}, {"fields": {"model": "logoutviewconfiguration", "app_label": "student"}, "model": "contenttypes.contenttype", "pk": 56}, {"fields": {"model": "trackinglog", "app_label": "track"}, "model": "contenttypes.contenttype", "pk": 57}, {"fields": {"model": "ratelimitconfiguration", "app_label": "util"}, "model": "contenttypes.contenttype", "pk": 58}, {"fields": {"model": "certificatewhitelist", "app_label": "certificates"}, "model": "contenttypes.contenttype", "pk": 59}, {"fields": {"model": "generatedcertificate", "app_label": "certificates"}, "model": "contenttypes.contenttype", "pk": 60}, {"fields": {"model": "certificategenerationhistory", "app_label": "certificates"}, "model": "contenttypes.contenttype", "pk": 61}, {"fields": {"model": "certificateinvalidation", "app_label": "certificates"}, "model": "contenttypes.contenttype", "pk": 62}, {"fields": {"model": "examplecertificateset", "app_label": "certificates"}, "model": "contenttypes.contenttype", "pk": 63}, {"fields": {"model": "examplecertificate", "app_label": "certificates"}, "model": "contenttypes.contenttype", "pk": 64}, {"fields": {"model": "certificategenerationcoursesetting", "app_label": "certificates"}, "model": "contenttypes.contenttype", "pk": 65}, {"fields": {"model": "certificategenerationconfiguration", "app_label": "certificates"}, "model": "contenttypes.contenttype", "pk": 66}, {"fields": {"model": "certificatehtmlviewconfiguration", "app_label": "certificates"}, "model": "contenttypes.contenttype", "pk": 67}, {"fields": {"model": "certificatetemplate", "app_label": "certificates"}, "model": "contenttypes.contenttype", "pk": 68}, {"fields": {"model": "certificatetemplateasset", "app_label": "certificates"}, "model": "contenttypes.contenttype", "pk": 69}, {"fields": {"model": "instructortask", "app_label": "instructor_task"}, "model": "contenttypes.contenttype", "pk": 70}, {"fields": {"model": "courseusergroup", "app_label": "course_groups"}, "model": "contenttypes.contenttype", "pk": 71}, {"fields": {"model": "cohortmembership", "app_label": "course_groups"}, "model": "contenttypes.contenttype", "pk": 72}, {"fields": {"model": "courseusergrouppartitiongroup", "app_label": "course_groups"}, "model": "contenttypes.contenttype", "pk": 73}, {"fields": {"model": "coursecohortssettings", "app_label": "course_groups"}, "model": "contenttypes.contenttype", "pk": 74}, {"fields": {"model": "coursecohort", "app_label": "course_groups"}, "model": "contenttypes.contenttype", "pk": 75}, {"fields": {"model": "target", "app_label": "bulk_email"}, "model": "contenttypes.contenttype", "pk": 76}, {"fields": {"model": "cohorttarget", "app_label": "bulk_email"}, "model": "contenttypes.contenttype", "pk": 77}, {"fields": {"model": "courseemail", "app_label": "bulk_email"}, "model": "contenttypes.contenttype", "pk": 78}, {"fields": {"model": "optout", "app_label": "bulk_email"}, "model": "contenttypes.contenttype", "pk": 79}, {"fields": {"model": "courseemailtemplate", "app_label": "bulk_email"}, "model": "contenttypes.contenttype", "pk": 80}, {"fields": {"model": "courseauthorization", "app_label": "bulk_email"}, "model": "contenttypes.contenttype", "pk": 81}, {"fields": {"model": "bulkemailflag", "app_label": "bulk_email"}, "model": "contenttypes.contenttype", "pk": 82}, {"fields": {"model": "brandinginfoconfig", "app_label": "branding"}, "model": "contenttypes.contenttype", "pk": 83}, {"fields": {"model": "brandingapiconfig", "app_label": "branding"}, "model": "contenttypes.contenttype", "pk": 84}, {"fields": {"model": "externalauthmap", "app_label": "external_auth"}, "model": "contenttypes.contenttype", "pk": 85}, {"fields": {"model": "nonce", "app_label": "django_openid_auth"}, "model": "contenttypes.contenttype", "pk": 86}, {"fields": {"model": "association", "app_label": "django_openid_auth"}, "model": "contenttypes.contenttype", "pk": 87}, {"fields": {"model": "useropenid", "app_label": "django_openid_auth"}, "model": "contenttypes.contenttype", "pk": 88}, {"fields": {"model": "client", "app_label": "oauth2"}, "model": "contenttypes.contenttype", "pk": 89}, {"fields": {"model": "grant", "app_label": "oauth2"}, "model": "contenttypes.contenttype", "pk": 90}, {"fields": {"model": "accesstoken", "app_label": "oauth2"}, "model": "contenttypes.contenttype", "pk": 91}, {"fields": {"model": "refreshtoken", "app_label": "oauth2"}, "model": "contenttypes.contenttype", "pk": 92}, {"fields": {"model": "trustedclient", "app_label": "edx_oauth2_provider"}, "model": "contenttypes.contenttype", "pk": 93}, {"fields": {"model": "application", "app_label": "oauth2_provider"}, "model": "contenttypes.contenttype", "pk": 94}, {"fields": {"model": "grant", "app_label": "oauth2_provider"}, "model": "contenttypes.contenttype", "pk": 95}, {"fields": {"model": "accesstoken", "app_label": "oauth2_provider"}, "model": "contenttypes.contenttype", "pk": 96}, {"fields": {"model": "refreshtoken", "app_label": "oauth2_provider"}, "model": "contenttypes.contenttype", "pk": 97}, {"fields": {"model": "oauth2providerconfig", "app_label": "third_party_auth"}, "model": "contenttypes.contenttype", "pk": 98}, {"fields": {"model": "samlproviderconfig", "app_label": "third_party_auth"}, "model": "contenttypes.contenttype", "pk": 99}, {"fields": {"model": "samlconfiguration", "app_label": "third_party_auth"}, "model": "contenttypes.contenttype", "pk": 100}, {"fields": {"model": "samlproviderdata", "app_label": "third_party_auth"}, "model": "contenttypes.contenttype", "pk": 101}, {"fields": {"model": "ltiproviderconfig", "app_label": "third_party_auth"}, "model": "contenttypes.contenttype", "pk": 102}, {"fields": {"model": "providerapipermissions", "app_label": "third_party_auth"}, "model": "contenttypes.contenttype", "pk": 103}, {"fields": {"model": "nonce", "app_label": "oauth_provider"}, "model": "contenttypes.contenttype", "pk": 104}, {"fields": {"model": "scope", "app_label": "oauth_provider"}, "model": "contenttypes.contenttype", "pk": 105}, {"fields": {"model": "consumer", "app_label": "oauth_provider"}, "model": "contenttypes.contenttype", "pk": 106}, {"fields": {"model": "token", "app_label": "oauth_provider"}, "model": "contenttypes.contenttype", "pk": 107}, {"fields": {"model": "resource", "app_label": "oauth_provider"}, "model": "contenttypes.contenttype", "pk": 108}, {"fields": {"model": "article", "app_label": "wiki"}, "model": "contenttypes.contenttype", "pk": 109}, {"fields": {"model": "articleforobject", "app_label": "wiki"}, "model": "contenttypes.contenttype", "pk": 110}, {"fields": {"model": "articlerevision", "app_label": "wiki"}, "model": "contenttypes.contenttype", "pk": 111}, {"fields": {"model": "urlpath", "app_label": "wiki"}, "model": "contenttypes.contenttype", "pk": 112}, {"fields": {"model": "articleplugin", "app_label": "wiki"}, "model": "contenttypes.contenttype", "pk": 113}, {"fields": {"model": "reusableplugin", "app_label": "wiki"}, "model": "contenttypes.contenttype", "pk": 114}, {"fields": {"model": "simpleplugin", "app_label": "wiki"}, "model": "contenttypes.contenttype", "pk": 115}, {"fields": {"model": "revisionplugin", "app_label": "wiki"}, "model": "contenttypes.contenttype", "pk": 116}, {"fields": {"model": "revisionpluginrevision", "app_label": "wiki"}, "model": "contenttypes.contenttype", "pk": 117}, {"fields": {"model": "image", "app_label": "wiki"}, "model": "contenttypes.contenttype", "pk": 118}, {"fields": {"model": "imagerevision", "app_label": "wiki"}, "model": "contenttypes.contenttype", "pk": 119}, {"fields": {"model": "attachment", "app_label": "wiki"}, "model": "contenttypes.contenttype", "pk": 120}, {"fields": {"model": "attachmentrevision", "app_label": "wiki"}, "model": "contenttypes.contenttype", "pk": 121}, {"fields": {"model": "notificationtype", "app_label": "django_notify"}, "model": "contenttypes.contenttype", "pk": 122}, {"fields": {"model": "settings", "app_label": "django_notify"}, "model": "contenttypes.contenttype", "pk": 123}, {"fields": {"model": "subscription", "app_label": "django_notify"}, "model": "contenttypes.contenttype", "pk": 124}, {"fields": {"model": "notification", "app_label": "django_notify"}, "model": "contenttypes.contenttype", "pk": 125}, {"fields": {"model": "logentry", "app_label": "admin"}, "model": "contenttypes.contenttype", "pk": 126}, {"fields": {"model": "role", "app_label": "django_comment_common"}, "model": "contenttypes.contenttype", "pk": 127}, {"fields": {"model": "permission", "app_label": "django_comment_common"}, "model": "contenttypes.contenttype", "pk": 128}, {"fields": {"model": "forumsconfig", "app_label": "django_comment_common"}, "model": "contenttypes.contenttype", "pk": 129}, {"fields": {"model": "note", "app_label": "notes"}, "model": "contenttypes.contenttype", "pk": 130}, {"fields": {"model": "splashconfig", "app_label": "splash"}, "model": "contenttypes.contenttype", "pk": 131}, {"fields": {"model": "userpreference", "app_label": "user_api"}, "model": "contenttypes.contenttype", "pk": 132}, {"fields": {"model": "usercoursetag", "app_label": "user_api"}, "model": "contenttypes.contenttype", "pk": 133}, {"fields": {"model": "userorgtag", "app_label": "user_api"}, "model": "contenttypes.contenttype", "pk": 134}, {"fields": {"model": "order", "app_label": "shoppingcart"}, "model": "contenttypes.contenttype", "pk": 135}, {"fields": {"model": "orderitem", "app_label": "shoppingcart"}, "model": "contenttypes.contenttype", "pk": 136}, {"fields": {"model": "invoice", "app_label": "shoppingcart"}, "model": "contenttypes.contenttype", "pk": 137}, {"fields": {"model": "invoicetransaction", "app_label": "shoppingcart"}, "model": "contenttypes.contenttype", "pk": 138}, {"fields": {"model": "invoiceitem", "app_label": "shoppingcart"}, "model": "contenttypes.contenttype", "pk": 139}, {"fields": {"model": "courseregistrationcodeinvoiceitem", "app_label": "shoppingcart"}, "model": "contenttypes.contenttype", "pk": 140}, {"fields": {"model": "invoicehistory", "app_label": "shoppingcart"}, "model": "contenttypes.contenttype", "pk": 141}, {"fields": {"model": "courseregistrationcode", "app_label": "shoppingcart"}, "model": "contenttypes.contenttype", "pk": 142}, {"fields": {"model": "registrationcoderedemption", "app_label": "shoppingcart"}, "model": "contenttypes.contenttype", "pk": 143}, {"fields": {"model": "coupon", "app_label": "shoppingcart"}, "model": "contenttypes.contenttype", "pk": 144}, {"fields": {"model": "couponredemption", "app_label": "shoppingcart"}, "model": "contenttypes.contenttype", "pk": 145}, {"fields": {"model": "paidcourseregistration", "app_label": "shoppingcart"}, "model": "contenttypes.contenttype", "pk": 146}, {"fields": {"model": "courseregcodeitem", "app_label": "shoppingcart"}, "model": "contenttypes.contenttype", "pk": 147}, {"fields": {"model": "courseregcodeitemannotation", "app_label": "shoppingcart"}, "model": "contenttypes.contenttype", "pk": 148}, {"fields": {"model": "paidcourseregistrationannotation", "app_label": "shoppingcart"}, "model": "contenttypes.contenttype", "pk": 149}, {"fields": {"model": "certificateitem", "app_label": "shoppingcart"}, "model": "contenttypes.contenttype", "pk": 150}, {"fields": {"model": "donationconfiguration", "app_label": "shoppingcart"}, "model": "contenttypes.contenttype", "pk": 151}, {"fields": {"model": "donation", "app_label": "shoppingcart"}, "model": "contenttypes.contenttype", "pk": 152}, {"fields": {"model": "coursemode", "app_label": "course_modes"}, "model": "contenttypes.contenttype", "pk": 153}, {"fields": {"model": "coursemodesarchive", "app_label": "course_modes"}, "model": "contenttypes.contenttype", "pk": 154}, {"fields": {"model": "coursemodeexpirationconfig", "app_label": "course_modes"}, "model": "contenttypes.contenttype", "pk": 155}, {"fields": {"model": "softwaresecurephotoverification", "app_label": "verify_student"}, "model": "contenttypes.contenttype", "pk": 156}, {"fields": {"model": "historicalverificationdeadline", "app_label": "verify_student"}, "model": "contenttypes.contenttype", "pk": 157}, {"fields": {"model": "verificationdeadline", "app_label": "verify_student"}, "model": "contenttypes.contenttype", "pk": 158}, {"fields": {"model": "verificationcheckpoint", "app_label": "verify_student"}, "model": "contenttypes.contenttype", "pk": 159}, {"fields": {"model": "verificationstatus", "app_label": "verify_student"}, "model": "contenttypes.contenttype", "pk": 160}, {"fields": {"model": "incoursereverificationconfiguration", "app_label": "verify_student"}, "model": "contenttypes.contenttype", "pk": 161}, {"fields": {"model": "icrvstatusemailsconfiguration", "app_label": "verify_student"}, "model": "contenttypes.contenttype", "pk": 162}, {"fields": {"model": "skippedreverification", "app_label": "verify_student"}, "model": "contenttypes.contenttype", "pk": 163}, {"fields": {"model": "darklangconfig", "app_label": "dark_lang"}, "model": "contenttypes.contenttype", "pk": 164}, {"fields": {"model": "microsite", "app_label": "microsite_configuration"}, "model": "contenttypes.contenttype", "pk": 165}, {"fields": {"model": "micrositehistory", "app_label": "microsite_configuration"}, "model": "contenttypes.contenttype", "pk": 166}, {"fields": {"model": "historicalmicrositeorganizationmapping", "app_label": "microsite_configuration"}, "model": "contenttypes.contenttype", "pk": 167}, {"fields": {"model": "micrositeorganizationmapping", "app_label": "microsite_configuration"}, "model": "contenttypes.contenttype", "pk": 168}, {"fields": {"model": "historicalmicrositetemplate", "app_label": "microsite_configuration"}, "model": "contenttypes.contenttype", "pk": 169}, {"fields": {"model": "micrositetemplate", "app_label": "microsite_configuration"}, "model": "contenttypes.contenttype", "pk": 170}, {"fields": {"model": "whitelistedrssurl", "app_label": "rss_proxy"}, "model": "contenttypes.contenttype", "pk": 171}, {"fields": {"model": "embargoedcourse", "app_label": "embargo"}, "model": "contenttypes.contenttype", "pk": 172}, {"fields": {"model": "embargoedstate", "app_label": "embargo"}, "model": "contenttypes.contenttype", "pk": 173}, {"fields": {"model": "restrictedcourse", "app_label": "embargo"}, "model": "contenttypes.contenttype", "pk": 174}, {"fields": {"model": "country", "app_label": "embargo"}, "model": "contenttypes.contenttype", "pk": 175}, {"fields": {"model": "countryaccessrule", "app_label": "embargo"}, "model": "contenttypes.contenttype", "pk": 176}, {"fields": {"model": "courseaccessrulehistory", "app_label": "embargo"}, "model": "contenttypes.contenttype", "pk": 177}, {"fields": {"model": "ipfilter", "app_label": "embargo"}, "model": "contenttypes.contenttype", "pk": 178}, {"fields": {"model": "coursererunstate", "app_label": "course_action_state"}, "model": "contenttypes.contenttype", "pk": 179}, {"fields": {"model": "mobileapiconfig", "app_label": "mobile_api"}, "model": "contenttypes.contenttype", "pk": 180}, {"fields": {"model": "appversionconfig", "app_label": "mobile_api"}, "model": "contenttypes.contenttype", "pk": 181}, {"fields": {"model": "usersocialauth", "app_label": "default"}, "model": "contenttypes.contenttype", "pk": 182}, {"fields": {"model": "nonce", "app_label": "default"}, "model": "contenttypes.contenttype", "pk": 183}, {"fields": {"model": "association", "app_label": "default"}, "model": "contenttypes.contenttype", "pk": 184}, {"fields": {"model": "code", "app_label": "default"}, "model": "contenttypes.contenttype", "pk": 185}, {"fields": {"model": "surveyform", "app_label": "survey"}, "model": "contenttypes.contenttype", "pk": 186}, {"fields": {"model": "surveyanswer", "app_label": "survey"}, "model": "contenttypes.contenttype", "pk": 187}, {"fields": {"model": "xblockasidesconfig", "app_label": "lms_xblock"}, "model": "contenttypes.contenttype", "pk": 188}, {"fields": {"model": "courseoverview", "app_label": "course_overviews"}, "model": "contenttypes.contenttype", "pk": 189}, {"fields": {"model": "courseoverviewtab", "app_label": "course_overviews"}, "model": "contenttypes.contenttype", "pk": 190}, {"fields": {"model": "courseoverviewimageset", "app_label": "course_overviews"}, "model": "contenttypes.contenttype", "pk": 191}, {"fields": {"model": "courseoverviewimageconfig", "app_label": "course_overviews"}, "model": "contenttypes.contenttype", "pk": 192}, {"fields": {"model": "coursestructure", "app_label": "course_structures"}, "model": "contenttypes.contenttype", "pk": 193}, {"fields": {"model": "corsmodel", "app_label": "corsheaders"}, "model": "contenttypes.contenttype", "pk": 194}, {"fields": {"model": "xdomainproxyconfiguration", "app_label": "cors_csrf"}, "model": "contenttypes.contenttype", "pk": 195}, {"fields": {"model": "commerceconfiguration", "app_label": "commerce"}, "model": "contenttypes.contenttype", "pk": 196}, {"fields": {"model": "creditprovider", "app_label": "credit"}, "model": "contenttypes.contenttype", "pk": 197}, {"fields": {"model": "creditcourse", "app_label": "credit"}, "model": "contenttypes.contenttype", "pk": 198}, {"fields": {"model": "creditrequirement", "app_label": "credit"}, "model": "contenttypes.contenttype", "pk": 199}, {"fields": {"model": "historicalcreditrequirementstatus", "app_label": "credit"}, "model": "contenttypes.contenttype", "pk": 200}, {"fields": {"model": "creditrequirementstatus", "app_label": "credit"}, "model": "contenttypes.contenttype", "pk": 201}, {"fields": {"model": "crediteligibility", "app_label": "credit"}, "model": "contenttypes.contenttype", "pk": 202}, {"fields": {"model": "historicalcreditrequest", "app_label": "credit"}, "model": "contenttypes.contenttype", "pk": 203}, {"fields": {"model": "creditrequest", "app_label": "credit"}, "model": "contenttypes.contenttype", "pk": 204}, {"fields": {"model": "creditconfig", "app_label": "credit"}, "model": "contenttypes.contenttype", "pk": 205}, {"fields": {"model": "courseteam", "app_label": "teams"}, "model": "contenttypes.contenttype", "pk": 206}, {"fields": {"model": "courseteammembership", "app_label": "teams"}, "model": "contenttypes.contenttype", "pk": 207}, {"fields": {"model": "xblockdisableconfig", "app_label": "xblock_django"}, "model": "contenttypes.contenttype", "pk": 208}, {"fields": {"model": "xblockconfiguration", "app_label": "xblock_django"}, "model": "contenttypes.contenttype", "pk": 209}, {"fields": {"model": "xblockstudioconfigurationflag", "app_label": "xblock_django"}, "model": "contenttypes.contenttype", "pk": 210}, {"fields": {"model": "xblockstudioconfiguration", "app_label": "xblock_django"}, "model": "contenttypes.contenttype", "pk": 211}, {"fields": {"model": "bookmark", "app_label": "bookmarks"}, "model": "contenttypes.contenttype", "pk": 212}, {"fields": {"model": "xblockcache", "app_label": "bookmarks"}, "model": "contenttypes.contenttype", "pk": 213}, {"fields": {"model": "programsapiconfig", "app_label": "programs"}, "model": "contenttypes.contenttype", "pk": 214}, {"fields": {"model": "selfpacedconfiguration", "app_label": "self_paced"}, "model": "contenttypes.contenttype", "pk": 215}, {"fields": {"model": "kvstore", "app_label": "thumbnail"}, "model": "contenttypes.contenttype", "pk": 216}, {"fields": {"model": "credentialsapiconfig", "app_label": "credentials"}, "model": "contenttypes.contenttype", "pk": 217}, {"fields": {"model": "milestone", "app_label": "milestones"}, "model": "contenttypes.contenttype", "pk": 218}, {"fields": {"model": "milestonerelationshiptype", "app_label": "milestones"}, "model": "contenttypes.contenttype", "pk": 219}, {"fields": {"model": "coursemilestone", "app_label": "milestones"}, "model": "contenttypes.contenttype", "pk": 220}, {"fields": {"model": "coursecontentmilestone", "app_label": "milestones"}, "model": "contenttypes.contenttype", "pk": 221}, {"fields": {"model": "usermilestone", "app_label": "milestones"}, "model": "contenttypes.contenttype", "pk": 222}, {"fields": {"model": "coursetalkwidgetconfiguration", "app_label": "coursetalk"}, "model": "contenttypes.contenttype", "pk": 223}, {"fields": {"model": "historicalapiaccessrequest", "app_label": "api_admin"}, "model": "contenttypes.contenttype", "pk": 224}, {"fields": {"model": "apiaccessconfig", "app_label": "api_admin"}, "model": "contenttypes.contenttype", "pk": 225}, {"fields": {"model": "catalog", "app_label": "api_admin"}, "model": "contenttypes.contenttype", "pk": 226}, {"fields": {"model": "verifiedtrackcohortedcourse", "app_label": "verified_track_content"}, "model": "contenttypes.contenttype", "pk": 227}, {"fields": {"model": "badgeclass", "app_label": "badges"}, "model": "contenttypes.contenttype", "pk": 228}, {"fields": {"model": "badgeassertion", "app_label": "badges"}, "model": "contenttypes.contenttype", "pk": 229}, {"fields": {"model": "coursecompleteimageconfiguration", "app_label": "badges"}, "model": "contenttypes.contenttype", "pk": 230}, {"fields": {"model": "courseeventbadgesconfiguration", "app_label": "badges"}, "model": "contenttypes.contenttype", "pk": 231}, {"fields": {"model": "emailmarketingconfiguration", "app_label": "email_marketing"}, "model": "contenttypes.contenttype", "pk": 232}, {"fields": {"model": "studentitem", "app_label": "submissions"}, "model": "contenttypes.contenttype", "pk": 233}, {"fields": {"model": "submission", "app_label": "submissions"}, "model": "contenttypes.contenttype", "pk": 234}, {"fields": {"model": "score", "app_label": "submissions"}, "model": "contenttypes.contenttype", "pk": 235}, {"fields": {"model": "scoresummary", "app_label": "submissions"}, "model": "contenttypes.contenttype", "pk": 236}, {"fields": {"model": "scoreannotation", "app_label": "submissions"}, "model": "contenttypes.contenttype", "pk": 237}, {"fields": {"model": "rubric", "app_label": "assessment"}, "model": "contenttypes.contenttype", "pk": 238}, {"fields": {"model": "criterion", "app_label": "assessment"}, "model": "contenttypes.contenttype", "pk": 239}, {"fields": {"model": "criterionoption", "app_label": "assessment"}, "model": "contenttypes.contenttype", "pk": 240}, {"fields": {"model": "assessment", "app_label": "assessment"}, "model": "contenttypes.contenttype", "pk": 241}, {"fields": {"model": "assessmentpart", "app_label": "assessment"}, "model": "contenttypes.contenttype", "pk": 242}, {"fields": {"model": "assessmentfeedbackoption", "app_label": "assessment"}, "model": "contenttypes.contenttype", "pk": 243}, {"fields": {"model": "assessmentfeedback", "app_label": "assessment"}, "model": "contenttypes.contenttype", "pk": 244}, {"fields": {"model": "peerworkflow", "app_label": "assessment"}, "model": "contenttypes.contenttype", "pk": 245}, {"fields": {"model": "peerworkflowitem", "app_label": "assessment"}, "model": "contenttypes.contenttype", "pk": 246}, {"fields": {"model": "trainingexample", "app_label": "assessment"}, "model": "contenttypes.contenttype", "pk": 247}, {"fields": {"model": "studenttrainingworkflow", "app_label": "assessment"}, "model": "contenttypes.contenttype", "pk": 248}, {"fields": {"model": "studenttrainingworkflowitem", "app_label": "assessment"}, "model": "contenttypes.contenttype", "pk": 249}, {"fields": {"model": "aiclassifierset", "app_label": "assessment"}, "model": "contenttypes.contenttype", "pk": 250}, {"fields": {"model": "aiclassifier", "app_label": "assessment"}, "model": "contenttypes.contenttype", "pk": 251}, {"fields": {"model": "aitrainingworkflow", "app_label": "assessment"}, "model": "contenttypes.contenttype", "pk": 252}, {"fields": {"model": "aigradingworkflow", "app_label": "assessment"}, "model": "contenttypes.contenttype", "pk": 253}, {"fields": {"model": "staffworkflow", "app_label": "assessment"}, "model": "contenttypes.contenttype", "pk": 254}, {"fields": {"model": "assessmentworkflow", "app_label": "workflow"}, "model": "contenttypes.contenttype", "pk": 255}, {"fields": {"model": "assessmentworkflowstep", "app_label": "workflow"}, "model": "contenttypes.contenttype", "pk": 256}, {"fields": {"model": "assessmentworkflowcancellation", "app_label": "workflow"}, "model": "contenttypes.contenttype", "pk": 257}, {"fields": {"model": "profile", "app_label": "edxval"}, "model": "contenttypes.contenttype", "pk": 258}, {"fields": {"model": "video", "app_label": "edxval"}, "model": "contenttypes.contenttype", "pk": 259}, {"fields": {"model": "coursevideo", "app_label": "edxval"}, "model": "contenttypes.contenttype", "pk": 260}, {"fields": {"model": "encodedvideo", "app_label": "edxval"}, "model": "contenttypes.contenttype", "pk": 261}, {"fields": {"model": "subtitle", "app_label": "edxval"}, "model": "contenttypes.contenttype", "pk": 262}, {"fields": {"model": "proctoredexam", "app_label": "edx_proctoring"}, "model": "contenttypes.contenttype", "pk": 263}, {"fields": {"model": "proctoredexamreviewpolicy", "app_label": "edx_proctoring"}, "model": "contenttypes.contenttype", "pk": 264}, {"fields": {"model": "proctoredexamreviewpolicyhistory", "app_label": "edx_proctoring"}, "model": "contenttypes.contenttype", "pk": 265}, {"fields": {"model": "proctoredexamstudentattempt", "app_label": "edx_proctoring"}, "model": "contenttypes.contenttype", "pk": 266}, {"fields": {"model": "proctoredexamstudentattempthistory", "app_label": "edx_proctoring"}, "model": "contenttypes.contenttype", "pk": 267}, {"fields": {"model": "proctoredexamstudentallowance", "app_label": "edx_proctoring"}, "model": "contenttypes.contenttype", "pk": 268}, {"fields": {"model": "proctoredexamstudentallowancehistory", "app_label": "edx_proctoring"}, "model": "contenttypes.contenttype", "pk": 269}, {"fields": {"model": "proctoredexamsoftwaresecurereview", "app_label": "edx_proctoring"}, "model": "contenttypes.contenttype", "pk": 270}, {"fields": {"model": "proctoredexamsoftwaresecurereviewhistory", "app_label": "edx_proctoring"}, "model": "contenttypes.contenttype", "pk": 271}, {"fields": {"model": "proctoredexamsoftwaresecurecomment", "app_label": "edx_proctoring"}, "model": "contenttypes.contenttype", "pk": 272}, {"fields": {"model": "organization", "app_label": "organizations"}, "model": "contenttypes.contenttype", "pk": 273}, {"fields": {"model": "organizationcourse", "app_label": "organizations"}, "model": "contenttypes.contenttype", "pk": 274}, {"fields": {"model": "customcourseforedx", "app_label": "ccx"}, "model": "contenttypes.contenttype", "pk": 275}, {"fields": {"model": "ccxfieldoverride", "app_label": "ccx"}, "model": "contenttypes.contenttype", "pk": 276}, {"fields": {"model": "ccxcon", "app_label": "ccxcon"}, "model": "contenttypes.contenttype", "pk": 277}, {"fields": {"model": "studentmodulehistoryextended", "app_label": "coursewarehistoryextended"}, "model": "contenttypes.contenttype", "pk": 278}, {"fields": {"model": "videouploadconfig", "app_label": "contentstore"}, "model": "contenttypes.contenttype", "pk": 279}, {"fields": {"model": "pushnotificationconfig", "app_label": "contentstore"}, "model": "contenttypes.contenttype", "pk": 280}, {"fields": {"model": "coursecreator", "app_label": "course_creators"}, "model": "contenttypes.contenttype", "pk": 281}, {"fields": {"model": "studioconfig", "app_label": "xblock_config"}, "model": "contenttypes.contenttype", "pk": 282}, {"fields": {"model": "tagcategories", "app_label": "tagging"}, "model": "contenttypes.contenttype", "pk": 283}, {"fields": {"model": "tagavailablevalues", "app_label": "tagging"}, "model": "contenttypes.contenttype", "pk": 284}, {"fields": {"domain": "example.com", "name": "example.com"}, "model": "sites.site", "pk": 1}, {"fields": {"plain_template": "{course_title}\n\n{{message_body}}\r\n----\r\nCopyright 2013 edX, All rights reserved.\r\n----\r\nConnect with edX:\r\nFacebook (http://facebook.com/edxonline)\r\nTwitter (http://twitter.com/edxonline)\r\nGoogle+ (https://plus.google.com/108235383044095082735)\r\nMeetup (http://www.meetup.com/edX-Communities/)\r\n----\r\nThis email was automatically sent from {platform_name}.\r\nYou are receiving this email at address {email} because you are enrolled in {course_title}\r\n(URL: {course_url} ).\r\nTo stop receiving email like this, update your course email settings at {email_settings_url}.\r\n", "html_template": " Update from {course_title}

edX
Connect with edX:        

{course_title}


{{message_body}}
       
Copyright \u00a9 2013 edX, All rights reserved.


Our mailing address is:
edX
11 Cambridge Center, Suite 101
Cambridge, MA, USA 02142


This email was automatically sent from {platform_name}.
You are receiving this email at address {email} because you are enrolled in {course_title}.
To stop receiving email like this, update your course email settings here.
", "name": null}, "model": "bulk_email.courseemailtemplate", "pk": 1}, {"fields": {"plain_template": "THIS IS A BRANDED TEXT TEMPLATE. {course_title}\n\n{{message_body}}\r\n----\r\nCopyright 2013 edX, All rights reserved.\r\n----\r\nConnect with edX:\r\nFacebook (http://facebook.com/edxonline)\r\nTwitter (http://twitter.com/edxonline)\r\nGoogle+ (https://plus.google.com/108235383044095082735)\r\nMeetup (http://www.meetup.com/edX-Communities/)\r\n----\r\nThis email was automatically sent from {platform_name}.\r\nYou are receiving this email at address {email} because you are enrolled in {course_title}\r\n(URL: {course_url} ).\r\nTo stop receiving email like this, update your course email settings at {email_settings_url}.\r\n", "html_template": " THIS IS A BRANDED HTML TEMPLATE Update from {course_title}

edX
Connect with edX:        

{course_title}


{{message_body}}
       
Copyright \u00a9 2013 edX, All rights reserved.


Our mailing address is:
edX
11 Cambridge Center, Suite 101
Cambridge, MA, USA 02142


This email was automatically sent from {platform_name}.
You are receiving this email at address {email} because you are enrolled in {course_title}.
To stop receiving email like this, update your course email settings here.
", "name": "branded.template"}, "model": "bulk_email.courseemailtemplate", "pk": 2}, {"fields": {"country": "AF"}, "model": "embargo.country", "pk": 1}, {"fields": {"country": "AX"}, "model": "embargo.country", "pk": 2}, {"fields": {"country": "AL"}, "model": "embargo.country", "pk": 3}, {"fields": {"country": "DZ"}, "model": "embargo.country", "pk": 4}, {"fields": {"country": "AS"}, "model": "embargo.country", "pk": 5}, {"fields": {"country": "AD"}, "model": "embargo.country", "pk": 6}, {"fields": {"country": "AO"}, "model": "embargo.country", "pk": 7}, {"fields": {"country": "AI"}, "model": "embargo.country", "pk": 8}, {"fields": {"country": "AQ"}, "model": "embargo.country", "pk": 9}, {"fields": {"country": "AG"}, "model": "embargo.country", "pk": 10}, {"fields": {"country": "AR"}, "model": "embargo.country", "pk": 11}, {"fields": {"country": "AM"}, "model": "embargo.country", "pk": 12}, {"fields": {"country": "AW"}, "model": "embargo.country", "pk": 13}, {"fields": {"country": "AU"}, "model": "embargo.country", "pk": 14}, {"fields": {"country": "AT"}, "model": "embargo.country", "pk": 15}, {"fields": {"country": "AZ"}, "model": "embargo.country", "pk": 16}, {"fields": {"country": "BS"}, "model": "embargo.country", "pk": 17}, {"fields": {"country": "BH"}, "model": "embargo.country", "pk": 18}, {"fields": {"country": "BD"}, "model": "embargo.country", "pk": 19}, {"fields": {"country": "BB"}, "model": "embargo.country", "pk": 20}, {"fields": {"country": "BY"}, "model": "embargo.country", "pk": 21}, {"fields": {"country": "BE"}, "model": "embargo.country", "pk": 22}, {"fields": {"country": "BZ"}, "model": "embargo.country", "pk": 23}, {"fields": {"country": "BJ"}, "model": "embargo.country", "pk": 24}, {"fields": {"country": "BM"}, "model": "embargo.country", "pk": 25}, {"fields": {"country": "BT"}, "model": "embargo.country", "pk": 26}, {"fields": {"country": "BO"}, "model": "embargo.country", "pk": 27}, {"fields": {"country": "BQ"}, "model": "embargo.country", "pk": 28}, {"fields": {"country": "BA"}, "model": "embargo.country", "pk": 29}, {"fields": {"country": "BW"}, "model": "embargo.country", "pk": 30}, {"fields": {"country": "BV"}, "model": "embargo.country", "pk": 31}, {"fields": {"country": "BR"}, "model": "embargo.country", "pk": 32}, {"fields": {"country": "IO"}, "model": "embargo.country", "pk": 33}, {"fields": {"country": "BN"}, "model": "embargo.country", "pk": 34}, {"fields": {"country": "BG"}, "model": "embargo.country", "pk": 35}, {"fields": {"country": "BF"}, "model": "embargo.country", "pk": 36}, {"fields": {"country": "BI"}, "model": "embargo.country", "pk": 37}, {"fields": {"country": "CV"}, "model": "embargo.country", "pk": 38}, {"fields": {"country": "KH"}, "model": "embargo.country", "pk": 39}, {"fields": {"country": "CM"}, "model": "embargo.country", "pk": 40}, {"fields": {"country": "CA"}, "model": "embargo.country", "pk": 41}, {"fields": {"country": "KY"}, "model": "embargo.country", "pk": 42}, {"fields": {"country": "CF"}, "model": "embargo.country", "pk": 43}, {"fields": {"country": "TD"}, "model": "embargo.country", "pk": 44}, {"fields": {"country": "CL"}, "model": "embargo.country", "pk": 45}, {"fields": {"country": "CN"}, "model": "embargo.country", "pk": 46}, {"fields": {"country": "CX"}, "model": "embargo.country", "pk": 47}, {"fields": {"country": "CC"}, "model": "embargo.country", "pk": 48}, {"fields": {"country": "CO"}, "model": "embargo.country", "pk": 49}, {"fields": {"country": "KM"}, "model": "embargo.country", "pk": 50}, {"fields": {"country": "CG"}, "model": "embargo.country", "pk": 51}, {"fields": {"country": "CD"}, "model": "embargo.country", "pk": 52}, {"fields": {"country": "CK"}, "model": "embargo.country", "pk": 53}, {"fields": {"country": "CR"}, "model": "embargo.country", "pk": 54}, {"fields": {"country": "CI"}, "model": "embargo.country", "pk": 55}, {"fields": {"country": "HR"}, "model": "embargo.country", "pk": 56}, {"fields": {"country": "CU"}, "model": "embargo.country", "pk": 57}, {"fields": {"country": "CW"}, "model": "embargo.country", "pk": 58}, {"fields": {"country": "CY"}, "model": "embargo.country", "pk": 59}, {"fields": {"country": "CZ"}, "model": "embargo.country", "pk": 60}, {"fields": {"country": "DK"}, "model": "embargo.country", "pk": 61}, {"fields": {"country": "DJ"}, "model": "embargo.country", "pk": 62}, {"fields": {"country": "DM"}, "model": "embargo.country", "pk": 63}, {"fields": {"country": "DO"}, "model": "embargo.country", "pk": 64}, {"fields": {"country": "EC"}, "model": "embargo.country", "pk": 65}, {"fields": {"country": "EG"}, "model": "embargo.country", "pk": 66}, {"fields": {"country": "SV"}, "model": "embargo.country", "pk": 67}, {"fields": {"country": "GQ"}, "model": "embargo.country", "pk": 68}, {"fields": {"country": "ER"}, "model": "embargo.country", "pk": 69}, {"fields": {"country": "EE"}, "model": "embargo.country", "pk": 70}, {"fields": {"country": "ET"}, "model": "embargo.country", "pk": 71}, {"fields": {"country": "FK"}, "model": "embargo.country", "pk": 72}, {"fields": {"country": "FO"}, "model": "embargo.country", "pk": 73}, {"fields": {"country": "FJ"}, "model": "embargo.country", "pk": 74}, {"fields": {"country": "FI"}, "model": "embargo.country", "pk": 75}, {"fields": {"country": "FR"}, "model": "embargo.country", "pk": 76}, {"fields": {"country": "GF"}, "model": "embargo.country", "pk": 77}, {"fields": {"country": "PF"}, "model": "embargo.country", "pk": 78}, {"fields": {"country": "TF"}, "model": "embargo.country", "pk": 79}, {"fields": {"country": "GA"}, "model": "embargo.country", "pk": 80}, {"fields": {"country": "GM"}, "model": "embargo.country", "pk": 81}, {"fields": {"country": "GE"}, "model": "embargo.country", "pk": 82}, {"fields": {"country": "DE"}, "model": "embargo.country", "pk": 83}, {"fields": {"country": "GH"}, "model": "embargo.country", "pk": 84}, {"fields": {"country": "GI"}, "model": "embargo.country", "pk": 85}, {"fields": {"country": "GR"}, "model": "embargo.country", "pk": 86}, {"fields": {"country": "GL"}, "model": "embargo.country", "pk": 87}, {"fields": {"country": "GD"}, "model": "embargo.country", "pk": 88}, {"fields": {"country": "GP"}, "model": "embargo.country", "pk": 89}, {"fields": {"country": "GU"}, "model": "embargo.country", "pk": 90}, {"fields": {"country": "GT"}, "model": "embargo.country", "pk": 91}, {"fields": {"country": "GG"}, "model": "embargo.country", "pk": 92}, {"fields": {"country": "GN"}, "model": "embargo.country", "pk": 93}, {"fields": {"country": "GW"}, "model": "embargo.country", "pk": 94}, {"fields": {"country": "GY"}, "model": "embargo.country", "pk": 95}, {"fields": {"country": "HT"}, "model": "embargo.country", "pk": 96}, {"fields": {"country": "HM"}, "model": "embargo.country", "pk": 97}, {"fields": {"country": "VA"}, "model": "embargo.country", "pk": 98}, {"fields": {"country": "HN"}, "model": "embargo.country", "pk": 99}, {"fields": {"country": "HK"}, "model": "embargo.country", "pk": 100}, {"fields": {"country": "HU"}, "model": "embargo.country", "pk": 101}, {"fields": {"country": "IS"}, "model": "embargo.country", "pk": 102}, {"fields": {"country": "IN"}, "model": "embargo.country", "pk": 103}, {"fields": {"country": "ID"}, "model": "embargo.country", "pk": 104}, {"fields": {"country": "IR"}, "model": "embargo.country", "pk": 105}, {"fields": {"country": "IQ"}, "model": "embargo.country", "pk": 106}, {"fields": {"country": "IE"}, "model": "embargo.country", "pk": 107}, {"fields": {"country": "IM"}, "model": "embargo.country", "pk": 108}, {"fields": {"country": "IL"}, "model": "embargo.country", "pk": 109}, {"fields": {"country": "IT"}, "model": "embargo.country", "pk": 110}, {"fields": {"country": "JM"}, "model": "embargo.country", "pk": 111}, {"fields": {"country": "JP"}, "model": "embargo.country", "pk": 112}, {"fields": {"country": "JE"}, "model": "embargo.country", "pk": 113}, {"fields": {"country": "JO"}, "model": "embargo.country", "pk": 114}, {"fields": {"country": "KZ"}, "model": "embargo.country", "pk": 115}, {"fields": {"country": "KE"}, "model": "embargo.country", "pk": 116}, {"fields": {"country": "KI"}, "model": "embargo.country", "pk": 117}, {"fields": {"country": "XK"}, "model": "embargo.country", "pk": 118}, {"fields": {"country": "KW"}, "model": "embargo.country", "pk": 119}, {"fields": {"country": "KG"}, "model": "embargo.country", "pk": 120}, {"fields": {"country": "LA"}, "model": "embargo.country", "pk": 121}, {"fields": {"country": "LV"}, "model": "embargo.country", "pk": 122}, {"fields": {"country": "LB"}, "model": "embargo.country", "pk": 123}, {"fields": {"country": "LS"}, "model": "embargo.country", "pk": 124}, {"fields": {"country": "LR"}, "model": "embargo.country", "pk": 125}, {"fields": {"country": "LY"}, "model": "embargo.country", "pk": 126}, {"fields": {"country": "LI"}, "model": "embargo.country", "pk": 127}, {"fields": {"country": "LT"}, "model": "embargo.country", "pk": 128}, {"fields": {"country": "LU"}, "model": "embargo.country", "pk": 129}, {"fields": {"country": "MO"}, "model": "embargo.country", "pk": 130}, {"fields": {"country": "MK"}, "model": "embargo.country", "pk": 131}, {"fields": {"country": "MG"}, "model": "embargo.country", "pk": 132}, {"fields": {"country": "MW"}, "model": "embargo.country", "pk": 133}, {"fields": {"country": "MY"}, "model": "embargo.country", "pk": 134}, {"fields": {"country": "MV"}, "model": "embargo.country", "pk": 135}, {"fields": {"country": "ML"}, "model": "embargo.country", "pk": 136}, {"fields": {"country": "MT"}, "model": "embargo.country", "pk": 137}, {"fields": {"country": "MH"}, "model": "embargo.country", "pk": 138}, {"fields": {"country": "MQ"}, "model": "embargo.country", "pk": 139}, {"fields": {"country": "MR"}, "model": "embargo.country", "pk": 140}, {"fields": {"country": "MU"}, "model": "embargo.country", "pk": 141}, {"fields": {"country": "YT"}, "model": "embargo.country", "pk": 142}, {"fields": {"country": "MX"}, "model": "embargo.country", "pk": 143}, {"fields": {"country": "FM"}, "model": "embargo.country", "pk": 144}, {"fields": {"country": "MD"}, "model": "embargo.country", "pk": 145}, {"fields": {"country": "MC"}, "model": "embargo.country", "pk": 146}, {"fields": {"country": "MN"}, "model": "embargo.country", "pk": 147}, {"fields": {"country": "ME"}, "model": "embargo.country", "pk": 148}, {"fields": {"country": "MS"}, "model": "embargo.country", "pk": 149}, {"fields": {"country": "MA"}, "model": "embargo.country", "pk": 150}, {"fields": {"country": "MZ"}, "model": "embargo.country", "pk": 151}, {"fields": {"country": "MM"}, "model": "embargo.country", "pk": 152}, {"fields": {"country": "NA"}, "model": "embargo.country", "pk": 153}, {"fields": {"country": "NR"}, "model": "embargo.country", "pk": 154}, {"fields": {"country": "NP"}, "model": "embargo.country", "pk": 155}, {"fields": {"country": "NL"}, "model": "embargo.country", "pk": 156}, {"fields": {"country": "NC"}, "model": "embargo.country", "pk": 157}, {"fields": {"country": "NZ"}, "model": "embargo.country", "pk": 158}, {"fields": {"country": "NI"}, "model": "embargo.country", "pk": 159}, {"fields": {"country": "NE"}, "model": "embargo.country", "pk": 160}, {"fields": {"country": "NG"}, "model": "embargo.country", "pk": 161}, {"fields": {"country": "NU"}, "model": "embargo.country", "pk": 162}, {"fields": {"country": "NF"}, "model": "embargo.country", "pk": 163}, {"fields": {"country": "KP"}, "model": "embargo.country", "pk": 164}, {"fields": {"country": "MP"}, "model": "embargo.country", "pk": 165}, {"fields": {"country": "NO"}, "model": "embargo.country", "pk": 166}, {"fields": {"country": "OM"}, "model": "embargo.country", "pk": 167}, {"fields": {"country": "PK"}, "model": "embargo.country", "pk": 168}, {"fields": {"country": "PW"}, "model": "embargo.country", "pk": 169}, {"fields": {"country": "PS"}, "model": "embargo.country", "pk": 170}, {"fields": {"country": "PA"}, "model": "embargo.country", "pk": 171}, {"fields": {"country": "PG"}, "model": "embargo.country", "pk": 172}, {"fields": {"country": "PY"}, "model": "embargo.country", "pk": 173}, {"fields": {"country": "PE"}, "model": "embargo.country", "pk": 174}, {"fields": {"country": "PH"}, "model": "embargo.country", "pk": 175}, {"fields": {"country": "PN"}, "model": "embargo.country", "pk": 176}, {"fields": {"country": "PL"}, "model": "embargo.country", "pk": 177}, {"fields": {"country": "PT"}, "model": "embargo.country", "pk": 178}, {"fields": {"country": "PR"}, "model": "embargo.country", "pk": 179}, {"fields": {"country": "QA"}, "model": "embargo.country", "pk": 180}, {"fields": {"country": "RE"}, "model": "embargo.country", "pk": 181}, {"fields": {"country": "RO"}, "model": "embargo.country", "pk": 182}, {"fields": {"country": "RU"}, "model": "embargo.country", "pk": 183}, {"fields": {"country": "RW"}, "model": "embargo.country", "pk": 184}, {"fields": {"country": "BL"}, "model": "embargo.country", "pk": 185}, {"fields": {"country": "SH"}, "model": "embargo.country", "pk": 186}, {"fields": {"country": "KN"}, "model": "embargo.country", "pk": 187}, {"fields": {"country": "LC"}, "model": "embargo.country", "pk": 188}, {"fields": {"country": "MF"}, "model": "embargo.country", "pk": 189}, {"fields": {"country": "PM"}, "model": "embargo.country", "pk": 190}, {"fields": {"country": "VC"}, "model": "embargo.country", "pk": 191}, {"fields": {"country": "WS"}, "model": "embargo.country", "pk": 192}, {"fields": {"country": "SM"}, "model": "embargo.country", "pk": 193}, {"fields": {"country": "ST"}, "model": "embargo.country", "pk": 194}, {"fields": {"country": "SA"}, "model": "embargo.country", "pk": 195}, {"fields": {"country": "SN"}, "model": "embargo.country", "pk": 196}, {"fields": {"country": "RS"}, "model": "embargo.country", "pk": 197}, {"fields": {"country": "SC"}, "model": "embargo.country", "pk": 198}, {"fields": {"country": "SL"}, "model": "embargo.country", "pk": 199}, {"fields": {"country": "SG"}, "model": "embargo.country", "pk": 200}, {"fields": {"country": "SX"}, "model": "embargo.country", "pk": 201}, {"fields": {"country": "SK"}, "model": "embargo.country", "pk": 202}, {"fields": {"country": "SI"}, "model": "embargo.country", "pk": 203}, {"fields": {"country": "SB"}, "model": "embargo.country", "pk": 204}, {"fields": {"country": "SO"}, "model": "embargo.country", "pk": 205}, {"fields": {"country": "ZA"}, "model": "embargo.country", "pk": 206}, {"fields": {"country": "GS"}, "model": "embargo.country", "pk": 207}, {"fields": {"country": "KR"}, "model": "embargo.country", "pk": 208}, {"fields": {"country": "SS"}, "model": "embargo.country", "pk": 209}, {"fields": {"country": "ES"}, "model": "embargo.country", "pk": 210}, {"fields": {"country": "LK"}, "model": "embargo.country", "pk": 211}, {"fields": {"country": "SD"}, "model": "embargo.country", "pk": 212}, {"fields": {"country": "SR"}, "model": "embargo.country", "pk": 213}, {"fields": {"country": "SJ"}, "model": "embargo.country", "pk": 214}, {"fields": {"country": "SZ"}, "model": "embargo.country", "pk": 215}, {"fields": {"country": "SE"}, "model": "embargo.country", "pk": 216}, {"fields": {"country": "CH"}, "model": "embargo.country", "pk": 217}, {"fields": {"country": "SY"}, "model": "embargo.country", "pk": 218}, {"fields": {"country": "TW"}, "model": "embargo.country", "pk": 219}, {"fields": {"country": "TJ"}, "model": "embargo.country", "pk": 220}, {"fields": {"country": "TZ"}, "model": "embargo.country", "pk": 221}, {"fields": {"country": "TH"}, "model": "embargo.country", "pk": 222}, {"fields": {"country": "TL"}, "model": "embargo.country", "pk": 223}, {"fields": {"country": "TG"}, "model": "embargo.country", "pk": 224}, {"fields": {"country": "TK"}, "model": "embargo.country", "pk": 225}, {"fields": {"country": "TO"}, "model": "embargo.country", "pk": 226}, {"fields": {"country": "TT"}, "model": "embargo.country", "pk": 227}, {"fields": {"country": "TN"}, "model": "embargo.country", "pk": 228}, {"fields": {"country": "TR"}, "model": "embargo.country", "pk": 229}, {"fields": {"country": "TM"}, "model": "embargo.country", "pk": 230}, {"fields": {"country": "TC"}, "model": "embargo.country", "pk": 231}, {"fields": {"country": "TV"}, "model": "embargo.country", "pk": 232}, {"fields": {"country": "UG"}, "model": "embargo.country", "pk": 233}, {"fields": {"country": "UA"}, "model": "embargo.country", "pk": 234}, {"fields": {"country": "AE"}, "model": "embargo.country", "pk": 235}, {"fields": {"country": "GB"}, "model": "embargo.country", "pk": 236}, {"fields": {"country": "UM"}, "model": "embargo.country", "pk": 237}, {"fields": {"country": "US"}, "model": "embargo.country", "pk": 238}, {"fields": {"country": "UY"}, "model": "embargo.country", "pk": 239}, {"fields": {"country": "UZ"}, "model": "embargo.country", "pk": 240}, {"fields": {"country": "VU"}, "model": "embargo.country", "pk": 241}, {"fields": {"country": "VE"}, "model": "embargo.country", "pk": 242}, {"fields": {"country": "VN"}, "model": "embargo.country", "pk": 243}, {"fields": {"country": "VG"}, "model": "embargo.country", "pk": 244}, {"fields": {"country": "VI"}, "model": "embargo.country", "pk": 245}, {"fields": {"country": "WF"}, "model": "embargo.country", "pk": 246}, {"fields": {"country": "EH"}, "model": "embargo.country", "pk": 247}, {"fields": {"country": "YE"}, "model": "embargo.country", "pk": 248}, {"fields": {"country": "ZM"}, "model": "embargo.country", "pk": 249}, {"fields": {"country": "ZW"}, "model": "embargo.country", "pk": 250}, {"fields": {"active": true, "description": "Autogenerated milestone relationship type \"fulfills\"", "modified": "2016-07-06T14:30:54.561Z", "name": "fulfills", "created": "2016-07-06T14:30:54.560Z"}, "model": "milestones.milestonerelationshiptype", "pk": 1}, {"fields": {"active": true, "description": "Autogenerated milestone relationship type \"requires\"", "modified": "2016-07-06T14:30:54.565Z", "name": "requires", "created": "2016-07-06T14:30:54.565Z"}, "model": "milestones.milestonerelationshiptype", "pk": 2}, {"fields": {"default": false, "mode": "honor", "icon": "badges/honor.png"}, "model": "badges.coursecompleteimageconfiguration", "pk": 1}, {"fields": {"default": false, "mode": "verified", "icon": "badges/verified.png"}, "model": "badges.coursecompleteimageconfiguration", "pk": 2}, {"fields": {"default": false, "mode": "professional", "icon": "badges/professional.png"}, "model": "badges.coursecompleteimageconfiguration", "pk": 3}, {"fields": {"profile_name": "desktop_mp4"}, "model": "edxval.profile", "pk": 1}, {"fields": {"profile_name": "desktop_webm"}, "model": "edxval.profile", "pk": 2}, {"fields": {"profile_name": "mobile_high"}, "model": "edxval.profile", "pk": 3}, {"fields": {"profile_name": "mobile_low"}, "model": "edxval.profile", "pk": 4}, {"fields": {"profile_name": "youtube"}, "model": "edxval.profile", "pk": 5}, {"fields": {"codename": "add_permission", "name": "Can add permission", "content_type": 2}, "model": "auth.permission", "pk": 1}, {"fields": {"codename": "change_permission", "name": "Can change permission", "content_type": 2}, "model": "auth.permission", "pk": 2}, {"fields": {"codename": "delete_permission", "name": "Can delete permission", "content_type": 2}, "model": "auth.permission", "pk": 3}, {"fields": {"codename": "add_group", "name": "Can add group", "content_type": 3}, "model": "auth.permission", "pk": 4}, {"fields": {"codename": "change_group", "name": "Can change group", "content_type": 3}, "model": "auth.permission", "pk": 5}, {"fields": {"codename": "delete_group", "name": "Can delete group", "content_type": 3}, "model": "auth.permission", "pk": 6}, {"fields": {"codename": "add_user", "name": "Can add user", "content_type": 4}, "model": "auth.permission", "pk": 7}, {"fields": {"codename": "change_user", "name": "Can change user", "content_type": 4}, "model": "auth.permission", "pk": 8}, {"fields": {"codename": "delete_user", "name": "Can delete user", "content_type": 4}, "model": "auth.permission", "pk": 9}, {"fields": {"codename": "add_contenttype", "name": "Can add content type", "content_type": 5}, "model": "auth.permission", "pk": 10}, {"fields": {"codename": "change_contenttype", "name": "Can change content type", "content_type": 5}, "model": "auth.permission", "pk": 11}, {"fields": {"codename": "delete_contenttype", "name": "Can delete content type", "content_type": 5}, "model": "auth.permission", "pk": 12}, {"fields": {"codename": "add_redirect", "name": "Can add redirect", "content_type": 6}, "model": "auth.permission", "pk": 13}, {"fields": {"codename": "change_redirect", "name": "Can change redirect", "content_type": 6}, "model": "auth.permission", "pk": 14}, {"fields": {"codename": "delete_redirect", "name": "Can delete redirect", "content_type": 6}, "model": "auth.permission", "pk": 15}, {"fields": {"codename": "add_session", "name": "Can add session", "content_type": 7}, "model": "auth.permission", "pk": 16}, {"fields": {"codename": "change_session", "name": "Can change session", "content_type": 7}, "model": "auth.permission", "pk": 17}, {"fields": {"codename": "delete_session", "name": "Can delete session", "content_type": 7}, "model": "auth.permission", "pk": 18}, {"fields": {"codename": "add_site", "name": "Can add site", "content_type": 8}, "model": "auth.permission", "pk": 19}, {"fields": {"codename": "change_site", "name": "Can change site", "content_type": 8}, "model": "auth.permission", "pk": 20}, {"fields": {"codename": "delete_site", "name": "Can delete site", "content_type": 8}, "model": "auth.permission", "pk": 21}, {"fields": {"codename": "add_taskmeta", "name": "Can add task state", "content_type": 9}, "model": "auth.permission", "pk": 22}, {"fields": {"codename": "change_taskmeta", "name": "Can change task state", "content_type": 9}, "model": "auth.permission", "pk": 23}, {"fields": {"codename": "delete_taskmeta", "name": "Can delete task state", "content_type": 9}, "model": "auth.permission", "pk": 24}, {"fields": {"codename": "add_tasksetmeta", "name": "Can add saved group result", "content_type": 10}, "model": "auth.permission", "pk": 25}, {"fields": {"codename": "change_tasksetmeta", "name": "Can change saved group result", "content_type": 10}, "model": "auth.permission", "pk": 26}, {"fields": {"codename": "delete_tasksetmeta", "name": "Can delete saved group result", "content_type": 10}, "model": "auth.permission", "pk": 27}, {"fields": {"codename": "add_intervalschedule", "name": "Can add interval", "content_type": 11}, "model": "auth.permission", "pk": 28}, {"fields": {"codename": "change_intervalschedule", "name": "Can change interval", "content_type": 11}, "model": "auth.permission", "pk": 29}, {"fields": {"codename": "delete_intervalschedule", "name": "Can delete interval", "content_type": 11}, "model": "auth.permission", "pk": 30}, {"fields": {"codename": "add_crontabschedule", "name": "Can add crontab", "content_type": 12}, "model": "auth.permission", "pk": 31}, {"fields": {"codename": "change_crontabschedule", "name": "Can change crontab", "content_type": 12}, "model": "auth.permission", "pk": 32}, {"fields": {"codename": "delete_crontabschedule", "name": "Can delete crontab", "content_type": 12}, "model": "auth.permission", "pk": 33}, {"fields": {"codename": "add_periodictasks", "name": "Can add periodic tasks", "content_type": 13}, "model": "auth.permission", "pk": 34}, {"fields": {"codename": "change_periodictasks", "name": "Can change periodic tasks", "content_type": 13}, "model": "auth.permission", "pk": 35}, {"fields": {"codename": "delete_periodictasks", "name": "Can delete periodic tasks", "content_type": 13}, "model": "auth.permission", "pk": 36}, {"fields": {"codename": "add_periodictask", "name": "Can add periodic task", "content_type": 14}, "model": "auth.permission", "pk": 37}, {"fields": {"codename": "change_periodictask", "name": "Can change periodic task", "content_type": 14}, "model": "auth.permission", "pk": 38}, {"fields": {"codename": "delete_periodictask", "name": "Can delete periodic task", "content_type": 14}, "model": "auth.permission", "pk": 39}, {"fields": {"codename": "add_workerstate", "name": "Can add worker", "content_type": 15}, "model": "auth.permission", "pk": 40}, {"fields": {"codename": "change_workerstate", "name": "Can change worker", "content_type": 15}, "model": "auth.permission", "pk": 41}, {"fields": {"codename": "delete_workerstate", "name": "Can delete worker", "content_type": 15}, "model": "auth.permission", "pk": 42}, {"fields": {"codename": "add_taskstate", "name": "Can add task", "content_type": 16}, "model": "auth.permission", "pk": 43}, {"fields": {"codename": "change_taskstate", "name": "Can change task", "content_type": 16}, "model": "auth.permission", "pk": 44}, {"fields": {"codename": "delete_taskstate", "name": "Can delete task", "content_type": 16}, "model": "auth.permission", "pk": 45}, {"fields": {"codename": "add_globalstatusmessage", "name": "Can add global status message", "content_type": 17}, "model": "auth.permission", "pk": 46}, {"fields": {"codename": "change_globalstatusmessage", "name": "Can change global status message", "content_type": 17}, "model": "auth.permission", "pk": 47}, {"fields": {"codename": "delete_globalstatusmessage", "name": "Can delete global status message", "content_type": 17}, "model": "auth.permission", "pk": 48}, {"fields": {"codename": "add_coursemessage", "name": "Can add course message", "content_type": 18}, "model": "auth.permission", "pk": 49}, {"fields": {"codename": "change_coursemessage", "name": "Can change course message", "content_type": 18}, "model": "auth.permission", "pk": 50}, {"fields": {"codename": "delete_coursemessage", "name": "Can delete course message", "content_type": 18}, "model": "auth.permission", "pk": 51}, {"fields": {"codename": "add_assetbaseurlconfig", "name": "Can add asset base url config", "content_type": 19}, "model": "auth.permission", "pk": 52}, {"fields": {"codename": "change_assetbaseurlconfig", "name": "Can change asset base url config", "content_type": 19}, "model": "auth.permission", "pk": 53}, {"fields": {"codename": "delete_assetbaseurlconfig", "name": "Can delete asset base url config", "content_type": 19}, "model": "auth.permission", "pk": 54}, {"fields": {"codename": "add_assetexcludedextensionsconfig", "name": "Can add asset excluded extensions config", "content_type": 20}, "model": "auth.permission", "pk": 55}, {"fields": {"codename": "change_assetexcludedextensionsconfig", "name": "Can change asset excluded extensions config", "content_type": 20}, "model": "auth.permission", "pk": 56}, {"fields": {"codename": "delete_assetexcludedextensionsconfig", "name": "Can delete asset excluded extensions config", "content_type": 20}, "model": "auth.permission", "pk": 57}, {"fields": {"codename": "add_courseassetcachettlconfig", "name": "Can add course asset cache ttl config", "content_type": 21}, "model": "auth.permission", "pk": 58}, {"fields": {"codename": "change_courseassetcachettlconfig", "name": "Can change course asset cache ttl config", "content_type": 21}, "model": "auth.permission", "pk": 59}, {"fields": {"codename": "delete_courseassetcachettlconfig", "name": "Can delete course asset cache ttl config", "content_type": 21}, "model": "auth.permission", "pk": 60}, {"fields": {"codename": "add_cdnuseragentsconfig", "name": "Can add cdn user agents config", "content_type": 22}, "model": "auth.permission", "pk": 61}, {"fields": {"codename": "change_cdnuseragentsconfig", "name": "Can change cdn user agents config", "content_type": 22}, "model": "auth.permission", "pk": 62}, {"fields": {"codename": "delete_cdnuseragentsconfig", "name": "Can delete cdn user agents config", "content_type": 22}, "model": "auth.permission", "pk": 63}, {"fields": {"codename": "add_sitetheme", "name": "Can add site theme", "content_type": 23}, "model": "auth.permission", "pk": 64}, {"fields": {"codename": "change_sitetheme", "name": "Can change site theme", "content_type": 23}, "model": "auth.permission", "pk": 65}, {"fields": {"codename": "delete_sitetheme", "name": "Can delete site theme", "content_type": 23}, "model": "auth.permission", "pk": 66}, {"fields": {"codename": "add_siteconfiguration", "name": "Can add site configuration", "content_type": 24}, "model": "auth.permission", "pk": 67}, {"fields": {"codename": "change_siteconfiguration", "name": "Can change site configuration", "content_type": 24}, "model": "auth.permission", "pk": 68}, {"fields": {"codename": "delete_siteconfiguration", "name": "Can delete site configuration", "content_type": 24}, "model": "auth.permission", "pk": 69}, {"fields": {"codename": "add_siteconfigurationhistory", "name": "Can add site configuration history", "content_type": 25}, "model": "auth.permission", "pk": 70}, {"fields": {"codename": "change_siteconfigurationhistory", "name": "Can change site configuration history", "content_type": 25}, "model": "auth.permission", "pk": 71}, {"fields": {"codename": "delete_siteconfigurationhistory", "name": "Can delete site configuration history", "content_type": 25}, "model": "auth.permission", "pk": 72}, {"fields": {"codename": "add_studentmodule", "name": "Can add student module", "content_type": 26}, "model": "auth.permission", "pk": 73}, {"fields": {"codename": "change_studentmodule", "name": "Can change student module", "content_type": 26}, "model": "auth.permission", "pk": 74}, {"fields": {"codename": "delete_studentmodule", "name": "Can delete student module", "content_type": 26}, "model": "auth.permission", "pk": 75}, {"fields": {"codename": "add_studentmodulehistory", "name": "Can add student module history", "content_type": 27}, "model": "auth.permission", "pk": 76}, {"fields": {"codename": "change_studentmodulehistory", "name": "Can change student module history", "content_type": 27}, "model": "auth.permission", "pk": 77}, {"fields": {"codename": "delete_studentmodulehistory", "name": "Can delete student module history", "content_type": 27}, "model": "auth.permission", "pk": 78}, {"fields": {"codename": "add_xmoduleuserstatesummaryfield", "name": "Can add x module user state summary field", "content_type": 28}, "model": "auth.permission", "pk": 79}, {"fields": {"codename": "change_xmoduleuserstatesummaryfield", "name": "Can change x module user state summary field", "content_type": 28}, "model": "auth.permission", "pk": 80}, {"fields": {"codename": "delete_xmoduleuserstatesummaryfield", "name": "Can delete x module user state summary field", "content_type": 28}, "model": "auth.permission", "pk": 81}, {"fields": {"codename": "add_xmodulestudentprefsfield", "name": "Can add x module student prefs field", "content_type": 29}, "model": "auth.permission", "pk": 82}, {"fields": {"codename": "change_xmodulestudentprefsfield", "name": "Can change x module student prefs field", "content_type": 29}, "model": "auth.permission", "pk": 83}, {"fields": {"codename": "delete_xmodulestudentprefsfield", "name": "Can delete x module student prefs field", "content_type": 29}, "model": "auth.permission", "pk": 84}, {"fields": {"codename": "add_xmodulestudentinfofield", "name": "Can add x module student info field", "content_type": 30}, "model": "auth.permission", "pk": 85}, {"fields": {"codename": "change_xmodulestudentinfofield", "name": "Can change x module student info field", "content_type": 30}, "model": "auth.permission", "pk": 86}, {"fields": {"codename": "delete_xmodulestudentinfofield", "name": "Can delete x module student info field", "content_type": 30}, "model": "auth.permission", "pk": 87}, {"fields": {"codename": "add_offlinecomputedgrade", "name": "Can add offline computed grade", "content_type": 31}, "model": "auth.permission", "pk": 88}, {"fields": {"codename": "change_offlinecomputedgrade", "name": "Can change offline computed grade", "content_type": 31}, "model": "auth.permission", "pk": 89}, {"fields": {"codename": "delete_offlinecomputedgrade", "name": "Can delete offline computed grade", "content_type": 31}, "model": "auth.permission", "pk": 90}, {"fields": {"codename": "add_offlinecomputedgradelog", "name": "Can add offline computed grade log", "content_type": 32}, "model": "auth.permission", "pk": 91}, {"fields": {"codename": "change_offlinecomputedgradelog", "name": "Can change offline computed grade log", "content_type": 32}, "model": "auth.permission", "pk": 92}, {"fields": {"codename": "delete_offlinecomputedgradelog", "name": "Can delete offline computed grade log", "content_type": 32}, "model": "auth.permission", "pk": 93}, {"fields": {"codename": "add_studentfieldoverride", "name": "Can add student field override", "content_type": 33}, "model": "auth.permission", "pk": 94}, {"fields": {"codename": "change_studentfieldoverride", "name": "Can change student field override", "content_type": 33}, "model": "auth.permission", "pk": 95}, {"fields": {"codename": "delete_studentfieldoverride", "name": "Can delete student field override", "content_type": 33}, "model": "auth.permission", "pk": 96}, {"fields": {"codename": "add_anonymoususerid", "name": "Can add anonymous user id", "content_type": 34}, "model": "auth.permission", "pk": 97}, {"fields": {"codename": "change_anonymoususerid", "name": "Can change anonymous user id", "content_type": 34}, "model": "auth.permission", "pk": 98}, {"fields": {"codename": "delete_anonymoususerid", "name": "Can delete anonymous user id", "content_type": 34}, "model": "auth.permission", "pk": 99}, {"fields": {"codename": "add_userstanding", "name": "Can add user standing", "content_type": 35}, "model": "auth.permission", "pk": 100}, {"fields": {"codename": "change_userstanding", "name": "Can change user standing", "content_type": 35}, "model": "auth.permission", "pk": 101}, {"fields": {"codename": "delete_userstanding", "name": "Can delete user standing", "content_type": 35}, "model": "auth.permission", "pk": 102}, {"fields": {"codename": "add_userprofile", "name": "Can add user profile", "content_type": 36}, "model": "auth.permission", "pk": 103}, {"fields": {"codename": "change_userprofile", "name": "Can change user profile", "content_type": 36}, "model": "auth.permission", "pk": 104}, {"fields": {"codename": "delete_userprofile", "name": "Can delete user profile", "content_type": 36}, "model": "auth.permission", "pk": 105}, {"fields": {"codename": "add_usersignupsource", "name": "Can add user signup source", "content_type": 37}, "model": "auth.permission", "pk": 106}, {"fields": {"codename": "change_usersignupsource", "name": "Can change user signup source", "content_type": 37}, "model": "auth.permission", "pk": 107}, {"fields": {"codename": "delete_usersignupsource", "name": "Can delete user signup source", "content_type": 37}, "model": "auth.permission", "pk": 108}, {"fields": {"codename": "add_usertestgroup", "name": "Can add user test group", "content_type": 38}, "model": "auth.permission", "pk": 109}, {"fields": {"codename": "change_usertestgroup", "name": "Can change user test group", "content_type": 38}, "model": "auth.permission", "pk": 110}, {"fields": {"codename": "delete_usertestgroup", "name": "Can delete user test group", "content_type": 38}, "model": "auth.permission", "pk": 111}, {"fields": {"codename": "add_registration", "name": "Can add registration", "content_type": 39}, "model": "auth.permission", "pk": 112}, {"fields": {"codename": "change_registration", "name": "Can change registration", "content_type": 39}, "model": "auth.permission", "pk": 113}, {"fields": {"codename": "delete_registration", "name": "Can delete registration", "content_type": 39}, "model": "auth.permission", "pk": 114}, {"fields": {"codename": "add_pendingnamechange", "name": "Can add pending name change", "content_type": 40}, "model": "auth.permission", "pk": 115}, {"fields": {"codename": "change_pendingnamechange", "name": "Can change pending name change", "content_type": 40}, "model": "auth.permission", "pk": 116}, {"fields": {"codename": "delete_pendingnamechange", "name": "Can delete pending name change", "content_type": 40}, "model": "auth.permission", "pk": 117}, {"fields": {"codename": "add_pendingemailchange", "name": "Can add pending email change", "content_type": 41}, "model": "auth.permission", "pk": 118}, {"fields": {"codename": "change_pendingemailchange", "name": "Can change pending email change", "content_type": 41}, "model": "auth.permission", "pk": 119}, {"fields": {"codename": "delete_pendingemailchange", "name": "Can delete pending email change", "content_type": 41}, "model": "auth.permission", "pk": 120}, {"fields": {"codename": "add_passwordhistory", "name": "Can add password history", "content_type": 42}, "model": "auth.permission", "pk": 121}, {"fields": {"codename": "change_passwordhistory", "name": "Can change password history", "content_type": 42}, "model": "auth.permission", "pk": 122}, {"fields": {"codename": "delete_passwordhistory", "name": "Can delete password history", "content_type": 42}, "model": "auth.permission", "pk": 123}, {"fields": {"codename": "add_loginfailures", "name": "Can add login failures", "content_type": 43}, "model": "auth.permission", "pk": 124}, {"fields": {"codename": "change_loginfailures", "name": "Can change login failures", "content_type": 43}, "model": "auth.permission", "pk": 125}, {"fields": {"codename": "delete_loginfailures", "name": "Can delete login failures", "content_type": 43}, "model": "auth.permission", "pk": 126}, {"fields": {"codename": "add_historicalcourseenrollment", "name": "Can add historical course enrollment", "content_type": 44}, "model": "auth.permission", "pk": 127}, {"fields": {"codename": "change_historicalcourseenrollment", "name": "Can change historical course enrollment", "content_type": 44}, "model": "auth.permission", "pk": 128}, {"fields": {"codename": "delete_historicalcourseenrollment", "name": "Can delete historical course enrollment", "content_type": 44}, "model": "auth.permission", "pk": 129}, {"fields": {"codename": "add_courseenrollment", "name": "Can add course enrollment", "content_type": 45}, "model": "auth.permission", "pk": 130}, {"fields": {"codename": "change_courseenrollment", "name": "Can change course enrollment", "content_type": 45}, "model": "auth.permission", "pk": 131}, {"fields": {"codename": "delete_courseenrollment", "name": "Can delete course enrollment", "content_type": 45}, "model": "auth.permission", "pk": 132}, {"fields": {"codename": "add_manualenrollmentaudit", "name": "Can add manual enrollment audit", "content_type": 46}, "model": "auth.permission", "pk": 133}, {"fields": {"codename": "change_manualenrollmentaudit", "name": "Can change manual enrollment audit", "content_type": 46}, "model": "auth.permission", "pk": 134}, {"fields": {"codename": "delete_manualenrollmentaudit", "name": "Can delete manual enrollment audit", "content_type": 46}, "model": "auth.permission", "pk": 135}, {"fields": {"codename": "add_courseenrollmentallowed", "name": "Can add course enrollment allowed", "content_type": 47}, "model": "auth.permission", "pk": 136}, {"fields": {"codename": "change_courseenrollmentallowed", "name": "Can change course enrollment allowed", "content_type": 47}, "model": "auth.permission", "pk": 137}, {"fields": {"codename": "delete_courseenrollmentallowed", "name": "Can delete course enrollment allowed", "content_type": 47}, "model": "auth.permission", "pk": 138}, {"fields": {"codename": "add_courseaccessrole", "name": "Can add course access role", "content_type": 48}, "model": "auth.permission", "pk": 139}, {"fields": {"codename": "change_courseaccessrole", "name": "Can change course access role", "content_type": 48}, "model": "auth.permission", "pk": 140}, {"fields": {"codename": "delete_courseaccessrole", "name": "Can delete course access role", "content_type": 48}, "model": "auth.permission", "pk": 141}, {"fields": {"codename": "add_dashboardconfiguration", "name": "Can add dashboard configuration", "content_type": 49}, "model": "auth.permission", "pk": 142}, {"fields": {"codename": "change_dashboardconfiguration", "name": "Can change dashboard configuration", "content_type": 49}, "model": "auth.permission", "pk": 143}, {"fields": {"codename": "delete_dashboardconfiguration", "name": "Can delete dashboard configuration", "content_type": 49}, "model": "auth.permission", "pk": 144}, {"fields": {"codename": "add_linkedinaddtoprofileconfiguration", "name": "Can add linked in add to profile configuration", "content_type": 50}, "model": "auth.permission", "pk": 145}, {"fields": {"codename": "change_linkedinaddtoprofileconfiguration", "name": "Can change linked in add to profile configuration", "content_type": 50}, "model": "auth.permission", "pk": 146}, {"fields": {"codename": "delete_linkedinaddtoprofileconfiguration", "name": "Can delete linked in add to profile configuration", "content_type": 50}, "model": "auth.permission", "pk": 147}, {"fields": {"codename": "add_entranceexamconfiguration", "name": "Can add entrance exam configuration", "content_type": 51}, "model": "auth.permission", "pk": 148}, {"fields": {"codename": "change_entranceexamconfiguration", "name": "Can change entrance exam configuration", "content_type": 51}, "model": "auth.permission", "pk": 149}, {"fields": {"codename": "delete_entranceexamconfiguration", "name": "Can delete entrance exam configuration", "content_type": 51}, "model": "auth.permission", "pk": 150}, {"fields": {"codename": "add_languageproficiency", "name": "Can add language proficiency", "content_type": 52}, "model": "auth.permission", "pk": 151}, {"fields": {"codename": "change_languageproficiency", "name": "Can change language proficiency", "content_type": 52}, "model": "auth.permission", "pk": 152}, {"fields": {"codename": "delete_languageproficiency", "name": "Can delete language proficiency", "content_type": 52}, "model": "auth.permission", "pk": 153}, {"fields": {"codename": "add_courseenrollmentattribute", "name": "Can add course enrollment attribute", "content_type": 53}, "model": "auth.permission", "pk": 154}, {"fields": {"codename": "change_courseenrollmentattribute", "name": "Can change course enrollment attribute", "content_type": 53}, "model": "auth.permission", "pk": 155}, {"fields": {"codename": "delete_courseenrollmentattribute", "name": "Can delete course enrollment attribute", "content_type": 53}, "model": "auth.permission", "pk": 156}, {"fields": {"codename": "add_enrollmentrefundconfiguration", "name": "Can add enrollment refund configuration", "content_type": 54}, "model": "auth.permission", "pk": 157}, {"fields": {"codename": "change_enrollmentrefundconfiguration", "name": "Can change enrollment refund configuration", "content_type": 54}, "model": "auth.permission", "pk": 158}, {"fields": {"codename": "delete_enrollmentrefundconfiguration", "name": "Can delete enrollment refund configuration", "content_type": 54}, "model": "auth.permission", "pk": 159}, {"fields": {"codename": "add_userattribute", "name": "Can add user attribute", "content_type": 55}, "model": "auth.permission", "pk": 160}, {"fields": {"codename": "change_userattribute", "name": "Can change user attribute", "content_type": 55}, "model": "auth.permission", "pk": 161}, {"fields": {"codename": "delete_userattribute", "name": "Can delete user attribute", "content_type": 55}, "model": "auth.permission", "pk": 162}, {"fields": {"codename": "add_logoutviewconfiguration", "name": "Can add logout view configuration", "content_type": 56}, "model": "auth.permission", "pk": 163}, {"fields": {"codename": "change_logoutviewconfiguration", "name": "Can change logout view configuration", "content_type": 56}, "model": "auth.permission", "pk": 164}, {"fields": {"codename": "delete_logoutviewconfiguration", "name": "Can delete logout view configuration", "content_type": 56}, "model": "auth.permission", "pk": 165}, {"fields": {"codename": "add_trackinglog", "name": "Can add tracking log", "content_type": 57}, "model": "auth.permission", "pk": 166}, {"fields": {"codename": "change_trackinglog", "name": "Can change tracking log", "content_type": 57}, "model": "auth.permission", "pk": 167}, {"fields": {"codename": "delete_trackinglog", "name": "Can delete tracking log", "content_type": 57}, "model": "auth.permission", "pk": 168}, {"fields": {"codename": "add_ratelimitconfiguration", "name": "Can add rate limit configuration", "content_type": 58}, "model": "auth.permission", "pk": 169}, {"fields": {"codename": "change_ratelimitconfiguration", "name": "Can change rate limit configuration", "content_type": 58}, "model": "auth.permission", "pk": 170}, {"fields": {"codename": "delete_ratelimitconfiguration", "name": "Can delete rate limit configuration", "content_type": 58}, "model": "auth.permission", "pk": 171}, {"fields": {"codename": "add_certificatewhitelist", "name": "Can add certificate whitelist", "content_type": 59}, "model": "auth.permission", "pk": 172}, {"fields": {"codename": "change_certificatewhitelist", "name": "Can change certificate whitelist", "content_type": 59}, "model": "auth.permission", "pk": 173}, {"fields": {"codename": "delete_certificatewhitelist", "name": "Can delete certificate whitelist", "content_type": 59}, "model": "auth.permission", "pk": 174}, {"fields": {"codename": "add_generatedcertificate", "name": "Can add generated certificate", "content_type": 60}, "model": "auth.permission", "pk": 175}, {"fields": {"codename": "change_generatedcertificate", "name": "Can change generated certificate", "content_type": 60}, "model": "auth.permission", "pk": 176}, {"fields": {"codename": "delete_generatedcertificate", "name": "Can delete generated certificate", "content_type": 60}, "model": "auth.permission", "pk": 177}, {"fields": {"codename": "add_certificategenerationhistory", "name": "Can add certificate generation history", "content_type": 61}, "model": "auth.permission", "pk": 178}, {"fields": {"codename": "change_certificategenerationhistory", "name": "Can change certificate generation history", "content_type": 61}, "model": "auth.permission", "pk": 179}, {"fields": {"codename": "delete_certificategenerationhistory", "name": "Can delete certificate generation history", "content_type": 61}, "model": "auth.permission", "pk": 180}, {"fields": {"codename": "add_certificateinvalidation", "name": "Can add certificate invalidation", "content_type": 62}, "model": "auth.permission", "pk": 181}, {"fields": {"codename": "change_certificateinvalidation", "name": "Can change certificate invalidation", "content_type": 62}, "model": "auth.permission", "pk": 182}, {"fields": {"codename": "delete_certificateinvalidation", "name": "Can delete certificate invalidation", "content_type": 62}, "model": "auth.permission", "pk": 183}, {"fields": {"codename": "add_examplecertificateset", "name": "Can add example certificate set", "content_type": 63}, "model": "auth.permission", "pk": 184}, {"fields": {"codename": "change_examplecertificateset", "name": "Can change example certificate set", "content_type": 63}, "model": "auth.permission", "pk": 185}, {"fields": {"codename": "delete_examplecertificateset", "name": "Can delete example certificate set", "content_type": 63}, "model": "auth.permission", "pk": 186}, {"fields": {"codename": "add_examplecertificate", "name": "Can add example certificate", "content_type": 64}, "model": "auth.permission", "pk": 187}, {"fields": {"codename": "change_examplecertificate", "name": "Can change example certificate", "content_type": 64}, "model": "auth.permission", "pk": 188}, {"fields": {"codename": "delete_examplecertificate", "name": "Can delete example certificate", "content_type": 64}, "model": "auth.permission", "pk": 189}, {"fields": {"codename": "add_certificategenerationcoursesetting", "name": "Can add certificate generation course setting", "content_type": 65}, "model": "auth.permission", "pk": 190}, {"fields": {"codename": "change_certificategenerationcoursesetting", "name": "Can change certificate generation course setting", "content_type": 65}, "model": "auth.permission", "pk": 191}, {"fields": {"codename": "delete_certificategenerationcoursesetting", "name": "Can delete certificate generation course setting", "content_type": 65}, "model": "auth.permission", "pk": 192}, {"fields": {"codename": "add_certificategenerationconfiguration", "name": "Can add certificate generation configuration", "content_type": 66}, "model": "auth.permission", "pk": 193}, {"fields": {"codename": "change_certificategenerationconfiguration", "name": "Can change certificate generation configuration", "content_type": 66}, "model": "auth.permission", "pk": 194}, {"fields": {"codename": "delete_certificategenerationconfiguration", "name": "Can delete certificate generation configuration", "content_type": 66}, "model": "auth.permission", "pk": 195}, {"fields": {"codename": "add_certificatehtmlviewconfiguration", "name": "Can add certificate html view configuration", "content_type": 67}, "model": "auth.permission", "pk": 196}, {"fields": {"codename": "change_certificatehtmlviewconfiguration", "name": "Can change certificate html view configuration", "content_type": 67}, "model": "auth.permission", "pk": 197}, {"fields": {"codename": "delete_certificatehtmlviewconfiguration", "name": "Can delete certificate html view configuration", "content_type": 67}, "model": "auth.permission", "pk": 198}, {"fields": {"codename": "add_certificatetemplate", "name": "Can add certificate template", "content_type": 68}, "model": "auth.permission", "pk": 199}, {"fields": {"codename": "change_certificatetemplate", "name": "Can change certificate template", "content_type": 68}, "model": "auth.permission", "pk": 200}, {"fields": {"codename": "delete_certificatetemplate", "name": "Can delete certificate template", "content_type": 68}, "model": "auth.permission", "pk": 201}, {"fields": {"codename": "add_certificatetemplateasset", "name": "Can add certificate template asset", "content_type": 69}, "model": "auth.permission", "pk": 202}, {"fields": {"codename": "change_certificatetemplateasset", "name": "Can change certificate template asset", "content_type": 69}, "model": "auth.permission", "pk": 203}, {"fields": {"codename": "delete_certificatetemplateasset", "name": "Can delete certificate template asset", "content_type": 69}, "model": "auth.permission", "pk": 204}, {"fields": {"codename": "add_instructortask", "name": "Can add instructor task", "content_type": 70}, "model": "auth.permission", "pk": 205}, {"fields": {"codename": "change_instructortask", "name": "Can change instructor task", "content_type": 70}, "model": "auth.permission", "pk": 206}, {"fields": {"codename": "delete_instructortask", "name": "Can delete instructor task", "content_type": 70}, "model": "auth.permission", "pk": 207}, {"fields": {"codename": "add_courseusergroup", "name": "Can add course user group", "content_type": 71}, "model": "auth.permission", "pk": 208}, {"fields": {"codename": "change_courseusergroup", "name": "Can change course user group", "content_type": 71}, "model": "auth.permission", "pk": 209}, {"fields": {"codename": "delete_courseusergroup", "name": "Can delete course user group", "content_type": 71}, "model": "auth.permission", "pk": 210}, {"fields": {"codename": "add_cohortmembership", "name": "Can add cohort membership", "content_type": 72}, "model": "auth.permission", "pk": 211}, {"fields": {"codename": "change_cohortmembership", "name": "Can change cohort membership", "content_type": 72}, "model": "auth.permission", "pk": 212}, {"fields": {"codename": "delete_cohortmembership", "name": "Can delete cohort membership", "content_type": 72}, "model": "auth.permission", "pk": 213}, {"fields": {"codename": "add_courseusergrouppartitiongroup", "name": "Can add course user group partition group", "content_type": 73}, "model": "auth.permission", "pk": 214}, {"fields": {"codename": "change_courseusergrouppartitiongroup", "name": "Can change course user group partition group", "content_type": 73}, "model": "auth.permission", "pk": 215}, {"fields": {"codename": "delete_courseusergrouppartitiongroup", "name": "Can delete course user group partition group", "content_type": 73}, "model": "auth.permission", "pk": 216}, {"fields": {"codename": "add_coursecohortssettings", "name": "Can add course cohorts settings", "content_type": 74}, "model": "auth.permission", "pk": 217}, {"fields": {"codename": "change_coursecohortssettings", "name": "Can change course cohorts settings", "content_type": 74}, "model": "auth.permission", "pk": 218}, {"fields": {"codename": "delete_coursecohortssettings", "name": "Can delete course cohorts settings", "content_type": 74}, "model": "auth.permission", "pk": 219}, {"fields": {"codename": "add_coursecohort", "name": "Can add course cohort", "content_type": 75}, "model": "auth.permission", "pk": 220}, {"fields": {"codename": "change_coursecohort", "name": "Can change course cohort", "content_type": 75}, "model": "auth.permission", "pk": 221}, {"fields": {"codename": "delete_coursecohort", "name": "Can delete course cohort", "content_type": 75}, "model": "auth.permission", "pk": 222}, {"fields": {"codename": "add_target", "name": "Can add target", "content_type": 76}, "model": "auth.permission", "pk": 223}, {"fields": {"codename": "change_target", "name": "Can change target", "content_type": 76}, "model": "auth.permission", "pk": 224}, {"fields": {"codename": "delete_target", "name": "Can delete target", "content_type": 76}, "model": "auth.permission", "pk": 225}, {"fields": {"codename": "add_cohorttarget", "name": "Can add cohort target", "content_type": 77}, "model": "auth.permission", "pk": 226}, {"fields": {"codename": "change_cohorttarget", "name": "Can change cohort target", "content_type": 77}, "model": "auth.permission", "pk": 227}, {"fields": {"codename": "delete_cohorttarget", "name": "Can delete cohort target", "content_type": 77}, "model": "auth.permission", "pk": 228}, {"fields": {"codename": "add_courseemail", "name": "Can add course email", "content_type": 78}, "model": "auth.permission", "pk": 229}, {"fields": {"codename": "change_courseemail", "name": "Can change course email", "content_type": 78}, "model": "auth.permission", "pk": 230}, {"fields": {"codename": "delete_courseemail", "name": "Can delete course email", "content_type": 78}, "model": "auth.permission", "pk": 231}, {"fields": {"codename": "add_optout", "name": "Can add optout", "content_type": 79}, "model": "auth.permission", "pk": 232}, {"fields": {"codename": "change_optout", "name": "Can change optout", "content_type": 79}, "model": "auth.permission", "pk": 233}, {"fields": {"codename": "delete_optout", "name": "Can delete optout", "content_type": 79}, "model": "auth.permission", "pk": 234}, {"fields": {"codename": "add_courseemailtemplate", "name": "Can add course email template", "content_type": 80}, "model": "auth.permission", "pk": 235}, {"fields": {"codename": "change_courseemailtemplate", "name": "Can change course email template", "content_type": 80}, "model": "auth.permission", "pk": 236}, {"fields": {"codename": "delete_courseemailtemplate", "name": "Can delete course email template", "content_type": 80}, "model": "auth.permission", "pk": 237}, {"fields": {"codename": "add_courseauthorization", "name": "Can add course authorization", "content_type": 81}, "model": "auth.permission", "pk": 238}, {"fields": {"codename": "change_courseauthorization", "name": "Can change course authorization", "content_type": 81}, "model": "auth.permission", "pk": 239}, {"fields": {"codename": "delete_courseauthorization", "name": "Can delete course authorization", "content_type": 81}, "model": "auth.permission", "pk": 240}, {"fields": {"codename": "add_bulkemailflag", "name": "Can add bulk email flag", "content_type": 82}, "model": "auth.permission", "pk": 241}, {"fields": {"codename": "change_bulkemailflag", "name": "Can change bulk email flag", "content_type": 82}, "model": "auth.permission", "pk": 242}, {"fields": {"codename": "delete_bulkemailflag", "name": "Can delete bulk email flag", "content_type": 82}, "model": "auth.permission", "pk": 243}, {"fields": {"codename": "add_brandinginfoconfig", "name": "Can add branding info config", "content_type": 83}, "model": "auth.permission", "pk": 244}, {"fields": {"codename": "change_brandinginfoconfig", "name": "Can change branding info config", "content_type": 83}, "model": "auth.permission", "pk": 245}, {"fields": {"codename": "delete_brandinginfoconfig", "name": "Can delete branding info config", "content_type": 83}, "model": "auth.permission", "pk": 246}, {"fields": {"codename": "add_brandingapiconfig", "name": "Can add branding api config", "content_type": 84}, "model": "auth.permission", "pk": 247}, {"fields": {"codename": "change_brandingapiconfig", "name": "Can change branding api config", "content_type": 84}, "model": "auth.permission", "pk": 248}, {"fields": {"codename": "delete_brandingapiconfig", "name": "Can delete branding api config", "content_type": 84}, "model": "auth.permission", "pk": 249}, {"fields": {"codename": "add_externalauthmap", "name": "Can add external auth map", "content_type": 85}, "model": "auth.permission", "pk": 250}, {"fields": {"codename": "change_externalauthmap", "name": "Can change external auth map", "content_type": 85}, "model": "auth.permission", "pk": 251}, {"fields": {"codename": "delete_externalauthmap", "name": "Can delete external auth map", "content_type": 85}, "model": "auth.permission", "pk": 252}, {"fields": {"codename": "add_nonce", "name": "Can add nonce", "content_type": 86}, "model": "auth.permission", "pk": 253}, {"fields": {"codename": "change_nonce", "name": "Can change nonce", "content_type": 86}, "model": "auth.permission", "pk": 254}, {"fields": {"codename": "delete_nonce", "name": "Can delete nonce", "content_type": 86}, "model": "auth.permission", "pk": 255}, {"fields": {"codename": "add_association", "name": "Can add association", "content_type": 87}, "model": "auth.permission", "pk": 256}, {"fields": {"codename": "change_association", "name": "Can change association", "content_type": 87}, "model": "auth.permission", "pk": 257}, {"fields": {"codename": "delete_association", "name": "Can delete association", "content_type": 87}, "model": "auth.permission", "pk": 258}, {"fields": {"codename": "add_useropenid", "name": "Can add user open id", "content_type": 88}, "model": "auth.permission", "pk": 259}, {"fields": {"codename": "change_useropenid", "name": "Can change user open id", "content_type": 88}, "model": "auth.permission", "pk": 260}, {"fields": {"codename": "delete_useropenid", "name": "Can delete user open id", "content_type": 88}, "model": "auth.permission", "pk": 261}, {"fields": {"codename": "account_verified", "name": "The OpenID has been verified", "content_type": 88}, "model": "auth.permission", "pk": 262}, {"fields": {"codename": "add_client", "name": "Can add client", "content_type": 89}, "model": "auth.permission", "pk": 263}, {"fields": {"codename": "change_client", "name": "Can change client", "content_type": 89}, "model": "auth.permission", "pk": 264}, {"fields": {"codename": "delete_client", "name": "Can delete client", "content_type": 89}, "model": "auth.permission", "pk": 265}, {"fields": {"codename": "add_grant", "name": "Can add grant", "content_type": 90}, "model": "auth.permission", "pk": 266}, {"fields": {"codename": "change_grant", "name": "Can change grant", "content_type": 90}, "model": "auth.permission", "pk": 267}, {"fields": {"codename": "delete_grant", "name": "Can delete grant", "content_type": 90}, "model": "auth.permission", "pk": 268}, {"fields": {"codename": "add_accesstoken", "name": "Can add access token", "content_type": 91}, "model": "auth.permission", "pk": 269}, {"fields": {"codename": "change_accesstoken", "name": "Can change access token", "content_type": 91}, "model": "auth.permission", "pk": 270}, {"fields": {"codename": "delete_accesstoken", "name": "Can delete access token", "content_type": 91}, "model": "auth.permission", "pk": 271}, {"fields": {"codename": "add_refreshtoken", "name": "Can add refresh token", "content_type": 92}, "model": "auth.permission", "pk": 272}, {"fields": {"codename": "change_refreshtoken", "name": "Can change refresh token", "content_type": 92}, "model": "auth.permission", "pk": 273}, {"fields": {"codename": "delete_refreshtoken", "name": "Can delete refresh token", "content_type": 92}, "model": "auth.permission", "pk": 274}, {"fields": {"codename": "add_trustedclient", "name": "Can add trusted client", "content_type": 93}, "model": "auth.permission", "pk": 275}, {"fields": {"codename": "change_trustedclient", "name": "Can change trusted client", "content_type": 93}, "model": "auth.permission", "pk": 276}, {"fields": {"codename": "delete_trustedclient", "name": "Can delete trusted client", "content_type": 93}, "model": "auth.permission", "pk": 277}, {"fields": {"codename": "add_application", "name": "Can add application", "content_type": 94}, "model": "auth.permission", "pk": 278}, {"fields": {"codename": "change_application", "name": "Can change application", "content_type": 94}, "model": "auth.permission", "pk": 279}, {"fields": {"codename": "delete_application", "name": "Can delete application", "content_type": 94}, "model": "auth.permission", "pk": 280}, {"fields": {"codename": "add_grant", "name": "Can add grant", "content_type": 95}, "model": "auth.permission", "pk": 281}, {"fields": {"codename": "change_grant", "name": "Can change grant", "content_type": 95}, "model": "auth.permission", "pk": 282}, {"fields": {"codename": "delete_grant", "name": "Can delete grant", "content_type": 95}, "model": "auth.permission", "pk": 283}, {"fields": {"codename": "add_accesstoken", "name": "Can add access token", "content_type": 96}, "model": "auth.permission", "pk": 284}, {"fields": {"codename": "change_accesstoken", "name": "Can change access token", "content_type": 96}, "model": "auth.permission", "pk": 285}, {"fields": {"codename": "delete_accesstoken", "name": "Can delete access token", "content_type": 96}, "model": "auth.permission", "pk": 286}, {"fields": {"codename": "add_refreshtoken", "name": "Can add refresh token", "content_type": 97}, "model": "auth.permission", "pk": 287}, {"fields": {"codename": "change_refreshtoken", "name": "Can change refresh token", "content_type": 97}, "model": "auth.permission", "pk": 288}, {"fields": {"codename": "delete_refreshtoken", "name": "Can delete refresh token", "content_type": 97}, "model": "auth.permission", "pk": 289}, {"fields": {"codename": "add_oauth2providerconfig", "name": "Can add Provider Configuration (OAuth)", "content_type": 98}, "model": "auth.permission", "pk": 290}, {"fields": {"codename": "change_oauth2providerconfig", "name": "Can change Provider Configuration (OAuth)", "content_type": 98}, "model": "auth.permission", "pk": 291}, {"fields": {"codename": "delete_oauth2providerconfig", "name": "Can delete Provider Configuration (OAuth)", "content_type": 98}, "model": "auth.permission", "pk": 292}, {"fields": {"codename": "add_samlproviderconfig", "name": "Can add Provider Configuration (SAML IdP)", "content_type": 99}, "model": "auth.permission", "pk": 293}, {"fields": {"codename": "change_samlproviderconfig", "name": "Can change Provider Configuration (SAML IdP)", "content_type": 99}, "model": "auth.permission", "pk": 294}, {"fields": {"codename": "delete_samlproviderconfig", "name": "Can delete Provider Configuration (SAML IdP)", "content_type": 99}, "model": "auth.permission", "pk": 295}, {"fields": {"codename": "add_samlconfiguration", "name": "Can add SAML Configuration", "content_type": 100}, "model": "auth.permission", "pk": 296}, {"fields": {"codename": "change_samlconfiguration", "name": "Can change SAML Configuration", "content_type": 100}, "model": "auth.permission", "pk": 297}, {"fields": {"codename": "delete_samlconfiguration", "name": "Can delete SAML Configuration", "content_type": 100}, "model": "auth.permission", "pk": 298}, {"fields": {"codename": "add_samlproviderdata", "name": "Can add SAML Provider Data", "content_type": 101}, "model": "auth.permission", "pk": 299}, {"fields": {"codename": "change_samlproviderdata", "name": "Can change SAML Provider Data", "content_type": 101}, "model": "auth.permission", "pk": 300}, {"fields": {"codename": "delete_samlproviderdata", "name": "Can delete SAML Provider Data", "content_type": 101}, "model": "auth.permission", "pk": 301}, {"fields": {"codename": "add_ltiproviderconfig", "name": "Can add Provider Configuration (LTI)", "content_type": 102}, "model": "auth.permission", "pk": 302}, {"fields": {"codename": "change_ltiproviderconfig", "name": "Can change Provider Configuration (LTI)", "content_type": 102}, "model": "auth.permission", "pk": 303}, {"fields": {"codename": "delete_ltiproviderconfig", "name": "Can delete Provider Configuration (LTI)", "content_type": 102}, "model": "auth.permission", "pk": 304}, {"fields": {"codename": "add_providerapipermissions", "name": "Can add Provider API Permission", "content_type": 103}, "model": "auth.permission", "pk": 305}, {"fields": {"codename": "change_providerapipermissions", "name": "Can change Provider API Permission", "content_type": 103}, "model": "auth.permission", "pk": 306}, {"fields": {"codename": "delete_providerapipermissions", "name": "Can delete Provider API Permission", "content_type": 103}, "model": "auth.permission", "pk": 307}, {"fields": {"codename": "add_nonce", "name": "Can add nonce", "content_type": 104}, "model": "auth.permission", "pk": 308}, {"fields": {"codename": "change_nonce", "name": "Can change nonce", "content_type": 104}, "model": "auth.permission", "pk": 309}, {"fields": {"codename": "delete_nonce", "name": "Can delete nonce", "content_type": 104}, "model": "auth.permission", "pk": 310}, {"fields": {"codename": "add_scope", "name": "Can add scope", "content_type": 105}, "model": "auth.permission", "pk": 311}, {"fields": {"codename": "change_scope", "name": "Can change scope", "content_type": 105}, "model": "auth.permission", "pk": 312}, {"fields": {"codename": "delete_scope", "name": "Can delete scope", "content_type": 105}, "model": "auth.permission", "pk": 313}, {"fields": {"codename": "add_resource", "name": "Can add resource", "content_type": 105}, "model": "auth.permission", "pk": 314}, {"fields": {"codename": "change_resource", "name": "Can change resource", "content_type": 105}, "model": "auth.permission", "pk": 315}, {"fields": {"codename": "delete_resource", "name": "Can delete resource", "content_type": 105}, "model": "auth.permission", "pk": 316}, {"fields": {"codename": "add_consumer", "name": "Can add consumer", "content_type": 106}, "model": "auth.permission", "pk": 317}, {"fields": {"codename": "change_consumer", "name": "Can change consumer", "content_type": 106}, "model": "auth.permission", "pk": 318}, {"fields": {"codename": "delete_consumer", "name": "Can delete consumer", "content_type": 106}, "model": "auth.permission", "pk": 319}, {"fields": {"codename": "add_token", "name": "Can add token", "content_type": 107}, "model": "auth.permission", "pk": 320}, {"fields": {"codename": "change_token", "name": "Can change token", "content_type": 107}, "model": "auth.permission", "pk": 321}, {"fields": {"codename": "delete_token", "name": "Can delete token", "content_type": 107}, "model": "auth.permission", "pk": 322}, {"fields": {"codename": "add_article", "name": "Can add article", "content_type": 109}, "model": "auth.permission", "pk": 323}, {"fields": {"codename": "change_article", "name": "Can change article", "content_type": 109}, "model": "auth.permission", "pk": 324}, {"fields": {"codename": "delete_article", "name": "Can delete article", "content_type": 109}, "model": "auth.permission", "pk": 325}, {"fields": {"codename": "moderate", "name": "Can edit all articles and lock/unlock/restore", "content_type": 109}, "model": "auth.permission", "pk": 326}, {"fields": {"codename": "assign", "name": "Can change ownership of any article", "content_type": 109}, "model": "auth.permission", "pk": 327}, {"fields": {"codename": "grant", "name": "Can assign permissions to other users", "content_type": 109}, "model": "auth.permission", "pk": 328}, {"fields": {"codename": "add_articleforobject", "name": "Can add Article for object", "content_type": 110}, "model": "auth.permission", "pk": 329}, {"fields": {"codename": "change_articleforobject", "name": "Can change Article for object", "content_type": 110}, "model": "auth.permission", "pk": 330}, {"fields": {"codename": "delete_articleforobject", "name": "Can delete Article for object", "content_type": 110}, "model": "auth.permission", "pk": 331}, {"fields": {"codename": "add_articlerevision", "name": "Can add article revision", "content_type": 111}, "model": "auth.permission", "pk": 332}, {"fields": {"codename": "change_articlerevision", "name": "Can change article revision", "content_type": 111}, "model": "auth.permission", "pk": 333}, {"fields": {"codename": "delete_articlerevision", "name": "Can delete article revision", "content_type": 111}, "model": "auth.permission", "pk": 334}, {"fields": {"codename": "add_urlpath", "name": "Can add URL path", "content_type": 112}, "model": "auth.permission", "pk": 335}, {"fields": {"codename": "change_urlpath", "name": "Can change URL path", "content_type": 112}, "model": "auth.permission", "pk": 336}, {"fields": {"codename": "delete_urlpath", "name": "Can delete URL path", "content_type": 112}, "model": "auth.permission", "pk": 337}, {"fields": {"codename": "add_articleplugin", "name": "Can add article plugin", "content_type": 113}, "model": "auth.permission", "pk": 338}, {"fields": {"codename": "change_articleplugin", "name": "Can change article plugin", "content_type": 113}, "model": "auth.permission", "pk": 339}, {"fields": {"codename": "delete_articleplugin", "name": "Can delete article plugin", "content_type": 113}, "model": "auth.permission", "pk": 340}, {"fields": {"codename": "add_reusableplugin", "name": "Can add reusable plugin", "content_type": 114}, "model": "auth.permission", "pk": 341}, {"fields": {"codename": "change_reusableplugin", "name": "Can change reusable plugin", "content_type": 114}, "model": "auth.permission", "pk": 342}, {"fields": {"codename": "delete_reusableplugin", "name": "Can delete reusable plugin", "content_type": 114}, "model": "auth.permission", "pk": 343}, {"fields": {"codename": "add_simpleplugin", "name": "Can add simple plugin", "content_type": 115}, "model": "auth.permission", "pk": 344}, {"fields": {"codename": "change_simpleplugin", "name": "Can change simple plugin", "content_type": 115}, "model": "auth.permission", "pk": 345}, {"fields": {"codename": "delete_simpleplugin", "name": "Can delete simple plugin", "content_type": 115}, "model": "auth.permission", "pk": 346}, {"fields": {"codename": "add_revisionplugin", "name": "Can add revision plugin", "content_type": 116}, "model": "auth.permission", "pk": 347}, {"fields": {"codename": "change_revisionplugin", "name": "Can change revision plugin", "content_type": 116}, "model": "auth.permission", "pk": 348}, {"fields": {"codename": "delete_revisionplugin", "name": "Can delete revision plugin", "content_type": 116}, "model": "auth.permission", "pk": 349}, {"fields": {"codename": "add_revisionpluginrevision", "name": "Can add revision plugin revision", "content_type": 117}, "model": "auth.permission", "pk": 350}, {"fields": {"codename": "change_revisionpluginrevision", "name": "Can change revision plugin revision", "content_type": 117}, "model": "auth.permission", "pk": 351}, {"fields": {"codename": "delete_revisionpluginrevision", "name": "Can delete revision plugin revision", "content_type": 117}, "model": "auth.permission", "pk": 352}, {"fields": {"codename": "add_image", "name": "Can add image", "content_type": 118}, "model": "auth.permission", "pk": 353}, {"fields": {"codename": "change_image", "name": "Can change image", "content_type": 118}, "model": "auth.permission", "pk": 354}, {"fields": {"codename": "delete_image", "name": "Can delete image", "content_type": 118}, "model": "auth.permission", "pk": 355}, {"fields": {"codename": "add_imagerevision", "name": "Can add image revision", "content_type": 119}, "model": "auth.permission", "pk": 356}, {"fields": {"codename": "change_imagerevision", "name": "Can change image revision", "content_type": 119}, "model": "auth.permission", "pk": 357}, {"fields": {"codename": "delete_imagerevision", "name": "Can delete image revision", "content_type": 119}, "model": "auth.permission", "pk": 358}, {"fields": {"codename": "add_attachment", "name": "Can add attachment", "content_type": 120}, "model": "auth.permission", "pk": 359}, {"fields": {"codename": "change_attachment", "name": "Can change attachment", "content_type": 120}, "model": "auth.permission", "pk": 360}, {"fields": {"codename": "delete_attachment", "name": "Can delete attachment", "content_type": 120}, "model": "auth.permission", "pk": 361}, {"fields": {"codename": "add_attachmentrevision", "name": "Can add attachment revision", "content_type": 121}, "model": "auth.permission", "pk": 362}, {"fields": {"codename": "change_attachmentrevision", "name": "Can change attachment revision", "content_type": 121}, "model": "auth.permission", "pk": 363}, {"fields": {"codename": "delete_attachmentrevision", "name": "Can delete attachment revision", "content_type": 121}, "model": "auth.permission", "pk": 364}, {"fields": {"codename": "add_notificationtype", "name": "Can add type", "content_type": 122}, "model": "auth.permission", "pk": 365}, {"fields": {"codename": "change_notificationtype", "name": "Can change type", "content_type": 122}, "model": "auth.permission", "pk": 366}, {"fields": {"codename": "delete_notificationtype", "name": "Can delete type", "content_type": 122}, "model": "auth.permission", "pk": 367}, {"fields": {"codename": "add_settings", "name": "Can add settings", "content_type": 123}, "model": "auth.permission", "pk": 368}, {"fields": {"codename": "change_settings", "name": "Can change settings", "content_type": 123}, "model": "auth.permission", "pk": 369}, {"fields": {"codename": "delete_settings", "name": "Can delete settings", "content_type": 123}, "model": "auth.permission", "pk": 370}, {"fields": {"codename": "add_subscription", "name": "Can add subscription", "content_type": 124}, "model": "auth.permission", "pk": 371}, {"fields": {"codename": "change_subscription", "name": "Can change subscription", "content_type": 124}, "model": "auth.permission", "pk": 372}, {"fields": {"codename": "delete_subscription", "name": "Can delete subscription", "content_type": 124}, "model": "auth.permission", "pk": 373}, {"fields": {"codename": "add_notification", "name": "Can add notification", "content_type": 125}, "model": "auth.permission", "pk": 374}, {"fields": {"codename": "change_notification", "name": "Can change notification", "content_type": 125}, "model": "auth.permission", "pk": 375}, {"fields": {"codename": "delete_notification", "name": "Can delete notification", "content_type": 125}, "model": "auth.permission", "pk": 376}, {"fields": {"codename": "add_logentry", "name": "Can add log entry", "content_type": 126}, "model": "auth.permission", "pk": 377}, {"fields": {"codename": "change_logentry", "name": "Can change log entry", "content_type": 126}, "model": "auth.permission", "pk": 378}, {"fields": {"codename": "delete_logentry", "name": "Can delete log entry", "content_type": 126}, "model": "auth.permission", "pk": 379}, {"fields": {"codename": "add_role", "name": "Can add role", "content_type": 127}, "model": "auth.permission", "pk": 380}, {"fields": {"codename": "change_role", "name": "Can change role", "content_type": 127}, "model": "auth.permission", "pk": 381}, {"fields": {"codename": "delete_role", "name": "Can delete role", "content_type": 127}, "model": "auth.permission", "pk": 382}, {"fields": {"codename": "add_permission", "name": "Can add permission", "content_type": 128}, "model": "auth.permission", "pk": 383}, {"fields": {"codename": "change_permission", "name": "Can change permission", "content_type": 128}, "model": "auth.permission", "pk": 384}, {"fields": {"codename": "delete_permission", "name": "Can delete permission", "content_type": 128}, "model": "auth.permission", "pk": 385}, {"fields": {"codename": "add_forumsconfig", "name": "Can add forums config", "content_type": 129}, "model": "auth.permission", "pk": 386}, {"fields": {"codename": "change_forumsconfig", "name": "Can change forums config", "content_type": 129}, "model": "auth.permission", "pk": 387}, {"fields": {"codename": "delete_forumsconfig", "name": "Can delete forums config", "content_type": 129}, "model": "auth.permission", "pk": 388}, {"fields": {"codename": "add_note", "name": "Can add note", "content_type": 130}, "model": "auth.permission", "pk": 389}, {"fields": {"codename": "change_note", "name": "Can change note", "content_type": 130}, "model": "auth.permission", "pk": 390}, {"fields": {"codename": "delete_note", "name": "Can delete note", "content_type": 130}, "model": "auth.permission", "pk": 391}, {"fields": {"codename": "add_splashconfig", "name": "Can add splash config", "content_type": 131}, "model": "auth.permission", "pk": 392}, {"fields": {"codename": "change_splashconfig", "name": "Can change splash config", "content_type": 131}, "model": "auth.permission", "pk": 393}, {"fields": {"codename": "delete_splashconfig", "name": "Can delete splash config", "content_type": 131}, "model": "auth.permission", "pk": 394}, {"fields": {"codename": "add_userpreference", "name": "Can add user preference", "content_type": 132}, "model": "auth.permission", "pk": 395}, {"fields": {"codename": "change_userpreference", "name": "Can change user preference", "content_type": 132}, "model": "auth.permission", "pk": 396}, {"fields": {"codename": "delete_userpreference", "name": "Can delete user preference", "content_type": 132}, "model": "auth.permission", "pk": 397}, {"fields": {"codename": "add_usercoursetag", "name": "Can add user course tag", "content_type": 133}, "model": "auth.permission", "pk": 398}, {"fields": {"codename": "change_usercoursetag", "name": "Can change user course tag", "content_type": 133}, "model": "auth.permission", "pk": 399}, {"fields": {"codename": "delete_usercoursetag", "name": "Can delete user course tag", "content_type": 133}, "model": "auth.permission", "pk": 400}, {"fields": {"codename": "add_userorgtag", "name": "Can add user org tag", "content_type": 134}, "model": "auth.permission", "pk": 401}, {"fields": {"codename": "change_userorgtag", "name": "Can change user org tag", "content_type": 134}, "model": "auth.permission", "pk": 402}, {"fields": {"codename": "delete_userorgtag", "name": "Can delete user org tag", "content_type": 134}, "model": "auth.permission", "pk": 403}, {"fields": {"codename": "add_order", "name": "Can add order", "content_type": 135}, "model": "auth.permission", "pk": 404}, {"fields": {"codename": "change_order", "name": "Can change order", "content_type": 135}, "model": "auth.permission", "pk": 405}, {"fields": {"codename": "delete_order", "name": "Can delete order", "content_type": 135}, "model": "auth.permission", "pk": 406}, {"fields": {"codename": "add_orderitem", "name": "Can add order item", "content_type": 136}, "model": "auth.permission", "pk": 407}, {"fields": {"codename": "change_orderitem", "name": "Can change order item", "content_type": 136}, "model": "auth.permission", "pk": 408}, {"fields": {"codename": "delete_orderitem", "name": "Can delete order item", "content_type": 136}, "model": "auth.permission", "pk": 409}, {"fields": {"codename": "add_invoice", "name": "Can add invoice", "content_type": 137}, "model": "auth.permission", "pk": 410}, {"fields": {"codename": "change_invoice", "name": "Can change invoice", "content_type": 137}, "model": "auth.permission", "pk": 411}, {"fields": {"codename": "delete_invoice", "name": "Can delete invoice", "content_type": 137}, "model": "auth.permission", "pk": 412}, {"fields": {"codename": "add_invoicetransaction", "name": "Can add invoice transaction", "content_type": 138}, "model": "auth.permission", "pk": 413}, {"fields": {"codename": "change_invoicetransaction", "name": "Can change invoice transaction", "content_type": 138}, "model": "auth.permission", "pk": 414}, {"fields": {"codename": "delete_invoicetransaction", "name": "Can delete invoice transaction", "content_type": 138}, "model": "auth.permission", "pk": 415}, {"fields": {"codename": "add_invoiceitem", "name": "Can add invoice item", "content_type": 139}, "model": "auth.permission", "pk": 416}, {"fields": {"codename": "change_invoiceitem", "name": "Can change invoice item", "content_type": 139}, "model": "auth.permission", "pk": 417}, {"fields": {"codename": "delete_invoiceitem", "name": "Can delete invoice item", "content_type": 139}, "model": "auth.permission", "pk": 418}, {"fields": {"codename": "add_courseregistrationcodeinvoiceitem", "name": "Can add course registration code invoice item", "content_type": 140}, "model": "auth.permission", "pk": 419}, {"fields": {"codename": "change_courseregistrationcodeinvoiceitem", "name": "Can change course registration code invoice item", "content_type": 140}, "model": "auth.permission", "pk": 420}, {"fields": {"codename": "delete_courseregistrationcodeinvoiceitem", "name": "Can delete course registration code invoice item", "content_type": 140}, "model": "auth.permission", "pk": 421}, {"fields": {"codename": "add_invoicehistory", "name": "Can add invoice history", "content_type": 141}, "model": "auth.permission", "pk": 422}, {"fields": {"codename": "change_invoicehistory", "name": "Can change invoice history", "content_type": 141}, "model": "auth.permission", "pk": 423}, {"fields": {"codename": "delete_invoicehistory", "name": "Can delete invoice history", "content_type": 141}, "model": "auth.permission", "pk": 424}, {"fields": {"codename": "add_courseregistrationcode", "name": "Can add course registration code", "content_type": 142}, "model": "auth.permission", "pk": 425}, {"fields": {"codename": "change_courseregistrationcode", "name": "Can change course registration code", "content_type": 142}, "model": "auth.permission", "pk": 426}, {"fields": {"codename": "delete_courseregistrationcode", "name": "Can delete course registration code", "content_type": 142}, "model": "auth.permission", "pk": 427}, {"fields": {"codename": "add_registrationcoderedemption", "name": "Can add registration code redemption", "content_type": 143}, "model": "auth.permission", "pk": 428}, {"fields": {"codename": "change_registrationcoderedemption", "name": "Can change registration code redemption", "content_type": 143}, "model": "auth.permission", "pk": 429}, {"fields": {"codename": "delete_registrationcoderedemption", "name": "Can delete registration code redemption", "content_type": 143}, "model": "auth.permission", "pk": 430}, {"fields": {"codename": "add_coupon", "name": "Can add coupon", "content_type": 144}, "model": "auth.permission", "pk": 431}, {"fields": {"codename": "change_coupon", "name": "Can change coupon", "content_type": 144}, "model": "auth.permission", "pk": 432}, {"fields": {"codename": "delete_coupon", "name": "Can delete coupon", "content_type": 144}, "model": "auth.permission", "pk": 433}, {"fields": {"codename": "add_couponredemption", "name": "Can add coupon redemption", "content_type": 145}, "model": "auth.permission", "pk": 434}, {"fields": {"codename": "change_couponredemption", "name": "Can change coupon redemption", "content_type": 145}, "model": "auth.permission", "pk": 435}, {"fields": {"codename": "delete_couponredemption", "name": "Can delete coupon redemption", "content_type": 145}, "model": "auth.permission", "pk": 436}, {"fields": {"codename": "add_paidcourseregistration", "name": "Can add paid course registration", "content_type": 146}, "model": "auth.permission", "pk": 437}, {"fields": {"codename": "change_paidcourseregistration", "name": "Can change paid course registration", "content_type": 146}, "model": "auth.permission", "pk": 438}, {"fields": {"codename": "delete_paidcourseregistration", "name": "Can delete paid course registration", "content_type": 146}, "model": "auth.permission", "pk": 439}, {"fields": {"codename": "add_courseregcodeitem", "name": "Can add course reg code item", "content_type": 147}, "model": "auth.permission", "pk": 440}, {"fields": {"codename": "change_courseregcodeitem", "name": "Can change course reg code item", "content_type": 147}, "model": "auth.permission", "pk": 441}, {"fields": {"codename": "delete_courseregcodeitem", "name": "Can delete course reg code item", "content_type": 147}, "model": "auth.permission", "pk": 442}, {"fields": {"codename": "add_courseregcodeitemannotation", "name": "Can add course reg code item annotation", "content_type": 148}, "model": "auth.permission", "pk": 443}, {"fields": {"codename": "change_courseregcodeitemannotation", "name": "Can change course reg code item annotation", "content_type": 148}, "model": "auth.permission", "pk": 444}, {"fields": {"codename": "delete_courseregcodeitemannotation", "name": "Can delete course reg code item annotation", "content_type": 148}, "model": "auth.permission", "pk": 445}, {"fields": {"codename": "add_paidcourseregistrationannotation", "name": "Can add paid course registration annotation", "content_type": 149}, "model": "auth.permission", "pk": 446}, {"fields": {"codename": "change_paidcourseregistrationannotation", "name": "Can change paid course registration annotation", "content_type": 149}, "model": "auth.permission", "pk": 447}, {"fields": {"codename": "delete_paidcourseregistrationannotation", "name": "Can delete paid course registration annotation", "content_type": 149}, "model": "auth.permission", "pk": 448}, {"fields": {"codename": "add_certificateitem", "name": "Can add certificate item", "content_type": 150}, "model": "auth.permission", "pk": 449}, {"fields": {"codename": "change_certificateitem", "name": "Can change certificate item", "content_type": 150}, "model": "auth.permission", "pk": 450}, {"fields": {"codename": "delete_certificateitem", "name": "Can delete certificate item", "content_type": 150}, "model": "auth.permission", "pk": 451}, {"fields": {"codename": "add_donationconfiguration", "name": "Can add donation configuration", "content_type": 151}, "model": "auth.permission", "pk": 452}, {"fields": {"codename": "change_donationconfiguration", "name": "Can change donation configuration", "content_type": 151}, "model": "auth.permission", "pk": 453}, {"fields": {"codename": "delete_donationconfiguration", "name": "Can delete donation configuration", "content_type": 151}, "model": "auth.permission", "pk": 454}, {"fields": {"codename": "add_donation", "name": "Can add donation", "content_type": 152}, "model": "auth.permission", "pk": 455}, {"fields": {"codename": "change_donation", "name": "Can change donation", "content_type": 152}, "model": "auth.permission", "pk": 456}, {"fields": {"codename": "delete_donation", "name": "Can delete donation", "content_type": 152}, "model": "auth.permission", "pk": 457}, {"fields": {"codename": "add_coursemode", "name": "Can add course mode", "content_type": 153}, "model": "auth.permission", "pk": 458}, {"fields": {"codename": "change_coursemode", "name": "Can change course mode", "content_type": 153}, "model": "auth.permission", "pk": 459}, {"fields": {"codename": "delete_coursemode", "name": "Can delete course mode", "content_type": 153}, "model": "auth.permission", "pk": 460}, {"fields": {"codename": "add_coursemodesarchive", "name": "Can add course modes archive", "content_type": 154}, "model": "auth.permission", "pk": 461}, {"fields": {"codename": "change_coursemodesarchive", "name": "Can change course modes archive", "content_type": 154}, "model": "auth.permission", "pk": 462}, {"fields": {"codename": "delete_coursemodesarchive", "name": "Can delete course modes archive", "content_type": 154}, "model": "auth.permission", "pk": 463}, {"fields": {"codename": "add_coursemodeexpirationconfig", "name": "Can add course mode expiration config", "content_type": 155}, "model": "auth.permission", "pk": 464}, {"fields": {"codename": "change_coursemodeexpirationconfig", "name": "Can change course mode expiration config", "content_type": 155}, "model": "auth.permission", "pk": 465}, {"fields": {"codename": "delete_coursemodeexpirationconfig", "name": "Can delete course mode expiration config", "content_type": 155}, "model": "auth.permission", "pk": 466}, {"fields": {"codename": "add_softwaresecurephotoverification", "name": "Can add software secure photo verification", "content_type": 156}, "model": "auth.permission", "pk": 467}, {"fields": {"codename": "change_softwaresecurephotoverification", "name": "Can change software secure photo verification", "content_type": 156}, "model": "auth.permission", "pk": 468}, {"fields": {"codename": "delete_softwaresecurephotoverification", "name": "Can delete software secure photo verification", "content_type": 156}, "model": "auth.permission", "pk": 469}, {"fields": {"codename": "add_historicalverificationdeadline", "name": "Can add historical verification deadline", "content_type": 157}, "model": "auth.permission", "pk": 470}, {"fields": {"codename": "change_historicalverificationdeadline", "name": "Can change historical verification deadline", "content_type": 157}, "model": "auth.permission", "pk": 471}, {"fields": {"codename": "delete_historicalverificationdeadline", "name": "Can delete historical verification deadline", "content_type": 157}, "model": "auth.permission", "pk": 472}, {"fields": {"codename": "add_verificationdeadline", "name": "Can add verification deadline", "content_type": 158}, "model": "auth.permission", "pk": 473}, {"fields": {"codename": "change_verificationdeadline", "name": "Can change verification deadline", "content_type": 158}, "model": "auth.permission", "pk": 474}, {"fields": {"codename": "delete_verificationdeadline", "name": "Can delete verification deadline", "content_type": 158}, "model": "auth.permission", "pk": 475}, {"fields": {"codename": "add_verificationcheckpoint", "name": "Can add verification checkpoint", "content_type": 159}, "model": "auth.permission", "pk": 476}, {"fields": {"codename": "change_verificationcheckpoint", "name": "Can change verification checkpoint", "content_type": 159}, "model": "auth.permission", "pk": 477}, {"fields": {"codename": "delete_verificationcheckpoint", "name": "Can delete verification checkpoint", "content_type": 159}, "model": "auth.permission", "pk": 478}, {"fields": {"codename": "add_verificationstatus", "name": "Can add Verification Status", "content_type": 160}, "model": "auth.permission", "pk": 479}, {"fields": {"codename": "change_verificationstatus", "name": "Can change Verification Status", "content_type": 160}, "model": "auth.permission", "pk": 480}, {"fields": {"codename": "delete_verificationstatus", "name": "Can delete Verification Status", "content_type": 160}, "model": "auth.permission", "pk": 481}, {"fields": {"codename": "add_incoursereverificationconfiguration", "name": "Can add in course reverification configuration", "content_type": 161}, "model": "auth.permission", "pk": 482}, {"fields": {"codename": "change_incoursereverificationconfiguration", "name": "Can change in course reverification configuration", "content_type": 161}, "model": "auth.permission", "pk": 483}, {"fields": {"codename": "delete_incoursereverificationconfiguration", "name": "Can delete in course reverification configuration", "content_type": 161}, "model": "auth.permission", "pk": 484}, {"fields": {"codename": "add_icrvstatusemailsconfiguration", "name": "Can add icrv status emails configuration", "content_type": 162}, "model": "auth.permission", "pk": 485}, {"fields": {"codename": "change_icrvstatusemailsconfiguration", "name": "Can change icrv status emails configuration", "content_type": 162}, "model": "auth.permission", "pk": 486}, {"fields": {"codename": "delete_icrvstatusemailsconfiguration", "name": "Can delete icrv status emails configuration", "content_type": 162}, "model": "auth.permission", "pk": 487}, {"fields": {"codename": "add_skippedreverification", "name": "Can add skipped reverification", "content_type": 163}, "model": "auth.permission", "pk": 488}, {"fields": {"codename": "change_skippedreverification", "name": "Can change skipped reverification", "content_type": 163}, "model": "auth.permission", "pk": 489}, {"fields": {"codename": "delete_skippedreverification", "name": "Can delete skipped reverification", "content_type": 163}, "model": "auth.permission", "pk": 490}, {"fields": {"codename": "add_darklangconfig", "name": "Can add dark lang config", "content_type": 164}, "model": "auth.permission", "pk": 491}, {"fields": {"codename": "change_darklangconfig", "name": "Can change dark lang config", "content_type": 164}, "model": "auth.permission", "pk": 492}, {"fields": {"codename": "delete_darklangconfig", "name": "Can delete dark lang config", "content_type": 164}, "model": "auth.permission", "pk": 493}, {"fields": {"codename": "add_microsite", "name": "Can add microsite", "content_type": 165}, "model": "auth.permission", "pk": 494}, {"fields": {"codename": "change_microsite", "name": "Can change microsite", "content_type": 165}, "model": "auth.permission", "pk": 495}, {"fields": {"codename": "delete_microsite", "name": "Can delete microsite", "content_type": 165}, "model": "auth.permission", "pk": 496}, {"fields": {"codename": "add_micrositehistory", "name": "Can add microsite history", "content_type": 166}, "model": "auth.permission", "pk": 497}, {"fields": {"codename": "change_micrositehistory", "name": "Can change microsite history", "content_type": 166}, "model": "auth.permission", "pk": 498}, {"fields": {"codename": "delete_micrositehistory", "name": "Can delete microsite history", "content_type": 166}, "model": "auth.permission", "pk": 499}, {"fields": {"codename": "add_historicalmicrositeorganizationmapping", "name": "Can add historical microsite organization mapping", "content_type": 167}, "model": "auth.permission", "pk": 500}, {"fields": {"codename": "change_historicalmicrositeorganizationmapping", "name": "Can change historical microsite organization mapping", "content_type": 167}, "model": "auth.permission", "pk": 501}, {"fields": {"codename": "delete_historicalmicrositeorganizationmapping", "name": "Can delete historical microsite organization mapping", "content_type": 167}, "model": "auth.permission", "pk": 502}, {"fields": {"codename": "add_micrositeorganizationmapping", "name": "Can add microsite organization mapping", "content_type": 168}, "model": "auth.permission", "pk": 503}, {"fields": {"codename": "change_micrositeorganizationmapping", "name": "Can change microsite organization mapping", "content_type": 168}, "model": "auth.permission", "pk": 504}, {"fields": {"codename": "delete_micrositeorganizationmapping", "name": "Can delete microsite organization mapping", "content_type": 168}, "model": "auth.permission", "pk": 505}, {"fields": {"codename": "add_historicalmicrositetemplate", "name": "Can add historical microsite template", "content_type": 169}, "model": "auth.permission", "pk": 506}, {"fields": {"codename": "change_historicalmicrositetemplate", "name": "Can change historical microsite template", "content_type": 169}, "model": "auth.permission", "pk": 507}, {"fields": {"codename": "delete_historicalmicrositetemplate", "name": "Can delete historical microsite template", "content_type": 169}, "model": "auth.permission", "pk": 508}, {"fields": {"codename": "add_micrositetemplate", "name": "Can add microsite template", "content_type": 170}, "model": "auth.permission", "pk": 509}, {"fields": {"codename": "change_micrositetemplate", "name": "Can change microsite template", "content_type": 170}, "model": "auth.permission", "pk": 510}, {"fields": {"codename": "delete_micrositetemplate", "name": "Can delete microsite template", "content_type": 170}, "model": "auth.permission", "pk": 511}, {"fields": {"codename": "add_whitelistedrssurl", "name": "Can add whitelisted rss url", "content_type": 171}, "model": "auth.permission", "pk": 512}, {"fields": {"codename": "change_whitelistedrssurl", "name": "Can change whitelisted rss url", "content_type": 171}, "model": "auth.permission", "pk": 513}, {"fields": {"codename": "delete_whitelistedrssurl", "name": "Can delete whitelisted rss url", "content_type": 171}, "model": "auth.permission", "pk": 514}, {"fields": {"codename": "add_embargoedcourse", "name": "Can add embargoed course", "content_type": 172}, "model": "auth.permission", "pk": 515}, {"fields": {"codename": "change_embargoedcourse", "name": "Can change embargoed course", "content_type": 172}, "model": "auth.permission", "pk": 516}, {"fields": {"codename": "delete_embargoedcourse", "name": "Can delete embargoed course", "content_type": 172}, "model": "auth.permission", "pk": 517}, {"fields": {"codename": "add_embargoedstate", "name": "Can add embargoed state", "content_type": 173}, "model": "auth.permission", "pk": 518}, {"fields": {"codename": "change_embargoedstate", "name": "Can change embargoed state", "content_type": 173}, "model": "auth.permission", "pk": 519}, {"fields": {"codename": "delete_embargoedstate", "name": "Can delete embargoed state", "content_type": 173}, "model": "auth.permission", "pk": 520}, {"fields": {"codename": "add_restrictedcourse", "name": "Can add restricted course", "content_type": 174}, "model": "auth.permission", "pk": 521}, {"fields": {"codename": "change_restrictedcourse", "name": "Can change restricted course", "content_type": 174}, "model": "auth.permission", "pk": 522}, {"fields": {"codename": "delete_restrictedcourse", "name": "Can delete restricted course", "content_type": 174}, "model": "auth.permission", "pk": 523}, {"fields": {"codename": "add_country", "name": "Can add country", "content_type": 175}, "model": "auth.permission", "pk": 524}, {"fields": {"codename": "change_country", "name": "Can change country", "content_type": 175}, "model": "auth.permission", "pk": 525}, {"fields": {"codename": "delete_country", "name": "Can delete country", "content_type": 175}, "model": "auth.permission", "pk": 526}, {"fields": {"codename": "add_countryaccessrule", "name": "Can add country access rule", "content_type": 176}, "model": "auth.permission", "pk": 527}, {"fields": {"codename": "change_countryaccessrule", "name": "Can change country access rule", "content_type": 176}, "model": "auth.permission", "pk": 528}, {"fields": {"codename": "delete_countryaccessrule", "name": "Can delete country access rule", "content_type": 176}, "model": "auth.permission", "pk": 529}, {"fields": {"codename": "add_courseaccessrulehistory", "name": "Can add course access rule history", "content_type": 177}, "model": "auth.permission", "pk": 530}, {"fields": {"codename": "change_courseaccessrulehistory", "name": "Can change course access rule history", "content_type": 177}, "model": "auth.permission", "pk": 531}, {"fields": {"codename": "delete_courseaccessrulehistory", "name": "Can delete course access rule history", "content_type": 177}, "model": "auth.permission", "pk": 532}, {"fields": {"codename": "add_ipfilter", "name": "Can add ip filter", "content_type": 178}, "model": "auth.permission", "pk": 533}, {"fields": {"codename": "change_ipfilter", "name": "Can change ip filter", "content_type": 178}, "model": "auth.permission", "pk": 534}, {"fields": {"codename": "delete_ipfilter", "name": "Can delete ip filter", "content_type": 178}, "model": "auth.permission", "pk": 535}, {"fields": {"codename": "add_coursererunstate", "name": "Can add course rerun state", "content_type": 179}, "model": "auth.permission", "pk": 536}, {"fields": {"codename": "change_coursererunstate", "name": "Can change course rerun state", "content_type": 179}, "model": "auth.permission", "pk": 537}, {"fields": {"codename": "delete_coursererunstate", "name": "Can delete course rerun state", "content_type": 179}, "model": "auth.permission", "pk": 538}, {"fields": {"codename": "add_mobileapiconfig", "name": "Can add mobile api config", "content_type": 180}, "model": "auth.permission", "pk": 539}, {"fields": {"codename": "change_mobileapiconfig", "name": "Can change mobile api config", "content_type": 180}, "model": "auth.permission", "pk": 540}, {"fields": {"codename": "delete_mobileapiconfig", "name": "Can delete mobile api config", "content_type": 180}, "model": "auth.permission", "pk": 541}, {"fields": {"codename": "add_appversionconfig", "name": "Can add app version config", "content_type": 181}, "model": "auth.permission", "pk": 542}, {"fields": {"codename": "change_appversionconfig", "name": "Can change app version config", "content_type": 181}, "model": "auth.permission", "pk": 543}, {"fields": {"codename": "delete_appversionconfig", "name": "Can delete app version config", "content_type": 181}, "model": "auth.permission", "pk": 544}, {"fields": {"codename": "add_usersocialauth", "name": "Can add user social auth", "content_type": 182}, "model": "auth.permission", "pk": 545}, {"fields": {"codename": "change_usersocialauth", "name": "Can change user social auth", "content_type": 182}, "model": "auth.permission", "pk": 546}, {"fields": {"codename": "delete_usersocialauth", "name": "Can delete user social auth", "content_type": 182}, "model": "auth.permission", "pk": 547}, {"fields": {"codename": "add_nonce", "name": "Can add nonce", "content_type": 183}, "model": "auth.permission", "pk": 548}, {"fields": {"codename": "change_nonce", "name": "Can change nonce", "content_type": 183}, "model": "auth.permission", "pk": 549}, {"fields": {"codename": "delete_nonce", "name": "Can delete nonce", "content_type": 183}, "model": "auth.permission", "pk": 550}, {"fields": {"codename": "add_association", "name": "Can add association", "content_type": 184}, "model": "auth.permission", "pk": 551}, {"fields": {"codename": "change_association", "name": "Can change association", "content_type": 184}, "model": "auth.permission", "pk": 552}, {"fields": {"codename": "delete_association", "name": "Can delete association", "content_type": 184}, "model": "auth.permission", "pk": 553}, {"fields": {"codename": "add_code", "name": "Can add code", "content_type": 185}, "model": "auth.permission", "pk": 554}, {"fields": {"codename": "change_code", "name": "Can change code", "content_type": 185}, "model": "auth.permission", "pk": 555}, {"fields": {"codename": "delete_code", "name": "Can delete code", "content_type": 185}, "model": "auth.permission", "pk": 556}, {"fields": {"codename": "add_surveyform", "name": "Can add survey form", "content_type": 186}, "model": "auth.permission", "pk": 557}, {"fields": {"codename": "change_surveyform", "name": "Can change survey form", "content_type": 186}, "model": "auth.permission", "pk": 558}, {"fields": {"codename": "delete_surveyform", "name": "Can delete survey form", "content_type": 186}, "model": "auth.permission", "pk": 559}, {"fields": {"codename": "add_surveyanswer", "name": "Can add survey answer", "content_type": 187}, "model": "auth.permission", "pk": 560}, {"fields": {"codename": "change_surveyanswer", "name": "Can change survey answer", "content_type": 187}, "model": "auth.permission", "pk": 561}, {"fields": {"codename": "delete_surveyanswer", "name": "Can delete survey answer", "content_type": 187}, "model": "auth.permission", "pk": 562}, {"fields": {"codename": "add_xblockasidesconfig", "name": "Can add x block asides config", "content_type": 188}, "model": "auth.permission", "pk": 563}, {"fields": {"codename": "change_xblockasidesconfig", "name": "Can change x block asides config", "content_type": 188}, "model": "auth.permission", "pk": 564}, {"fields": {"codename": "delete_xblockasidesconfig", "name": "Can delete x block asides config", "content_type": 188}, "model": "auth.permission", "pk": 565}, {"fields": {"codename": "add_courseoverview", "name": "Can add course overview", "content_type": 189}, "model": "auth.permission", "pk": 566}, {"fields": {"codename": "change_courseoverview", "name": "Can change course overview", "content_type": 189}, "model": "auth.permission", "pk": 567}, {"fields": {"codename": "delete_courseoverview", "name": "Can delete course overview", "content_type": 189}, "model": "auth.permission", "pk": 568}, {"fields": {"codename": "add_courseoverviewtab", "name": "Can add course overview tab", "content_type": 190}, "model": "auth.permission", "pk": 569}, {"fields": {"codename": "change_courseoverviewtab", "name": "Can change course overview tab", "content_type": 190}, "model": "auth.permission", "pk": 570}, {"fields": {"codename": "delete_courseoverviewtab", "name": "Can delete course overview tab", "content_type": 190}, "model": "auth.permission", "pk": 571}, {"fields": {"codename": "add_courseoverviewimageset", "name": "Can add course overview image set", "content_type": 191}, "model": "auth.permission", "pk": 572}, {"fields": {"codename": "change_courseoverviewimageset", "name": "Can change course overview image set", "content_type": 191}, "model": "auth.permission", "pk": 573}, {"fields": {"codename": "delete_courseoverviewimageset", "name": "Can delete course overview image set", "content_type": 191}, "model": "auth.permission", "pk": 574}, {"fields": {"codename": "add_courseoverviewimageconfig", "name": "Can add course overview image config", "content_type": 192}, "model": "auth.permission", "pk": 575}, {"fields": {"codename": "change_courseoverviewimageconfig", "name": "Can change course overview image config", "content_type": 192}, "model": "auth.permission", "pk": 576}, {"fields": {"codename": "delete_courseoverviewimageconfig", "name": "Can delete course overview image config", "content_type": 192}, "model": "auth.permission", "pk": 577}, {"fields": {"codename": "add_coursestructure", "name": "Can add course structure", "content_type": 193}, "model": "auth.permission", "pk": 578}, {"fields": {"codename": "change_coursestructure", "name": "Can change course structure", "content_type": 193}, "model": "auth.permission", "pk": 579}, {"fields": {"codename": "delete_coursestructure", "name": "Can delete course structure", "content_type": 193}, "model": "auth.permission", "pk": 580}, {"fields": {"codename": "add_corsmodel", "name": "Can add cors model", "content_type": 194}, "model": "auth.permission", "pk": 581}, {"fields": {"codename": "change_corsmodel", "name": "Can change cors model", "content_type": 194}, "model": "auth.permission", "pk": 582}, {"fields": {"codename": "delete_corsmodel", "name": "Can delete cors model", "content_type": 194}, "model": "auth.permission", "pk": 583}, {"fields": {"codename": "add_xdomainproxyconfiguration", "name": "Can add x domain proxy configuration", "content_type": 195}, "model": "auth.permission", "pk": 584}, {"fields": {"codename": "change_xdomainproxyconfiguration", "name": "Can change x domain proxy configuration", "content_type": 195}, "model": "auth.permission", "pk": 585}, {"fields": {"codename": "delete_xdomainproxyconfiguration", "name": "Can delete x domain proxy configuration", "content_type": 195}, "model": "auth.permission", "pk": 586}, {"fields": {"codename": "add_commerceconfiguration", "name": "Can add commerce configuration", "content_type": 196}, "model": "auth.permission", "pk": 587}, {"fields": {"codename": "change_commerceconfiguration", "name": "Can change commerce configuration", "content_type": 196}, "model": "auth.permission", "pk": 588}, {"fields": {"codename": "delete_commerceconfiguration", "name": "Can delete commerce configuration", "content_type": 196}, "model": "auth.permission", "pk": 589}, {"fields": {"codename": "add_creditprovider", "name": "Can add credit provider", "content_type": 197}, "model": "auth.permission", "pk": 590}, {"fields": {"codename": "change_creditprovider", "name": "Can change credit provider", "content_type": 197}, "model": "auth.permission", "pk": 591}, {"fields": {"codename": "delete_creditprovider", "name": "Can delete credit provider", "content_type": 197}, "model": "auth.permission", "pk": 592}, {"fields": {"codename": "add_creditcourse", "name": "Can add credit course", "content_type": 198}, "model": "auth.permission", "pk": 593}, {"fields": {"codename": "change_creditcourse", "name": "Can change credit course", "content_type": 198}, "model": "auth.permission", "pk": 594}, {"fields": {"codename": "delete_creditcourse", "name": "Can delete credit course", "content_type": 198}, "model": "auth.permission", "pk": 595}, {"fields": {"codename": "add_creditrequirement", "name": "Can add credit requirement", "content_type": 199}, "model": "auth.permission", "pk": 596}, {"fields": {"codename": "change_creditrequirement", "name": "Can change credit requirement", "content_type": 199}, "model": "auth.permission", "pk": 597}, {"fields": {"codename": "delete_creditrequirement", "name": "Can delete credit requirement", "content_type": 199}, "model": "auth.permission", "pk": 598}, {"fields": {"codename": "add_historicalcreditrequirementstatus", "name": "Can add historical credit requirement status", "content_type": 200}, "model": "auth.permission", "pk": 599}, {"fields": {"codename": "change_historicalcreditrequirementstatus", "name": "Can change historical credit requirement status", "content_type": 200}, "model": "auth.permission", "pk": 600}, {"fields": {"codename": "delete_historicalcreditrequirementstatus", "name": "Can delete historical credit requirement status", "content_type": 200}, "model": "auth.permission", "pk": 601}, {"fields": {"codename": "add_creditrequirementstatus", "name": "Can add credit requirement status", "content_type": 201}, "model": "auth.permission", "pk": 602}, {"fields": {"codename": "change_creditrequirementstatus", "name": "Can change credit requirement status", "content_type": 201}, "model": "auth.permission", "pk": 603}, {"fields": {"codename": "delete_creditrequirementstatus", "name": "Can delete credit requirement status", "content_type": 201}, "model": "auth.permission", "pk": 604}, {"fields": {"codename": "add_crediteligibility", "name": "Can add credit eligibility", "content_type": 202}, "model": "auth.permission", "pk": 605}, {"fields": {"codename": "change_crediteligibility", "name": "Can change credit eligibility", "content_type": 202}, "model": "auth.permission", "pk": 606}, {"fields": {"codename": "delete_crediteligibility", "name": "Can delete credit eligibility", "content_type": 202}, "model": "auth.permission", "pk": 607}, {"fields": {"codename": "add_historicalcreditrequest", "name": "Can add historical credit request", "content_type": 203}, "model": "auth.permission", "pk": 608}, {"fields": {"codename": "change_historicalcreditrequest", "name": "Can change historical credit request", "content_type": 203}, "model": "auth.permission", "pk": 609}, {"fields": {"codename": "delete_historicalcreditrequest", "name": "Can delete historical credit request", "content_type": 203}, "model": "auth.permission", "pk": 610}, {"fields": {"codename": "add_creditrequest", "name": "Can add credit request", "content_type": 204}, "model": "auth.permission", "pk": 611}, {"fields": {"codename": "change_creditrequest", "name": "Can change credit request", "content_type": 204}, "model": "auth.permission", "pk": 612}, {"fields": {"codename": "delete_creditrequest", "name": "Can delete credit request", "content_type": 204}, "model": "auth.permission", "pk": 613}, {"fields": {"codename": "add_creditconfig", "name": "Can add credit config", "content_type": 205}, "model": "auth.permission", "pk": 614}, {"fields": {"codename": "change_creditconfig", "name": "Can change credit config", "content_type": 205}, "model": "auth.permission", "pk": 615}, {"fields": {"codename": "delete_creditconfig", "name": "Can delete credit config", "content_type": 205}, "model": "auth.permission", "pk": 616}, {"fields": {"codename": "add_courseteam", "name": "Can add course team", "content_type": 206}, "model": "auth.permission", "pk": 617}, {"fields": {"codename": "change_courseteam", "name": "Can change course team", "content_type": 206}, "model": "auth.permission", "pk": 618}, {"fields": {"codename": "delete_courseteam", "name": "Can delete course team", "content_type": 206}, "model": "auth.permission", "pk": 619}, {"fields": {"codename": "add_courseteammembership", "name": "Can add course team membership", "content_type": 207}, "model": "auth.permission", "pk": 620}, {"fields": {"codename": "change_courseteammembership", "name": "Can change course team membership", "content_type": 207}, "model": "auth.permission", "pk": 621}, {"fields": {"codename": "delete_courseteammembership", "name": "Can delete course team membership", "content_type": 207}, "model": "auth.permission", "pk": 622}, {"fields": {"codename": "add_xblockdisableconfig", "name": "Can add x block disable config", "content_type": 208}, "model": "auth.permission", "pk": 623}, {"fields": {"codename": "change_xblockdisableconfig", "name": "Can change x block disable config", "content_type": 208}, "model": "auth.permission", "pk": 624}, {"fields": {"codename": "delete_xblockdisableconfig", "name": "Can delete x block disable config", "content_type": 208}, "model": "auth.permission", "pk": 625}, {"fields": {"codename": "add_xblockconfiguration", "name": "Can add x block configuration", "content_type": 209}, "model": "auth.permission", "pk": 626}, {"fields": {"codename": "change_xblockconfiguration", "name": "Can change x block configuration", "content_type": 209}, "model": "auth.permission", "pk": 627}, {"fields": {"codename": "delete_xblockconfiguration", "name": "Can delete x block configuration", "content_type": 209}, "model": "auth.permission", "pk": 628}, {"fields": {"codename": "add_xblockstudioconfigurationflag", "name": "Can add x block studio configuration flag", "content_type": 210}, "model": "auth.permission", "pk": 629}, {"fields": {"codename": "change_xblockstudioconfigurationflag", "name": "Can change x block studio configuration flag", "content_type": 210}, "model": "auth.permission", "pk": 630}, {"fields": {"codename": "delete_xblockstudioconfigurationflag", "name": "Can delete x block studio configuration flag", "content_type": 210}, "model": "auth.permission", "pk": 631}, {"fields": {"codename": "add_xblockstudioconfiguration", "name": "Can add x block studio configuration", "content_type": 211}, "model": "auth.permission", "pk": 632}, {"fields": {"codename": "change_xblockstudioconfiguration", "name": "Can change x block studio configuration", "content_type": 211}, "model": "auth.permission", "pk": 633}, {"fields": {"codename": "delete_xblockstudioconfiguration", "name": "Can delete x block studio configuration", "content_type": 211}, "model": "auth.permission", "pk": 634}, {"fields": {"codename": "add_bookmark", "name": "Can add bookmark", "content_type": 212}, "model": "auth.permission", "pk": 635}, {"fields": {"codename": "change_bookmark", "name": "Can change bookmark", "content_type": 212}, "model": "auth.permission", "pk": 636}, {"fields": {"codename": "delete_bookmark", "name": "Can delete bookmark", "content_type": 212}, "model": "auth.permission", "pk": 637}, {"fields": {"codename": "add_xblockcache", "name": "Can add x block cache", "content_type": 213}, "model": "auth.permission", "pk": 638}, {"fields": {"codename": "change_xblockcache", "name": "Can change x block cache", "content_type": 213}, "model": "auth.permission", "pk": 639}, {"fields": {"codename": "delete_xblockcache", "name": "Can delete x block cache", "content_type": 213}, "model": "auth.permission", "pk": 640}, {"fields": {"codename": "add_programsapiconfig", "name": "Can add programs api config", "content_type": 214}, "model": "auth.permission", "pk": 641}, {"fields": {"codename": "change_programsapiconfig", "name": "Can change programs api config", "content_type": 214}, "model": "auth.permission", "pk": 642}, {"fields": {"codename": "delete_programsapiconfig", "name": "Can delete programs api config", "content_type": 214}, "model": "auth.permission", "pk": 643}, {"fields": {"codename": "add_selfpacedconfiguration", "name": "Can add self paced configuration", "content_type": 215}, "model": "auth.permission", "pk": 644}, {"fields": {"codename": "change_selfpacedconfiguration", "name": "Can change self paced configuration", "content_type": 215}, "model": "auth.permission", "pk": 645}, {"fields": {"codename": "delete_selfpacedconfiguration", "name": "Can delete self paced configuration", "content_type": 215}, "model": "auth.permission", "pk": 646}, {"fields": {"codename": "add_kvstore", "name": "Can add kv store", "content_type": 216}, "model": "auth.permission", "pk": 647}, {"fields": {"codename": "change_kvstore", "name": "Can change kv store", "content_type": 216}, "model": "auth.permission", "pk": 648}, {"fields": {"codename": "delete_kvstore", "name": "Can delete kv store", "content_type": 216}, "model": "auth.permission", "pk": 649}, {"fields": {"codename": "add_credentialsapiconfig", "name": "Can add credentials api config", "content_type": 217}, "model": "auth.permission", "pk": 650}, {"fields": {"codename": "change_credentialsapiconfig", "name": "Can change credentials api config", "content_type": 217}, "model": "auth.permission", "pk": 651}, {"fields": {"codename": "delete_credentialsapiconfig", "name": "Can delete credentials api config", "content_type": 217}, "model": "auth.permission", "pk": 652}, {"fields": {"codename": "add_milestone", "name": "Can add milestone", "content_type": 218}, "model": "auth.permission", "pk": 653}, {"fields": {"codename": "change_milestone", "name": "Can change milestone", "content_type": 218}, "model": "auth.permission", "pk": 654}, {"fields": {"codename": "delete_milestone", "name": "Can delete milestone", "content_type": 218}, "model": "auth.permission", "pk": 655}, {"fields": {"codename": "add_milestonerelationshiptype", "name": "Can add milestone relationship type", "content_type": 219}, "model": "auth.permission", "pk": 656}, {"fields": {"codename": "change_milestonerelationshiptype", "name": "Can change milestone relationship type", "content_type": 219}, "model": "auth.permission", "pk": 657}, {"fields": {"codename": "delete_milestonerelationshiptype", "name": "Can delete milestone relationship type", "content_type": 219}, "model": "auth.permission", "pk": 658}, {"fields": {"codename": "add_coursemilestone", "name": "Can add course milestone", "content_type": 220}, "model": "auth.permission", "pk": 659}, {"fields": {"codename": "change_coursemilestone", "name": "Can change course milestone", "content_type": 220}, "model": "auth.permission", "pk": 660}, {"fields": {"codename": "delete_coursemilestone", "name": "Can delete course milestone", "content_type": 220}, "model": "auth.permission", "pk": 661}, {"fields": {"codename": "add_coursecontentmilestone", "name": "Can add course content milestone", "content_type": 221}, "model": "auth.permission", "pk": 662}, {"fields": {"codename": "change_coursecontentmilestone", "name": "Can change course content milestone", "content_type": 221}, "model": "auth.permission", "pk": 663}, {"fields": {"codename": "delete_coursecontentmilestone", "name": "Can delete course content milestone", "content_type": 221}, "model": "auth.permission", "pk": 664}, {"fields": {"codename": "add_usermilestone", "name": "Can add user milestone", "content_type": 222}, "model": "auth.permission", "pk": 665}, {"fields": {"codename": "change_usermilestone", "name": "Can change user milestone", "content_type": 222}, "model": "auth.permission", "pk": 666}, {"fields": {"codename": "delete_usermilestone", "name": "Can delete user milestone", "content_type": 222}, "model": "auth.permission", "pk": 667}, {"fields": {"codename": "add_coursetalkwidgetconfiguration", "name": "Can add course talk widget configuration", "content_type": 223}, "model": "auth.permission", "pk": 668}, {"fields": {"codename": "change_coursetalkwidgetconfiguration", "name": "Can change course talk widget configuration", "content_type": 223}, "model": "auth.permission", "pk": 669}, {"fields": {"codename": "delete_coursetalkwidgetconfiguration", "name": "Can delete course talk widget configuration", "content_type": 223}, "model": "auth.permission", "pk": 670}, {"fields": {"codename": "add_historicalapiaccessrequest", "name": "Can add historical api access request", "content_type": 224}, "model": "auth.permission", "pk": 671}, {"fields": {"codename": "change_historicalapiaccessrequest", "name": "Can change historical api access request", "content_type": 224}, "model": "auth.permission", "pk": 672}, {"fields": {"codename": "delete_historicalapiaccessrequest", "name": "Can delete historical api access request", "content_type": 224}, "model": "auth.permission", "pk": 673}, {"fields": {"codename": "add_apiaccessrequest", "name": "Can add api access request", "content_type": 1}, "model": "auth.permission", "pk": 674}, {"fields": {"codename": "change_apiaccessrequest", "name": "Can change api access request", "content_type": 1}, "model": "auth.permission", "pk": 675}, {"fields": {"codename": "delete_apiaccessrequest", "name": "Can delete api access request", "content_type": 1}, "model": "auth.permission", "pk": 676}, {"fields": {"codename": "add_apiaccessconfig", "name": "Can add api access config", "content_type": 225}, "model": "auth.permission", "pk": 677}, {"fields": {"codename": "change_apiaccessconfig", "name": "Can change api access config", "content_type": 225}, "model": "auth.permission", "pk": 678}, {"fields": {"codename": "delete_apiaccessconfig", "name": "Can delete api access config", "content_type": 225}, "model": "auth.permission", "pk": 679}, {"fields": {"codename": "add_catalog", "name": "Can add catalog", "content_type": 226}, "model": "auth.permission", "pk": 680}, {"fields": {"codename": "change_catalog", "name": "Can change catalog", "content_type": 226}, "model": "auth.permission", "pk": 681}, {"fields": {"codename": "delete_catalog", "name": "Can delete catalog", "content_type": 226}, "model": "auth.permission", "pk": 682}, {"fields": {"codename": "add_verifiedtrackcohortedcourse", "name": "Can add verified track cohorted course", "content_type": 227}, "model": "auth.permission", "pk": 683}, {"fields": {"codename": "change_verifiedtrackcohortedcourse", "name": "Can change verified track cohorted course", "content_type": 227}, "model": "auth.permission", "pk": 684}, {"fields": {"codename": "delete_verifiedtrackcohortedcourse", "name": "Can delete verified track cohorted course", "content_type": 227}, "model": "auth.permission", "pk": 685}, {"fields": {"codename": "add_badgeclass", "name": "Can add badge class", "content_type": 228}, "model": "auth.permission", "pk": 686}, {"fields": {"codename": "change_badgeclass", "name": "Can change badge class", "content_type": 228}, "model": "auth.permission", "pk": 687}, {"fields": {"codename": "delete_badgeclass", "name": "Can delete badge class", "content_type": 228}, "model": "auth.permission", "pk": 688}, {"fields": {"codename": "add_badgeassertion", "name": "Can add badge assertion", "content_type": 229}, "model": "auth.permission", "pk": 689}, {"fields": {"codename": "change_badgeassertion", "name": "Can change badge assertion", "content_type": 229}, "model": "auth.permission", "pk": 690}, {"fields": {"codename": "delete_badgeassertion", "name": "Can delete badge assertion", "content_type": 229}, "model": "auth.permission", "pk": 691}, {"fields": {"codename": "add_coursecompleteimageconfiguration", "name": "Can add course complete image configuration", "content_type": 230}, "model": "auth.permission", "pk": 692}, {"fields": {"codename": "change_coursecompleteimageconfiguration", "name": "Can change course complete image configuration", "content_type": 230}, "model": "auth.permission", "pk": 693}, {"fields": {"codename": "delete_coursecompleteimageconfiguration", "name": "Can delete course complete image configuration", "content_type": 230}, "model": "auth.permission", "pk": 694}, {"fields": {"codename": "add_courseeventbadgesconfiguration", "name": "Can add course event badges configuration", "content_type": 231}, "model": "auth.permission", "pk": 695}, {"fields": {"codename": "change_courseeventbadgesconfiguration", "name": "Can change course event badges configuration", "content_type": 231}, "model": "auth.permission", "pk": 696}, {"fields": {"codename": "delete_courseeventbadgesconfiguration", "name": "Can delete course event badges configuration", "content_type": 231}, "model": "auth.permission", "pk": 697}, {"fields": {"codename": "add_emailmarketingconfiguration", "name": "Can add email marketing configuration", "content_type": 232}, "model": "auth.permission", "pk": 698}, {"fields": {"codename": "change_emailmarketingconfiguration", "name": "Can change email marketing configuration", "content_type": 232}, "model": "auth.permission", "pk": 699}, {"fields": {"codename": "delete_emailmarketingconfiguration", "name": "Can delete email marketing configuration", "content_type": 232}, "model": "auth.permission", "pk": 700}, {"fields": {"codename": "add_studentitem", "name": "Can add student item", "content_type": 233}, "model": "auth.permission", "pk": 701}, {"fields": {"codename": "change_studentitem", "name": "Can change student item", "content_type": 233}, "model": "auth.permission", "pk": 702}, {"fields": {"codename": "delete_studentitem", "name": "Can delete student item", "content_type": 233}, "model": "auth.permission", "pk": 703}, {"fields": {"codename": "add_submission", "name": "Can add submission", "content_type": 234}, "model": "auth.permission", "pk": 704}, {"fields": {"codename": "change_submission", "name": "Can change submission", "content_type": 234}, "model": "auth.permission", "pk": 705}, {"fields": {"codename": "delete_submission", "name": "Can delete submission", "content_type": 234}, "model": "auth.permission", "pk": 706}, {"fields": {"codename": "add_score", "name": "Can add score", "content_type": 235}, "model": "auth.permission", "pk": 707}, {"fields": {"codename": "change_score", "name": "Can change score", "content_type": 235}, "model": "auth.permission", "pk": 708}, {"fields": {"codename": "delete_score", "name": "Can delete score", "content_type": 235}, "model": "auth.permission", "pk": 709}, {"fields": {"codename": "add_scoresummary", "name": "Can add score summary", "content_type": 236}, "model": "auth.permission", "pk": 710}, {"fields": {"codename": "change_scoresummary", "name": "Can change score summary", "content_type": 236}, "model": "auth.permission", "pk": 711}, {"fields": {"codename": "delete_scoresummary", "name": "Can delete score summary", "content_type": 236}, "model": "auth.permission", "pk": 712}, {"fields": {"codename": "add_scoreannotation", "name": "Can add score annotation", "content_type": 237}, "model": "auth.permission", "pk": 713}, {"fields": {"codename": "change_scoreannotation", "name": "Can change score annotation", "content_type": 237}, "model": "auth.permission", "pk": 714}, {"fields": {"codename": "delete_scoreannotation", "name": "Can delete score annotation", "content_type": 237}, "model": "auth.permission", "pk": 715}, {"fields": {"codename": "add_rubric", "name": "Can add rubric", "content_type": 238}, "model": "auth.permission", "pk": 716}, {"fields": {"codename": "change_rubric", "name": "Can change rubric", "content_type": 238}, "model": "auth.permission", "pk": 717}, {"fields": {"codename": "delete_rubric", "name": "Can delete rubric", "content_type": 238}, "model": "auth.permission", "pk": 718}, {"fields": {"codename": "add_criterion", "name": "Can add criterion", "content_type": 239}, "model": "auth.permission", "pk": 719}, {"fields": {"codename": "change_criterion", "name": "Can change criterion", "content_type": 239}, "model": "auth.permission", "pk": 720}, {"fields": {"codename": "delete_criterion", "name": "Can delete criterion", "content_type": 239}, "model": "auth.permission", "pk": 721}, {"fields": {"codename": "add_criterionoption", "name": "Can add criterion option", "content_type": 240}, "model": "auth.permission", "pk": 722}, {"fields": {"codename": "change_criterionoption", "name": "Can change criterion option", "content_type": 240}, "model": "auth.permission", "pk": 723}, {"fields": {"codename": "delete_criterionoption", "name": "Can delete criterion option", "content_type": 240}, "model": "auth.permission", "pk": 724}, {"fields": {"codename": "add_assessment", "name": "Can add assessment", "content_type": 241}, "model": "auth.permission", "pk": 725}, {"fields": {"codename": "change_assessment", "name": "Can change assessment", "content_type": 241}, "model": "auth.permission", "pk": 726}, {"fields": {"codename": "delete_assessment", "name": "Can delete assessment", "content_type": 241}, "model": "auth.permission", "pk": 727}, {"fields": {"codename": "add_assessmentpart", "name": "Can add assessment part", "content_type": 242}, "model": "auth.permission", "pk": 728}, {"fields": {"codename": "change_assessmentpart", "name": "Can change assessment part", "content_type": 242}, "model": "auth.permission", "pk": 729}, {"fields": {"codename": "delete_assessmentpart", "name": "Can delete assessment part", "content_type": 242}, "model": "auth.permission", "pk": 730}, {"fields": {"codename": "add_assessmentfeedbackoption", "name": "Can add assessment feedback option", "content_type": 243}, "model": "auth.permission", "pk": 731}, {"fields": {"codename": "change_assessmentfeedbackoption", "name": "Can change assessment feedback option", "content_type": 243}, "model": "auth.permission", "pk": 732}, {"fields": {"codename": "delete_assessmentfeedbackoption", "name": "Can delete assessment feedback option", "content_type": 243}, "model": "auth.permission", "pk": 733}, {"fields": {"codename": "add_assessmentfeedback", "name": "Can add assessment feedback", "content_type": 244}, "model": "auth.permission", "pk": 734}, {"fields": {"codename": "change_assessmentfeedback", "name": "Can change assessment feedback", "content_type": 244}, "model": "auth.permission", "pk": 735}, {"fields": {"codename": "delete_assessmentfeedback", "name": "Can delete assessment feedback", "content_type": 244}, "model": "auth.permission", "pk": 736}, {"fields": {"codename": "add_peerworkflow", "name": "Can add peer workflow", "content_type": 245}, "model": "auth.permission", "pk": 737}, {"fields": {"codename": "change_peerworkflow", "name": "Can change peer workflow", "content_type": 245}, "model": "auth.permission", "pk": 738}, {"fields": {"codename": "delete_peerworkflow", "name": "Can delete peer workflow", "content_type": 245}, "model": "auth.permission", "pk": 739}, {"fields": {"codename": "add_peerworkflowitem", "name": "Can add peer workflow item", "content_type": 246}, "model": "auth.permission", "pk": 740}, {"fields": {"codename": "change_peerworkflowitem", "name": "Can change peer workflow item", "content_type": 246}, "model": "auth.permission", "pk": 741}, {"fields": {"codename": "delete_peerworkflowitem", "name": "Can delete peer workflow item", "content_type": 246}, "model": "auth.permission", "pk": 742}, {"fields": {"codename": "add_trainingexample", "name": "Can add training example", "content_type": 247}, "model": "auth.permission", "pk": 743}, {"fields": {"codename": "change_trainingexample", "name": "Can change training example", "content_type": 247}, "model": "auth.permission", "pk": 744}, {"fields": {"codename": "delete_trainingexample", "name": "Can delete training example", "content_type": 247}, "model": "auth.permission", "pk": 745}, {"fields": {"codename": "add_studenttrainingworkflow", "name": "Can add student training workflow", "content_type": 248}, "model": "auth.permission", "pk": 746}, {"fields": {"codename": "change_studenttrainingworkflow", "name": "Can change student training workflow", "content_type": 248}, "model": "auth.permission", "pk": 747}, {"fields": {"codename": "delete_studenttrainingworkflow", "name": "Can delete student training workflow", "content_type": 248}, "model": "auth.permission", "pk": 748}, {"fields": {"codename": "add_studenttrainingworkflowitem", "name": "Can add student training workflow item", "content_type": 249}, "model": "auth.permission", "pk": 749}, {"fields": {"codename": "change_studenttrainingworkflowitem", "name": "Can change student training workflow item", "content_type": 249}, "model": "auth.permission", "pk": 750}, {"fields": {"codename": "delete_studenttrainingworkflowitem", "name": "Can delete student training workflow item", "content_type": 249}, "model": "auth.permission", "pk": 751}, {"fields": {"codename": "add_aiclassifierset", "name": "Can add ai classifier set", "content_type": 250}, "model": "auth.permission", "pk": 752}, {"fields": {"codename": "change_aiclassifierset", "name": "Can change ai classifier set", "content_type": 250}, "model": "auth.permission", "pk": 753}, {"fields": {"codename": "delete_aiclassifierset", "name": "Can delete ai classifier set", "content_type": 250}, "model": "auth.permission", "pk": 754}, {"fields": {"codename": "add_aiclassifier", "name": "Can add ai classifier", "content_type": 251}, "model": "auth.permission", "pk": 755}, {"fields": {"codename": "change_aiclassifier", "name": "Can change ai classifier", "content_type": 251}, "model": "auth.permission", "pk": 756}, {"fields": {"codename": "delete_aiclassifier", "name": "Can delete ai classifier", "content_type": 251}, "model": "auth.permission", "pk": 757}, {"fields": {"codename": "add_aitrainingworkflow", "name": "Can add ai training workflow", "content_type": 252}, "model": "auth.permission", "pk": 758}, {"fields": {"codename": "change_aitrainingworkflow", "name": "Can change ai training workflow", "content_type": 252}, "model": "auth.permission", "pk": 759}, {"fields": {"codename": "delete_aitrainingworkflow", "name": "Can delete ai training workflow", "content_type": 252}, "model": "auth.permission", "pk": 760}, {"fields": {"codename": "add_aigradingworkflow", "name": "Can add ai grading workflow", "content_type": 253}, "model": "auth.permission", "pk": 761}, {"fields": {"codename": "change_aigradingworkflow", "name": "Can change ai grading workflow", "content_type": 253}, "model": "auth.permission", "pk": 762}, {"fields": {"codename": "delete_aigradingworkflow", "name": "Can delete ai grading workflow", "content_type": 253}, "model": "auth.permission", "pk": 763}, {"fields": {"codename": "add_staffworkflow", "name": "Can add staff workflow", "content_type": 254}, "model": "auth.permission", "pk": 764}, {"fields": {"codename": "change_staffworkflow", "name": "Can change staff workflow", "content_type": 254}, "model": "auth.permission", "pk": 765}, {"fields": {"codename": "delete_staffworkflow", "name": "Can delete staff workflow", "content_type": 254}, "model": "auth.permission", "pk": 766}, {"fields": {"codename": "add_assessmentworkflow", "name": "Can add assessment workflow", "content_type": 255}, "model": "auth.permission", "pk": 767}, {"fields": {"codename": "change_assessmentworkflow", "name": "Can change assessment workflow", "content_type": 255}, "model": "auth.permission", "pk": 768}, {"fields": {"codename": "delete_assessmentworkflow", "name": "Can delete assessment workflow", "content_type": 255}, "model": "auth.permission", "pk": 769}, {"fields": {"codename": "add_assessmentworkflowstep", "name": "Can add assessment workflow step", "content_type": 256}, "model": "auth.permission", "pk": 770}, {"fields": {"codename": "change_assessmentworkflowstep", "name": "Can change assessment workflow step", "content_type": 256}, "model": "auth.permission", "pk": 771}, {"fields": {"codename": "delete_assessmentworkflowstep", "name": "Can delete assessment workflow step", "content_type": 256}, "model": "auth.permission", "pk": 772}, {"fields": {"codename": "add_assessmentworkflowcancellation", "name": "Can add assessment workflow cancellation", "content_type": 257}, "model": "auth.permission", "pk": 773}, {"fields": {"codename": "change_assessmentworkflowcancellation", "name": "Can change assessment workflow cancellation", "content_type": 257}, "model": "auth.permission", "pk": 774}, {"fields": {"codename": "delete_assessmentworkflowcancellation", "name": "Can delete assessment workflow cancellation", "content_type": 257}, "model": "auth.permission", "pk": 775}, {"fields": {"codename": "add_profile", "name": "Can add profile", "content_type": 258}, "model": "auth.permission", "pk": 776}, {"fields": {"codename": "change_profile", "name": "Can change profile", "content_type": 258}, "model": "auth.permission", "pk": 777}, {"fields": {"codename": "delete_profile", "name": "Can delete profile", "content_type": 258}, "model": "auth.permission", "pk": 778}, {"fields": {"codename": "add_video", "name": "Can add video", "content_type": 259}, "model": "auth.permission", "pk": 779}, {"fields": {"codename": "change_video", "name": "Can change video", "content_type": 259}, "model": "auth.permission", "pk": 780}, {"fields": {"codename": "delete_video", "name": "Can delete video", "content_type": 259}, "model": "auth.permission", "pk": 781}, {"fields": {"codename": "add_coursevideo", "name": "Can add course video", "content_type": 260}, "model": "auth.permission", "pk": 782}, {"fields": {"codename": "change_coursevideo", "name": "Can change course video", "content_type": 260}, "model": "auth.permission", "pk": 783}, {"fields": {"codename": "delete_coursevideo", "name": "Can delete course video", "content_type": 260}, "model": "auth.permission", "pk": 784}, {"fields": {"codename": "add_encodedvideo", "name": "Can add encoded video", "content_type": 261}, "model": "auth.permission", "pk": 785}, {"fields": {"codename": "change_encodedvideo", "name": "Can change encoded video", "content_type": 261}, "model": "auth.permission", "pk": 786}, {"fields": {"codename": "delete_encodedvideo", "name": "Can delete encoded video", "content_type": 261}, "model": "auth.permission", "pk": 787}, {"fields": {"codename": "add_subtitle", "name": "Can add subtitle", "content_type": 262}, "model": "auth.permission", "pk": 788}, {"fields": {"codename": "change_subtitle", "name": "Can change subtitle", "content_type": 262}, "model": "auth.permission", "pk": 789}, {"fields": {"codename": "delete_subtitle", "name": "Can delete subtitle", "content_type": 262}, "model": "auth.permission", "pk": 790}, {"fields": {"codename": "add_proctoredexam", "name": "Can add proctored exam", "content_type": 263}, "model": "auth.permission", "pk": 791}, {"fields": {"codename": "change_proctoredexam", "name": "Can change proctored exam", "content_type": 263}, "model": "auth.permission", "pk": 792}, {"fields": {"codename": "delete_proctoredexam", "name": "Can delete proctored exam", "content_type": 263}, "model": "auth.permission", "pk": 793}, {"fields": {"codename": "add_proctoredexamreviewpolicy", "name": "Can add Proctored exam review policy", "content_type": 264}, "model": "auth.permission", "pk": 794}, {"fields": {"codename": "change_proctoredexamreviewpolicy", "name": "Can change Proctored exam review policy", "content_type": 264}, "model": "auth.permission", "pk": 795}, {"fields": {"codename": "delete_proctoredexamreviewpolicy", "name": "Can delete Proctored exam review policy", "content_type": 264}, "model": "auth.permission", "pk": 796}, {"fields": {"codename": "add_proctoredexamreviewpolicyhistory", "name": "Can add proctored exam review policy history", "content_type": 265}, "model": "auth.permission", "pk": 797}, {"fields": {"codename": "change_proctoredexamreviewpolicyhistory", "name": "Can change proctored exam review policy history", "content_type": 265}, "model": "auth.permission", "pk": 798}, {"fields": {"codename": "delete_proctoredexamreviewpolicyhistory", "name": "Can delete proctored exam review policy history", "content_type": 265}, "model": "auth.permission", "pk": 799}, {"fields": {"codename": "add_proctoredexamstudentattempt", "name": "Can add proctored exam attempt", "content_type": 266}, "model": "auth.permission", "pk": 800}, {"fields": {"codename": "change_proctoredexamstudentattempt", "name": "Can change proctored exam attempt", "content_type": 266}, "model": "auth.permission", "pk": 801}, {"fields": {"codename": "delete_proctoredexamstudentattempt", "name": "Can delete proctored exam attempt", "content_type": 266}, "model": "auth.permission", "pk": 802}, {"fields": {"codename": "add_proctoredexamstudentattempthistory", "name": "Can add proctored exam attempt history", "content_type": 267}, "model": "auth.permission", "pk": 803}, {"fields": {"codename": "change_proctoredexamstudentattempthistory", "name": "Can change proctored exam attempt history", "content_type": 267}, "model": "auth.permission", "pk": 804}, {"fields": {"codename": "delete_proctoredexamstudentattempthistory", "name": "Can delete proctored exam attempt history", "content_type": 267}, "model": "auth.permission", "pk": 805}, {"fields": {"codename": "add_proctoredexamstudentallowance", "name": "Can add proctored allowance", "content_type": 268}, "model": "auth.permission", "pk": 806}, {"fields": {"codename": "change_proctoredexamstudentallowance", "name": "Can change proctored allowance", "content_type": 268}, "model": "auth.permission", "pk": 807}, {"fields": {"codename": "delete_proctoredexamstudentallowance", "name": "Can delete proctored allowance", "content_type": 268}, "model": "auth.permission", "pk": 808}, {"fields": {"codename": "add_proctoredexamstudentallowancehistory", "name": "Can add proctored allowance history", "content_type": 269}, "model": "auth.permission", "pk": 809}, {"fields": {"codename": "change_proctoredexamstudentallowancehistory", "name": "Can change proctored allowance history", "content_type": 269}, "model": "auth.permission", "pk": 810}, {"fields": {"codename": "delete_proctoredexamstudentallowancehistory", "name": "Can delete proctored allowance history", "content_type": 269}, "model": "auth.permission", "pk": 811}, {"fields": {"codename": "add_proctoredexamsoftwaresecurereview", "name": "Can add Proctored exam software secure review", "content_type": 270}, "model": "auth.permission", "pk": 812}, {"fields": {"codename": "change_proctoredexamsoftwaresecurereview", "name": "Can change Proctored exam software secure review", "content_type": 270}, "model": "auth.permission", "pk": 813}, {"fields": {"codename": "delete_proctoredexamsoftwaresecurereview", "name": "Can delete Proctored exam software secure review", "content_type": 270}, "model": "auth.permission", "pk": 814}, {"fields": {"codename": "add_proctoredexamsoftwaresecurereviewhistory", "name": "Can add Proctored exam review archive", "content_type": 271}, "model": "auth.permission", "pk": 815}, {"fields": {"codename": "change_proctoredexamsoftwaresecurereviewhistory", "name": "Can change Proctored exam review archive", "content_type": 271}, "model": "auth.permission", "pk": 816}, {"fields": {"codename": "delete_proctoredexamsoftwaresecurereviewhistory", "name": "Can delete Proctored exam review archive", "content_type": 271}, "model": "auth.permission", "pk": 817}, {"fields": {"codename": "add_proctoredexamsoftwaresecurecomment", "name": "Can add proctored exam software secure comment", "content_type": 272}, "model": "auth.permission", "pk": 818}, {"fields": {"codename": "change_proctoredexamsoftwaresecurecomment", "name": "Can change proctored exam software secure comment", "content_type": 272}, "model": "auth.permission", "pk": 819}, {"fields": {"codename": "delete_proctoredexamsoftwaresecurecomment", "name": "Can delete proctored exam software secure comment", "content_type": 272}, "model": "auth.permission", "pk": 820}, {"fields": {"codename": "add_organization", "name": "Can add organization", "content_type": 273}, "model": "auth.permission", "pk": 821}, {"fields": {"codename": "change_organization", "name": "Can change organization", "content_type": 273}, "model": "auth.permission", "pk": 822}, {"fields": {"codename": "delete_organization", "name": "Can delete organization", "content_type": 273}, "model": "auth.permission", "pk": 823}, {"fields": {"codename": "add_organizationcourse", "name": "Can add Link Course", "content_type": 274}, "model": "auth.permission", "pk": 824}, {"fields": {"codename": "change_organizationcourse", "name": "Can change Link Course", "content_type": 274}, "model": "auth.permission", "pk": 825}, {"fields": {"codename": "delete_organizationcourse", "name": "Can delete Link Course", "content_type": 274}, "model": "auth.permission", "pk": 826}, {"fields": {"codename": "add_customcourseforedx", "name": "Can add custom course for ed x", "content_type": 275}, "model": "auth.permission", "pk": 827}, {"fields": {"codename": "change_customcourseforedx", "name": "Can change custom course for ed x", "content_type": 275}, "model": "auth.permission", "pk": 828}, {"fields": {"codename": "delete_customcourseforedx", "name": "Can delete custom course for ed x", "content_type": 275}, "model": "auth.permission", "pk": 829}, {"fields": {"codename": "add_ccxfieldoverride", "name": "Can add ccx field override", "content_type": 276}, "model": "auth.permission", "pk": 830}, {"fields": {"codename": "change_ccxfieldoverride", "name": "Can change ccx field override", "content_type": 276}, "model": "auth.permission", "pk": 831}, {"fields": {"codename": "delete_ccxfieldoverride", "name": "Can delete ccx field override", "content_type": 276}, "model": "auth.permission", "pk": 832}, {"fields": {"codename": "add_ccxcon", "name": "Can add CCX Connector", "content_type": 277}, "model": "auth.permission", "pk": 833}, {"fields": {"codename": "change_ccxcon", "name": "Can change CCX Connector", "content_type": 277}, "model": "auth.permission", "pk": 834}, {"fields": {"codename": "delete_ccxcon", "name": "Can delete CCX Connector", "content_type": 277}, "model": "auth.permission", "pk": 835}, {"fields": {"codename": "add_studentmodulehistoryextended", "name": "Can add student module history extended", "content_type": 278}, "model": "auth.permission", "pk": 836}, {"fields": {"codename": "change_studentmodulehistoryextended", "name": "Can change student module history extended", "content_type": 278}, "model": "auth.permission", "pk": 837}, {"fields": {"codename": "delete_studentmodulehistoryextended", "name": "Can delete student module history extended", "content_type": 278}, "model": "auth.permission", "pk": 838}, {"fields": {"codename": "add_videouploadconfig", "name": "Can add video upload config", "content_type": 279}, "model": "auth.permission", "pk": 839}, {"fields": {"codename": "change_videouploadconfig", "name": "Can change video upload config", "content_type": 279}, "model": "auth.permission", "pk": 840}, {"fields": {"codename": "delete_videouploadconfig", "name": "Can delete video upload config", "content_type": 279}, "model": "auth.permission", "pk": 841}, {"fields": {"codename": "add_pushnotificationconfig", "name": "Can add push notification config", "content_type": 280}, "model": "auth.permission", "pk": 842}, {"fields": {"codename": "change_pushnotificationconfig", "name": "Can change push notification config", "content_type": 280}, "model": "auth.permission", "pk": 843}, {"fields": {"codename": "delete_pushnotificationconfig", "name": "Can delete push notification config", "content_type": 280}, "model": "auth.permission", "pk": 844}, {"fields": {"codename": "add_coursecreator", "name": "Can add course creator", "content_type": 281}, "model": "auth.permission", "pk": 845}, {"fields": {"codename": "change_coursecreator", "name": "Can change course creator", "content_type": 281}, "model": "auth.permission", "pk": 846}, {"fields": {"codename": "delete_coursecreator", "name": "Can delete course creator", "content_type": 281}, "model": "auth.permission", "pk": 847}, {"fields": {"codename": "add_studioconfig", "name": "Can add studio config", "content_type": 282}, "model": "auth.permission", "pk": 848}, {"fields": {"codename": "change_studioconfig", "name": "Can change studio config", "content_type": 282}, "model": "auth.permission", "pk": 849}, {"fields": {"codename": "delete_studioconfig", "name": "Can delete studio config", "content_type": 282}, "model": "auth.permission", "pk": 850}, {"fields": {"codename": "add_tagcategories", "name": "Can add tag categories", "content_type": 283}, "model": "auth.permission", "pk": 851}, {"fields": {"codename": "change_tagcategories", "name": "Can change tag categories", "content_type": 283}, "model": "auth.permission", "pk": 852}, {"fields": {"codename": "delete_tagcategories", "name": "Can delete tag categories", "content_type": 283}, "model": "auth.permission", "pk": 853}, {"fields": {"codename": "add_tagavailablevalues", "name": "Can add tag available values", "content_type": 284}, "model": "auth.permission", "pk": 854}, {"fields": {"codename": "change_tagavailablevalues", "name": "Can change tag available values", "content_type": 284}, "model": "auth.permission", "pk": 855}, {"fields": {"codename": "delete_tagavailablevalues", "name": "Can delete tag available values", "content_type": 284}, "model": "auth.permission", "pk": 856}, {"fields": {"name": "API Access Request Approvers", "permissions": []}, "model": "auth.group", "pk": 1}, {"fields": {"username": "ecommerce_worker", "first_name": "", "last_name": "", "is_active": true, "is_superuser": false, "is_staff": false, "last_login": null, "groups": [], "user_permissions": [], "password": "!k87DBmhUmcBibJNmQltcSd0l00lyuAr9nyGGd9cY", "email": "ecommerce_worker@fake.email", "date_joined": "2016-07-06T14:30:04.447Z"}, "model": "auth.user", "pk": 1}, {"fields": {"change_date": "2016-07-06T14:32:44.408Z", "changed_by": null, "enabled": true}, "model": "util.ratelimitconfiguration", "pk": 1}, {"fields": {"change_date": "2016-07-06T14:29:55.550Z", "changed_by": null, "configuration": "{\"default\": {\"accomplishment_class_append\": \"accomplishment-certificate\", \"platform_name\": \"Your Platform Name Here\", \"logo_src\": \"/static/certificates/images/logo.png\", \"logo_url\": \"http://www.example.com\", \"company_verified_certificate_url\": \"http://www.example.com/verified-certificate\", \"company_privacy_url\": \"http://www.example.com/privacy-policy\", \"company_tos_url\": \"http://www.example.com/terms-service\", \"company_about_url\": \"http://www.example.com/about-us\"}, \"verified\": {\"certificate_type\": \"Verified\", \"certificate_title\": \"Verified Certificate of Achievement\"}, \"honor\": {\"certificate_type\": \"Honor Code\", \"certificate_title\": \"Certificate of Achievement\"}}", "enabled": false}, "model": "certificates.certificatehtmlviewconfiguration", "pk": 1}, {"fields": {"change_date": "2016-07-06T14:30:15.107Z", "changed_by": null, "enabled": true, "released_languages": ""}, "model": "dark_lang.darklangconfig", "pk": 1}] \ No newline at end of file +[{"fields": {"model": "apiaccessrequest", "app_label": "api_admin"}, "model": "contenttypes.contenttype", "pk": 1}, {"fields": {"model": "permission", "app_label": "auth"}, "model": "contenttypes.contenttype", "pk": 2}, {"fields": {"model": "group", "app_label": "auth"}, "model": "contenttypes.contenttype", "pk": 3}, {"fields": {"model": "user", "app_label": "auth"}, "model": "contenttypes.contenttype", "pk": 4}, {"fields": {"model": "contenttype", "app_label": "contenttypes"}, "model": "contenttypes.contenttype", "pk": 5}, {"fields": {"model": "redirect", "app_label": "redirects"}, "model": "contenttypes.contenttype", "pk": 6}, {"fields": {"model": "session", "app_label": "sessions"}, "model": "contenttypes.contenttype", "pk": 7}, {"fields": {"model": "site", "app_label": "sites"}, "model": "contenttypes.contenttype", "pk": 8}, {"fields": {"model": "taskmeta", "app_label": "djcelery"}, "model": "contenttypes.contenttype", "pk": 9}, {"fields": {"model": "tasksetmeta", "app_label": "djcelery"}, "model": "contenttypes.contenttype", "pk": 10}, {"fields": {"model": "intervalschedule", "app_label": "djcelery"}, "model": "contenttypes.contenttype", "pk": 11}, {"fields": {"model": "crontabschedule", "app_label": "djcelery"}, "model": "contenttypes.contenttype", "pk": 12}, {"fields": {"model": "periodictasks", "app_label": "djcelery"}, "model": "contenttypes.contenttype", "pk": 13}, {"fields": {"model": "periodictask", "app_label": "djcelery"}, "model": "contenttypes.contenttype", "pk": 14}, {"fields": {"model": "workerstate", "app_label": "djcelery"}, "model": "contenttypes.contenttype", "pk": 15}, {"fields": {"model": "taskstate", "app_label": "djcelery"}, "model": "contenttypes.contenttype", "pk": 16}, {"fields": {"model": "globalstatusmessage", "app_label": "status"}, "model": "contenttypes.contenttype", "pk": 17}, {"fields": {"model": "coursemessage", "app_label": "status"}, "model": "contenttypes.contenttype", "pk": 18}, {"fields": {"model": "assetbaseurlconfig", "app_label": "static_replace"}, "model": "contenttypes.contenttype", "pk": 19}, {"fields": {"model": "assetexcludedextensionsconfig", "app_label": "static_replace"}, "model": "contenttypes.contenttype", "pk": 20}, {"fields": {"model": "courseassetcachettlconfig", "app_label": "contentserver"}, "model": "contenttypes.contenttype", "pk": 21}, {"fields": {"model": "cdnuseragentsconfig", "app_label": "contentserver"}, "model": "contenttypes.contenttype", "pk": 22}, {"fields": {"model": "sitetheme", "app_label": "theming"}, "model": "contenttypes.contenttype", "pk": 23}, {"fields": {"model": "siteconfiguration", "app_label": "site_configuration"}, "model": "contenttypes.contenttype", "pk": 24}, {"fields": {"model": "siteconfigurationhistory", "app_label": "site_configuration"}, "model": "contenttypes.contenttype", "pk": 25}, {"fields": {"model": "studentmodule", "app_label": "courseware"}, "model": "contenttypes.contenttype", "pk": 26}, {"fields": {"model": "studentmodulehistory", "app_label": "courseware"}, "model": "contenttypes.contenttype", "pk": 27}, {"fields": {"model": "xmoduleuserstatesummaryfield", "app_label": "courseware"}, "model": "contenttypes.contenttype", "pk": 28}, {"fields": {"model": "xmodulestudentprefsfield", "app_label": "courseware"}, "model": "contenttypes.contenttype", "pk": 29}, {"fields": {"model": "xmodulestudentinfofield", "app_label": "courseware"}, "model": "contenttypes.contenttype", "pk": 30}, {"fields": {"model": "offlinecomputedgrade", "app_label": "courseware"}, "model": "contenttypes.contenttype", "pk": 31}, {"fields": {"model": "offlinecomputedgradelog", "app_label": "courseware"}, "model": "contenttypes.contenttype", "pk": 32}, {"fields": {"model": "studentfieldoverride", "app_label": "courseware"}, "model": "contenttypes.contenttype", "pk": 33}, {"fields": {"model": "anonymoususerid", "app_label": "student"}, "model": "contenttypes.contenttype", "pk": 34}, {"fields": {"model": "userstanding", "app_label": "student"}, "model": "contenttypes.contenttype", "pk": 35}, {"fields": {"model": "userprofile", "app_label": "student"}, "model": "contenttypes.contenttype", "pk": 36}, {"fields": {"model": "usersignupsource", "app_label": "student"}, "model": "contenttypes.contenttype", "pk": 37}, {"fields": {"model": "usertestgroup", "app_label": "student"}, "model": "contenttypes.contenttype", "pk": 38}, {"fields": {"model": "registration", "app_label": "student"}, "model": "contenttypes.contenttype", "pk": 39}, {"fields": {"model": "pendingnamechange", "app_label": "student"}, "model": "contenttypes.contenttype", "pk": 40}, {"fields": {"model": "pendingemailchange", "app_label": "student"}, "model": "contenttypes.contenttype", "pk": 41}, {"fields": {"model": "passwordhistory", "app_label": "student"}, "model": "contenttypes.contenttype", "pk": 42}, {"fields": {"model": "loginfailures", "app_label": "student"}, "model": "contenttypes.contenttype", "pk": 43}, {"fields": {"model": "historicalcourseenrollment", "app_label": "student"}, "model": "contenttypes.contenttype", "pk": 44}, {"fields": {"model": "courseenrollment", "app_label": "student"}, "model": "contenttypes.contenttype", "pk": 45}, {"fields": {"model": "manualenrollmentaudit", "app_label": "student"}, "model": "contenttypes.contenttype", "pk": 46}, {"fields": {"model": "courseenrollmentallowed", "app_label": "student"}, "model": "contenttypes.contenttype", "pk": 47}, {"fields": {"model": "courseaccessrole", "app_label": "student"}, "model": "contenttypes.contenttype", "pk": 48}, {"fields": {"model": "dashboardconfiguration", "app_label": "student"}, "model": "contenttypes.contenttype", "pk": 49}, {"fields": {"model": "linkedinaddtoprofileconfiguration", "app_label": "student"}, "model": "contenttypes.contenttype", "pk": 50}, {"fields": {"model": "entranceexamconfiguration", "app_label": "student"}, "model": "contenttypes.contenttype", "pk": 51}, {"fields": {"model": "languageproficiency", "app_label": "student"}, "model": "contenttypes.contenttype", "pk": 52}, {"fields": {"model": "courseenrollmentattribute", "app_label": "student"}, "model": "contenttypes.contenttype", "pk": 53}, {"fields": {"model": "enrollmentrefundconfiguration", "app_label": "student"}, "model": "contenttypes.contenttype", "pk": 54}, {"fields": {"model": "userattribute", "app_label": "student"}, "model": "contenttypes.contenttype", "pk": 55}, {"fields": {"model": "logoutviewconfiguration", "app_label": "student"}, "model": "contenttypes.contenttype", "pk": 56}, {"fields": {"model": "trackinglog", "app_label": "track"}, "model": "contenttypes.contenttype", "pk": 57}, {"fields": {"model": "ratelimitconfiguration", "app_label": "util"}, "model": "contenttypes.contenttype", "pk": 58}, {"fields": {"model": "certificatewhitelist", "app_label": "certificates"}, "model": "contenttypes.contenttype", "pk": 59}, {"fields": {"model": "generatedcertificate", "app_label": "certificates"}, "model": "contenttypes.contenttype", "pk": 60}, {"fields": {"model": "certificategenerationhistory", "app_label": "certificates"}, "model": "contenttypes.contenttype", "pk": 61}, {"fields": {"model": "certificateinvalidation", "app_label": "certificates"}, "model": "contenttypes.contenttype", "pk": 62}, {"fields": {"model": "examplecertificateset", "app_label": "certificates"}, "model": "contenttypes.contenttype", "pk": 63}, {"fields": {"model": "examplecertificate", "app_label": "certificates"}, "model": "contenttypes.contenttype", "pk": 64}, {"fields": {"model": "certificategenerationcoursesetting", "app_label": "certificates"}, "model": "contenttypes.contenttype", "pk": 65}, {"fields": {"model": "certificategenerationconfiguration", "app_label": "certificates"}, "model": "contenttypes.contenttype", "pk": 66}, {"fields": {"model": "certificatehtmlviewconfiguration", "app_label": "certificates"}, "model": "contenttypes.contenttype", "pk": 67}, {"fields": {"model": "certificatetemplate", "app_label": "certificates"}, "model": "contenttypes.contenttype", "pk": 68}, {"fields": {"model": "certificatetemplateasset", "app_label": "certificates"}, "model": "contenttypes.contenttype", "pk": 69}, {"fields": {"model": "instructortask", "app_label": "instructor_task"}, "model": "contenttypes.contenttype", "pk": 70}, {"fields": {"model": "courseusergroup", "app_label": "course_groups"}, "model": "contenttypes.contenttype", "pk": 71}, {"fields": {"model": "cohortmembership", "app_label": "course_groups"}, "model": "contenttypes.contenttype", "pk": 72}, {"fields": {"model": "courseusergrouppartitiongroup", "app_label": "course_groups"}, "model": "contenttypes.contenttype", "pk": 73}, {"fields": {"model": "coursecohortssettings", "app_label": "course_groups"}, "model": "contenttypes.contenttype", "pk": 74}, {"fields": {"model": "coursecohort", "app_label": "course_groups"}, "model": "contenttypes.contenttype", "pk": 75}, {"fields": {"model": "target", "app_label": "bulk_email"}, "model": "contenttypes.contenttype", "pk": 76}, {"fields": {"model": "cohorttarget", "app_label": "bulk_email"}, "model": "contenttypes.contenttype", "pk": 77}, {"fields": {"model": "courseemail", "app_label": "bulk_email"}, "model": "contenttypes.contenttype", "pk": 78}, {"fields": {"model": "optout", "app_label": "bulk_email"}, "model": "contenttypes.contenttype", "pk": 79}, {"fields": {"model": "courseemailtemplate", "app_label": "bulk_email"}, "model": "contenttypes.contenttype", "pk": 80}, {"fields": {"model": "courseauthorization", "app_label": "bulk_email"}, "model": "contenttypes.contenttype", "pk": 81}, {"fields": {"model": "bulkemailflag", "app_label": "bulk_email"}, "model": "contenttypes.contenttype", "pk": 82}, {"fields": {"model": "brandinginfoconfig", "app_label": "branding"}, "model": "contenttypes.contenttype", "pk": 83}, {"fields": {"model": "brandingapiconfig", "app_label": "branding"}, "model": "contenttypes.contenttype", "pk": 84}, {"fields": {"model": "externalauthmap", "app_label": "external_auth"}, "model": "contenttypes.contenttype", "pk": 85}, {"fields": {"model": "nonce", "app_label": "django_openid_auth"}, "model": "contenttypes.contenttype", "pk": 86}, {"fields": {"model": "association", "app_label": "django_openid_auth"}, "model": "contenttypes.contenttype", "pk": 87}, {"fields": {"model": "useropenid", "app_label": "django_openid_auth"}, "model": "contenttypes.contenttype", "pk": 88}, {"fields": {"model": "client", "app_label": "oauth2"}, "model": "contenttypes.contenttype", "pk": 89}, {"fields": {"model": "grant", "app_label": "oauth2"}, "model": "contenttypes.contenttype", "pk": 90}, {"fields": {"model": "accesstoken", "app_label": "oauth2"}, "model": "contenttypes.contenttype", "pk": 91}, {"fields": {"model": "refreshtoken", "app_label": "oauth2"}, "model": "contenttypes.contenttype", "pk": 92}, {"fields": {"model": "trustedclient", "app_label": "edx_oauth2_provider"}, "model": "contenttypes.contenttype", "pk": 93}, {"fields": {"model": "application", "app_label": "oauth2_provider"}, "model": "contenttypes.contenttype", "pk": 94}, {"fields": {"model": "grant", "app_label": "oauth2_provider"}, "model": "contenttypes.contenttype", "pk": 95}, {"fields": {"model": "accesstoken", "app_label": "oauth2_provider"}, "model": "contenttypes.contenttype", "pk": 96}, {"fields": {"model": "refreshtoken", "app_label": "oauth2_provider"}, "model": "contenttypes.contenttype", "pk": 97}, {"fields": {"model": "oauth2providerconfig", "app_label": "third_party_auth"}, "model": "contenttypes.contenttype", "pk": 98}, {"fields": {"model": "samlproviderconfig", "app_label": "third_party_auth"}, "model": "contenttypes.contenttype", "pk": 99}, {"fields": {"model": "samlconfiguration", "app_label": "third_party_auth"}, "model": "contenttypes.contenttype", "pk": 100}, {"fields": {"model": "samlproviderdata", "app_label": "third_party_auth"}, "model": "contenttypes.contenttype", "pk": 101}, {"fields": {"model": "ltiproviderconfig", "app_label": "third_party_auth"}, "model": "contenttypes.contenttype", "pk": 102}, {"fields": {"model": "providerapipermissions", "app_label": "third_party_auth"}, "model": "contenttypes.contenttype", "pk": 103}, {"fields": {"model": "nonce", "app_label": "oauth_provider"}, "model": "contenttypes.contenttype", "pk": 104}, {"fields": {"model": "scope", "app_label": "oauth_provider"}, "model": "contenttypes.contenttype", "pk": 105}, {"fields": {"model": "consumer", "app_label": "oauth_provider"}, "model": "contenttypes.contenttype", "pk": 106}, {"fields": {"model": "token", "app_label": "oauth_provider"}, "model": "contenttypes.contenttype", "pk": 107}, {"fields": {"model": "resource", "app_label": "oauth_provider"}, "model": "contenttypes.contenttype", "pk": 108}, {"fields": {"model": "article", "app_label": "wiki"}, "model": "contenttypes.contenttype", "pk": 109}, {"fields": {"model": "articleforobject", "app_label": "wiki"}, "model": "contenttypes.contenttype", "pk": 110}, {"fields": {"model": "articlerevision", "app_label": "wiki"}, "model": "contenttypes.contenttype", "pk": 111}, {"fields": {"model": "urlpath", "app_label": "wiki"}, "model": "contenttypes.contenttype", "pk": 112}, {"fields": {"model": "articleplugin", "app_label": "wiki"}, "model": "contenttypes.contenttype", "pk": 113}, {"fields": {"model": "reusableplugin", "app_label": "wiki"}, "model": "contenttypes.contenttype", "pk": 114}, {"fields": {"model": "simpleplugin", "app_label": "wiki"}, "model": "contenttypes.contenttype", "pk": 115}, {"fields": {"model": "revisionplugin", "app_label": "wiki"}, "model": "contenttypes.contenttype", "pk": 116}, {"fields": {"model": "revisionpluginrevision", "app_label": "wiki"}, "model": "contenttypes.contenttype", "pk": 117}, {"fields": {"model": "image", "app_label": "wiki"}, "model": "contenttypes.contenttype", "pk": 118}, {"fields": {"model": "imagerevision", "app_label": "wiki"}, "model": "contenttypes.contenttype", "pk": 119}, {"fields": {"model": "attachment", "app_label": "wiki"}, "model": "contenttypes.contenttype", "pk": 120}, {"fields": {"model": "attachmentrevision", "app_label": "wiki"}, "model": "contenttypes.contenttype", "pk": 121}, {"fields": {"model": "notificationtype", "app_label": "django_notify"}, "model": "contenttypes.contenttype", "pk": 122}, {"fields": {"model": "settings", "app_label": "django_notify"}, "model": "contenttypes.contenttype", "pk": 123}, {"fields": {"model": "subscription", "app_label": "django_notify"}, "model": "contenttypes.contenttype", "pk": 124}, {"fields": {"model": "notification", "app_label": "django_notify"}, "model": "contenttypes.contenttype", "pk": 125}, {"fields": {"model": "logentry", "app_label": "admin"}, "model": "contenttypes.contenttype", "pk": 126}, {"fields": {"model": "role", "app_label": "django_comment_common"}, "model": "contenttypes.contenttype", "pk": 127}, {"fields": {"model": "permission", "app_label": "django_comment_common"}, "model": "contenttypes.contenttype", "pk": 128}, {"fields": {"model": "forumsconfig", "app_label": "django_comment_common"}, "model": "contenttypes.contenttype", "pk": 129}, {"fields": {"model": "note", "app_label": "notes"}, "model": "contenttypes.contenttype", "pk": 130}, {"fields": {"model": "splashconfig", "app_label": "splash"}, "model": "contenttypes.contenttype", "pk": 131}, {"fields": {"model": "userpreference", "app_label": "user_api"}, "model": "contenttypes.contenttype", "pk": 132}, {"fields": {"model": "usercoursetag", "app_label": "user_api"}, "model": "contenttypes.contenttype", "pk": 133}, {"fields": {"model": "userorgtag", "app_label": "user_api"}, "model": "contenttypes.contenttype", "pk": 134}, {"fields": {"model": "order", "app_label": "shoppingcart"}, "model": "contenttypes.contenttype", "pk": 135}, {"fields": {"model": "orderitem", "app_label": "shoppingcart"}, "model": "contenttypes.contenttype", "pk": 136}, {"fields": {"model": "invoice", "app_label": "shoppingcart"}, "model": "contenttypes.contenttype", "pk": 137}, {"fields": {"model": "invoicetransaction", "app_label": "shoppingcart"}, "model": "contenttypes.contenttype", "pk": 138}, {"fields": {"model": "invoiceitem", "app_label": "shoppingcart"}, "model": "contenttypes.contenttype", "pk": 139}, {"fields": {"model": "courseregistrationcodeinvoiceitem", "app_label": "shoppingcart"}, "model": "contenttypes.contenttype", "pk": 140}, {"fields": {"model": "invoicehistory", "app_label": "shoppingcart"}, "model": "contenttypes.contenttype", "pk": 141}, {"fields": {"model": "courseregistrationcode", "app_label": "shoppingcart"}, "model": "contenttypes.contenttype", "pk": 142}, {"fields": {"model": "registrationcoderedemption", "app_label": "shoppingcart"}, "model": "contenttypes.contenttype", "pk": 143}, {"fields": {"model": "coupon", "app_label": "shoppingcart"}, "model": "contenttypes.contenttype", "pk": 144}, {"fields": {"model": "couponredemption", "app_label": "shoppingcart"}, "model": "contenttypes.contenttype", "pk": 145}, {"fields": {"model": "paidcourseregistration", "app_label": "shoppingcart"}, "model": "contenttypes.contenttype", "pk": 146}, {"fields": {"model": "courseregcodeitem", "app_label": "shoppingcart"}, "model": "contenttypes.contenttype", "pk": 147}, {"fields": {"model": "courseregcodeitemannotation", "app_label": "shoppingcart"}, "model": "contenttypes.contenttype", "pk": 148}, {"fields": {"model": "paidcourseregistrationannotation", "app_label": "shoppingcart"}, "model": "contenttypes.contenttype", "pk": 149}, {"fields": {"model": "certificateitem", "app_label": "shoppingcart"}, "model": "contenttypes.contenttype", "pk": 150}, {"fields": {"model": "donationconfiguration", "app_label": "shoppingcart"}, "model": "contenttypes.contenttype", "pk": 151}, {"fields": {"model": "donation", "app_label": "shoppingcart"}, "model": "contenttypes.contenttype", "pk": 152}, {"fields": {"model": "coursemode", "app_label": "course_modes"}, "model": "contenttypes.contenttype", "pk": 153}, {"fields": {"model": "coursemodesarchive", "app_label": "course_modes"}, "model": "contenttypes.contenttype", "pk": 154}, {"fields": {"model": "coursemodeexpirationconfig", "app_label": "course_modes"}, "model": "contenttypes.contenttype", "pk": 155}, {"fields": {"model": "softwaresecurephotoverification", "app_label": "verify_student"}, "model": "contenttypes.contenttype", "pk": 156}, {"fields": {"model": "historicalverificationdeadline", "app_label": "verify_student"}, "model": "contenttypes.contenttype", "pk": 157}, {"fields": {"model": "verificationdeadline", "app_label": "verify_student"}, "model": "contenttypes.contenttype", "pk": 158}, {"fields": {"model": "verificationcheckpoint", "app_label": "verify_student"}, "model": "contenttypes.contenttype", "pk": 159}, {"fields": {"model": "verificationstatus", "app_label": "verify_student"}, "model": "contenttypes.contenttype", "pk": 160}, {"fields": {"model": "incoursereverificationconfiguration", "app_label": "verify_student"}, "model": "contenttypes.contenttype", "pk": 161}, {"fields": {"model": "icrvstatusemailsconfiguration", "app_label": "verify_student"}, "model": "contenttypes.contenttype", "pk": 162}, {"fields": {"model": "skippedreverification", "app_label": "verify_student"}, "model": "contenttypes.contenttype", "pk": 163}, {"fields": {"model": "darklangconfig", "app_label": "dark_lang"}, "model": "contenttypes.contenttype", "pk": 164}, {"fields": {"model": "microsite", "app_label": "microsite_configuration"}, "model": "contenttypes.contenttype", "pk": 165}, {"fields": {"model": "micrositehistory", "app_label": "microsite_configuration"}, "model": "contenttypes.contenttype", "pk": 166}, {"fields": {"model": "historicalmicrositeorganizationmapping", "app_label": "microsite_configuration"}, "model": "contenttypes.contenttype", "pk": 167}, {"fields": {"model": "micrositeorganizationmapping", "app_label": "microsite_configuration"}, "model": "contenttypes.contenttype", "pk": 168}, {"fields": {"model": "historicalmicrositetemplate", "app_label": "microsite_configuration"}, "model": "contenttypes.contenttype", "pk": 169}, {"fields": {"model": "micrositetemplate", "app_label": "microsite_configuration"}, "model": "contenttypes.contenttype", "pk": 170}, {"fields": {"model": "whitelistedrssurl", "app_label": "rss_proxy"}, "model": "contenttypes.contenttype", "pk": 171}, {"fields": {"model": "embargoedcourse", "app_label": "embargo"}, "model": "contenttypes.contenttype", "pk": 172}, {"fields": {"model": "embargoedstate", "app_label": "embargo"}, "model": "contenttypes.contenttype", "pk": 173}, {"fields": {"model": "restrictedcourse", "app_label": "embargo"}, "model": "contenttypes.contenttype", "pk": 174}, {"fields": {"model": "country", "app_label": "embargo"}, "model": "contenttypes.contenttype", "pk": 175}, {"fields": {"model": "countryaccessrule", "app_label": "embargo"}, "model": "contenttypes.contenttype", "pk": 176}, {"fields": {"model": "courseaccessrulehistory", "app_label": "embargo"}, "model": "contenttypes.contenttype", "pk": 177}, {"fields": {"model": "ipfilter", "app_label": "embargo"}, "model": "contenttypes.contenttype", "pk": 178}, {"fields": {"model": "coursererunstate", "app_label": "course_action_state"}, "model": "contenttypes.contenttype", "pk": 179}, {"fields": {"model": "mobileapiconfig", "app_label": "mobile_api"}, "model": "contenttypes.contenttype", "pk": 180}, {"fields": {"model": "appversionconfig", "app_label": "mobile_api"}, "model": "contenttypes.contenttype", "pk": 181}, {"fields": {"model": "usersocialauth", "app_label": "default"}, "model": "contenttypes.contenttype", "pk": 182}, {"fields": {"model": "nonce", "app_label": "default"}, "model": "contenttypes.contenttype", "pk": 183}, {"fields": {"model": "association", "app_label": "default"}, "model": "contenttypes.contenttype", "pk": 184}, {"fields": {"model": "code", "app_label": "default"}, "model": "contenttypes.contenttype", "pk": 185}, {"fields": {"model": "surveyform", "app_label": "survey"}, "model": "contenttypes.contenttype", "pk": 186}, {"fields": {"model": "surveyanswer", "app_label": "survey"}, "model": "contenttypes.contenttype", "pk": 187}, {"fields": {"model": "xblockasidesconfig", "app_label": "lms_xblock"}, "model": "contenttypes.contenttype", "pk": 188}, {"fields": {"model": "courseoverview", "app_label": "course_overviews"}, "model": "contenttypes.contenttype", "pk": 189}, {"fields": {"model": "courseoverviewtab", "app_label": "course_overviews"}, "model": "contenttypes.contenttype", "pk": 190}, {"fields": {"model": "courseoverviewimageset", "app_label": "course_overviews"}, "model": "contenttypes.contenttype", "pk": 191}, {"fields": {"model": "courseoverviewimageconfig", "app_label": "course_overviews"}, "model": "contenttypes.contenttype", "pk": 192}, {"fields": {"model": "coursestructure", "app_label": "course_structures"}, "model": "contenttypes.contenttype", "pk": 193}, {"fields": {"model": "corsmodel", "app_label": "corsheaders"}, "model": "contenttypes.contenttype", "pk": 194}, {"fields": {"model": "xdomainproxyconfiguration", "app_label": "cors_csrf"}, "model": "contenttypes.contenttype", "pk": 195}, {"fields": {"model": "commerceconfiguration", "app_label": "commerce"}, "model": "contenttypes.contenttype", "pk": 196}, {"fields": {"model": "creditprovider", "app_label": "credit"}, "model": "contenttypes.contenttype", "pk": 197}, {"fields": {"model": "creditcourse", "app_label": "credit"}, "model": "contenttypes.contenttype", "pk": 198}, {"fields": {"model": "creditrequirement", "app_label": "credit"}, "model": "contenttypes.contenttype", "pk": 199}, {"fields": {"model": "historicalcreditrequirementstatus", "app_label": "credit"}, "model": "contenttypes.contenttype", "pk": 200}, {"fields": {"model": "creditrequirementstatus", "app_label": "credit"}, "model": "contenttypes.contenttype", "pk": 201}, {"fields": {"model": "crediteligibility", "app_label": "credit"}, "model": "contenttypes.contenttype", "pk": 202}, {"fields": {"model": "historicalcreditrequest", "app_label": "credit"}, "model": "contenttypes.contenttype", "pk": 203}, {"fields": {"model": "creditrequest", "app_label": "credit"}, "model": "contenttypes.contenttype", "pk": 204}, {"fields": {"model": "creditconfig", "app_label": "credit"}, "model": "contenttypes.contenttype", "pk": 205}, {"fields": {"model": "courseteam", "app_label": "teams"}, "model": "contenttypes.contenttype", "pk": 206}, {"fields": {"model": "courseteammembership", "app_label": "teams"}, "model": "contenttypes.contenttype", "pk": 207}, {"fields": {"model": "xblockconfiguration", "app_label": "xblock_django"}, "model": "contenttypes.contenttype", "pk": 208}, {"fields": {"model": "xblockstudioconfigurationflag", "app_label": "xblock_django"}, "model": "contenttypes.contenttype", "pk": 209}, {"fields": {"model": "xblockstudioconfiguration", "app_label": "xblock_django"}, "model": "contenttypes.contenttype", "pk": 210}, {"fields": {"model": "bookmark", "app_label": "bookmarks"}, "model": "contenttypes.contenttype", "pk": 211}, {"fields": {"model": "xblockcache", "app_label": "bookmarks"}, "model": "contenttypes.contenttype", "pk": 212}, {"fields": {"model": "programsapiconfig", "app_label": "programs"}, "model": "contenttypes.contenttype", "pk": 213}, {"fields": {"model": "catalogintegration", "app_label": "catalog"}, "model": "contenttypes.contenttype", "pk": 214}, {"fields": {"model": "selfpacedconfiguration", "app_label": "self_paced"}, "model": "contenttypes.contenttype", "pk": 215}, {"fields": {"model": "kvstore", "app_label": "thumbnail"}, "model": "contenttypes.contenttype", "pk": 216}, {"fields": {"model": "credentialsapiconfig", "app_label": "credentials"}, "model": "contenttypes.contenttype", "pk": 217}, {"fields": {"model": "milestone", "app_label": "milestones"}, "model": "contenttypes.contenttype", "pk": 218}, {"fields": {"model": "milestonerelationshiptype", "app_label": "milestones"}, "model": "contenttypes.contenttype", "pk": 219}, {"fields": {"model": "coursemilestone", "app_label": "milestones"}, "model": "contenttypes.contenttype", "pk": 220}, {"fields": {"model": "coursecontentmilestone", "app_label": "milestones"}, "model": "contenttypes.contenttype", "pk": 221}, {"fields": {"model": "usermilestone", "app_label": "milestones"}, "model": "contenttypes.contenttype", "pk": 222}, {"fields": {"model": "coursetalkwidgetconfiguration", "app_label": "coursetalk"}, "model": "contenttypes.contenttype", "pk": 223}, {"fields": {"model": "historicalapiaccessrequest", "app_label": "api_admin"}, "model": "contenttypes.contenttype", "pk": 224}, {"fields": {"model": "apiaccessconfig", "app_label": "api_admin"}, "model": "contenttypes.contenttype", "pk": 225}, {"fields": {"model": "catalog", "app_label": "api_admin"}, "model": "contenttypes.contenttype", "pk": 226}, {"fields": {"model": "verifiedtrackcohortedcourse", "app_label": "verified_track_content"}, "model": "contenttypes.contenttype", "pk": 227}, {"fields": {"model": "badgeclass", "app_label": "badges"}, "model": "contenttypes.contenttype", "pk": 228}, {"fields": {"model": "badgeassertion", "app_label": "badges"}, "model": "contenttypes.contenttype", "pk": 229}, {"fields": {"model": "coursecompleteimageconfiguration", "app_label": "badges"}, "model": "contenttypes.contenttype", "pk": 230}, {"fields": {"model": "courseeventbadgesconfiguration", "app_label": "badges"}, "model": "contenttypes.contenttype", "pk": 231}, {"fields": {"model": "emailmarketingconfiguration", "app_label": "email_marketing"}, "model": "contenttypes.contenttype", "pk": 232}, {"fields": {"model": "studentitem", "app_label": "submissions"}, "model": "contenttypes.contenttype", "pk": 233}, {"fields": {"model": "submission", "app_label": "submissions"}, "model": "contenttypes.contenttype", "pk": 234}, {"fields": {"model": "score", "app_label": "submissions"}, "model": "contenttypes.contenttype", "pk": 235}, {"fields": {"model": "scoresummary", "app_label": "submissions"}, "model": "contenttypes.contenttype", "pk": 236}, {"fields": {"model": "scoreannotation", "app_label": "submissions"}, "model": "contenttypes.contenttype", "pk": 237}, {"fields": {"model": "rubric", "app_label": "assessment"}, "model": "contenttypes.contenttype", "pk": 238}, {"fields": {"model": "criterion", "app_label": "assessment"}, "model": "contenttypes.contenttype", "pk": 239}, {"fields": {"model": "criterionoption", "app_label": "assessment"}, "model": "contenttypes.contenttype", "pk": 240}, {"fields": {"model": "assessment", "app_label": "assessment"}, "model": "contenttypes.contenttype", "pk": 241}, {"fields": {"model": "assessmentpart", "app_label": "assessment"}, "model": "contenttypes.contenttype", "pk": 242}, {"fields": {"model": "assessmentfeedbackoption", "app_label": "assessment"}, "model": "contenttypes.contenttype", "pk": 243}, {"fields": {"model": "assessmentfeedback", "app_label": "assessment"}, "model": "contenttypes.contenttype", "pk": 244}, {"fields": {"model": "peerworkflow", "app_label": "assessment"}, "model": "contenttypes.contenttype", "pk": 245}, {"fields": {"model": "peerworkflowitem", "app_label": "assessment"}, "model": "contenttypes.contenttype", "pk": 246}, {"fields": {"model": "trainingexample", "app_label": "assessment"}, "model": "contenttypes.contenttype", "pk": 247}, {"fields": {"model": "studenttrainingworkflow", "app_label": "assessment"}, "model": "contenttypes.contenttype", "pk": 248}, {"fields": {"model": "studenttrainingworkflowitem", "app_label": "assessment"}, "model": "contenttypes.contenttype", "pk": 249}, {"fields": {"model": "aiclassifierset", "app_label": "assessment"}, "model": "contenttypes.contenttype", "pk": 250}, {"fields": {"model": "aiclassifier", "app_label": "assessment"}, "model": "contenttypes.contenttype", "pk": 251}, {"fields": {"model": "aitrainingworkflow", "app_label": "assessment"}, "model": "contenttypes.contenttype", "pk": 252}, {"fields": {"model": "aigradingworkflow", "app_label": "assessment"}, "model": "contenttypes.contenttype", "pk": 253}, {"fields": {"model": "staffworkflow", "app_label": "assessment"}, "model": "contenttypes.contenttype", "pk": 254}, {"fields": {"model": "assessmentworkflow", "app_label": "workflow"}, "model": "contenttypes.contenttype", "pk": 255}, {"fields": {"model": "assessmentworkflowstep", "app_label": "workflow"}, "model": "contenttypes.contenttype", "pk": 256}, {"fields": {"model": "assessmentworkflowcancellation", "app_label": "workflow"}, "model": "contenttypes.contenttype", "pk": 257}, {"fields": {"model": "profile", "app_label": "edxval"}, "model": "contenttypes.contenttype", "pk": 258}, {"fields": {"model": "video", "app_label": "edxval"}, "model": "contenttypes.contenttype", "pk": 259}, {"fields": {"model": "coursevideo", "app_label": "edxval"}, "model": "contenttypes.contenttype", "pk": 260}, {"fields": {"model": "encodedvideo", "app_label": "edxval"}, "model": "contenttypes.contenttype", "pk": 261}, {"fields": {"model": "subtitle", "app_label": "edxval"}, "model": "contenttypes.contenttype", "pk": 262}, {"fields": {"model": "proctoredexam", "app_label": "edx_proctoring"}, "model": "contenttypes.contenttype", "pk": 263}, {"fields": {"model": "proctoredexamreviewpolicy", "app_label": "edx_proctoring"}, "model": "contenttypes.contenttype", "pk": 264}, {"fields": {"model": "proctoredexamreviewpolicyhistory", "app_label": "edx_proctoring"}, "model": "contenttypes.contenttype", "pk": 265}, {"fields": {"model": "proctoredexamstudentattempt", "app_label": "edx_proctoring"}, "model": "contenttypes.contenttype", "pk": 266}, {"fields": {"model": "proctoredexamstudentattempthistory", "app_label": "edx_proctoring"}, "model": "contenttypes.contenttype", "pk": 267}, {"fields": {"model": "proctoredexamstudentallowance", "app_label": "edx_proctoring"}, "model": "contenttypes.contenttype", "pk": 268}, {"fields": {"model": "proctoredexamstudentallowancehistory", "app_label": "edx_proctoring"}, "model": "contenttypes.contenttype", "pk": 269}, {"fields": {"model": "proctoredexamsoftwaresecurereview", "app_label": "edx_proctoring"}, "model": "contenttypes.contenttype", "pk": 270}, {"fields": {"model": "proctoredexamsoftwaresecurereviewhistory", "app_label": "edx_proctoring"}, "model": "contenttypes.contenttype", "pk": 271}, {"fields": {"model": "proctoredexamsoftwaresecurecomment", "app_label": "edx_proctoring"}, "model": "contenttypes.contenttype", "pk": 272}, {"fields": {"model": "organization", "app_label": "organizations"}, "model": "contenttypes.contenttype", "pk": 273}, {"fields": {"model": "organizationcourse", "app_label": "organizations"}, "model": "contenttypes.contenttype", "pk": 274}, {"fields": {"model": "customcourseforedx", "app_label": "ccx"}, "model": "contenttypes.contenttype", "pk": 275}, {"fields": {"model": "ccxfieldoverride", "app_label": "ccx"}, "model": "contenttypes.contenttype", "pk": 276}, {"fields": {"model": "ccxcon", "app_label": "ccxcon"}, "model": "contenttypes.contenttype", "pk": 277}, {"fields": {"model": "studentmodulehistoryextended", "app_label": "coursewarehistoryextended"}, "model": "contenttypes.contenttype", "pk": 278}, {"fields": {"model": "videouploadconfig", "app_label": "contentstore"}, "model": "contenttypes.contenttype", "pk": 279}, {"fields": {"model": "pushnotificationconfig", "app_label": "contentstore"}, "model": "contenttypes.contenttype", "pk": 280}, {"fields": {"model": "coursecreator", "app_label": "course_creators"}, "model": "contenttypes.contenttype", "pk": 281}, {"fields": {"model": "studioconfig", "app_label": "xblock_config"}, "model": "contenttypes.contenttype", "pk": 282}, {"fields": {"model": "tagcategories", "app_label": "tagging"}, "model": "contenttypes.contenttype", "pk": 283}, {"fields": {"model": "tagavailablevalues", "app_label": "tagging"}, "model": "contenttypes.contenttype", "pk": 284}, {"fields": {"domain": "example.com", "name": "example.com"}, "model": "sites.site", "pk": 1}, {"fields": {"plain_template": "{course_title}\n\n{{message_body}}\r\n----\r\nCopyright 2013 edX, All rights reserved.\r\n----\r\nConnect with edX:\r\nFacebook (http://facebook.com/edxonline)\r\nTwitter (http://twitter.com/edxonline)\r\nGoogle+ (https://plus.google.com/108235383044095082735)\r\nMeetup (http://www.meetup.com/edX-Communities/)\r\n----\r\nThis email was automatically sent from {platform_name}.\r\nYou are receiving this email at address {email} because you are enrolled in {course_title}\r\n(URL: {course_url} ).\r\nTo stop receiving email like this, update your course email settings at {email_settings_url}.\r\n", "html_template": " Update from {course_title}

edX
Connect with edX:        

{course_title}


{{message_body}}
       
Copyright \u00a9 2013 edX, All rights reserved.


Our mailing address is:
edX
11 Cambridge Center, Suite 101
Cambridge, MA, USA 02142


This email was automatically sent from {platform_name}.
You are receiving this email at address {email} because you are enrolled in {course_title}.
To stop receiving email like this, update your course email settings here.
", "name": null}, "model": "bulk_email.courseemailtemplate", "pk": 1}, {"fields": {"plain_template": "THIS IS A BRANDED TEXT TEMPLATE. {course_title}\n\n{{message_body}}\r\n----\r\nCopyright 2013 edX, All rights reserved.\r\n----\r\nConnect with edX:\r\nFacebook (http://facebook.com/edxonline)\r\nTwitter (http://twitter.com/edxonline)\r\nGoogle+ (https://plus.google.com/108235383044095082735)\r\nMeetup (http://www.meetup.com/edX-Communities/)\r\n----\r\nThis email was automatically sent from {platform_name}.\r\nYou are receiving this email at address {email} because you are enrolled in {course_title}\r\n(URL: {course_url} ).\r\nTo stop receiving email like this, update your course email settings at {email_settings_url}.\r\n", "html_template": " THIS IS A BRANDED HTML TEMPLATE Update from {course_title}

edX
Connect with edX:        

{course_title}


{{message_body}}
       
Copyright \u00a9 2013 edX, All rights reserved.


Our mailing address is:
edX
11 Cambridge Center, Suite 101
Cambridge, MA, USA 02142


This email was automatically sent from {platform_name}.
You are receiving this email at address {email} because you are enrolled in {course_title}.
To stop receiving email like this, update your course email settings here.
", "name": "branded.template"}, "model": "bulk_email.courseemailtemplate", "pk": 2}, {"fields": {"country": "AF"}, "model": "embargo.country", "pk": 1}, {"fields": {"country": "AX"}, "model": "embargo.country", "pk": 2}, {"fields": {"country": "AL"}, "model": "embargo.country", "pk": 3}, {"fields": {"country": "DZ"}, "model": "embargo.country", "pk": 4}, {"fields": {"country": "AS"}, "model": "embargo.country", "pk": 5}, {"fields": {"country": "AD"}, "model": "embargo.country", "pk": 6}, {"fields": {"country": "AO"}, "model": "embargo.country", "pk": 7}, {"fields": {"country": "AI"}, "model": "embargo.country", "pk": 8}, {"fields": {"country": "AQ"}, "model": "embargo.country", "pk": 9}, {"fields": {"country": "AG"}, "model": "embargo.country", "pk": 10}, {"fields": {"country": "AR"}, "model": "embargo.country", "pk": 11}, {"fields": {"country": "AM"}, "model": "embargo.country", "pk": 12}, {"fields": {"country": "AW"}, "model": "embargo.country", "pk": 13}, {"fields": {"country": "AU"}, "model": "embargo.country", "pk": 14}, {"fields": {"country": "AT"}, "model": "embargo.country", "pk": 15}, {"fields": {"country": "AZ"}, "model": "embargo.country", "pk": 16}, {"fields": {"country": "BS"}, "model": "embargo.country", "pk": 17}, {"fields": {"country": "BH"}, "model": "embargo.country", "pk": 18}, {"fields": {"country": "BD"}, "model": "embargo.country", "pk": 19}, {"fields": {"country": "BB"}, "model": "embargo.country", "pk": 20}, {"fields": {"country": "BY"}, "model": "embargo.country", "pk": 21}, {"fields": {"country": "BE"}, "model": "embargo.country", "pk": 22}, {"fields": {"country": "BZ"}, "model": "embargo.country", "pk": 23}, {"fields": {"country": "BJ"}, "model": "embargo.country", "pk": 24}, {"fields": {"country": "BM"}, "model": "embargo.country", "pk": 25}, {"fields": {"country": "BT"}, "model": "embargo.country", "pk": 26}, {"fields": {"country": "BO"}, "model": "embargo.country", "pk": 27}, {"fields": {"country": "BQ"}, "model": "embargo.country", "pk": 28}, {"fields": {"country": "BA"}, "model": "embargo.country", "pk": 29}, {"fields": {"country": "BW"}, "model": "embargo.country", "pk": 30}, {"fields": {"country": "BV"}, "model": "embargo.country", "pk": 31}, {"fields": {"country": "BR"}, "model": "embargo.country", "pk": 32}, {"fields": {"country": "IO"}, "model": "embargo.country", "pk": 33}, {"fields": {"country": "BN"}, "model": "embargo.country", "pk": 34}, {"fields": {"country": "BG"}, "model": "embargo.country", "pk": 35}, {"fields": {"country": "BF"}, "model": "embargo.country", "pk": 36}, {"fields": {"country": "BI"}, "model": "embargo.country", "pk": 37}, {"fields": {"country": "CV"}, "model": "embargo.country", "pk": 38}, {"fields": {"country": "KH"}, "model": "embargo.country", "pk": 39}, {"fields": {"country": "CM"}, "model": "embargo.country", "pk": 40}, {"fields": {"country": "CA"}, "model": "embargo.country", "pk": 41}, {"fields": {"country": "KY"}, "model": "embargo.country", "pk": 42}, {"fields": {"country": "CF"}, "model": "embargo.country", "pk": 43}, {"fields": {"country": "TD"}, "model": "embargo.country", "pk": 44}, {"fields": {"country": "CL"}, "model": "embargo.country", "pk": 45}, {"fields": {"country": "CN"}, "model": "embargo.country", "pk": 46}, {"fields": {"country": "CX"}, "model": "embargo.country", "pk": 47}, {"fields": {"country": "CC"}, "model": "embargo.country", "pk": 48}, {"fields": {"country": "CO"}, "model": "embargo.country", "pk": 49}, {"fields": {"country": "KM"}, "model": "embargo.country", "pk": 50}, {"fields": {"country": "CG"}, "model": "embargo.country", "pk": 51}, {"fields": {"country": "CD"}, "model": "embargo.country", "pk": 52}, {"fields": {"country": "CK"}, "model": "embargo.country", "pk": 53}, {"fields": {"country": "CR"}, "model": "embargo.country", "pk": 54}, {"fields": {"country": "CI"}, "model": "embargo.country", "pk": 55}, {"fields": {"country": "HR"}, "model": "embargo.country", "pk": 56}, {"fields": {"country": "CU"}, "model": "embargo.country", "pk": 57}, {"fields": {"country": "CW"}, "model": "embargo.country", "pk": 58}, {"fields": {"country": "CY"}, "model": "embargo.country", "pk": 59}, {"fields": {"country": "CZ"}, "model": "embargo.country", "pk": 60}, {"fields": {"country": "DK"}, "model": "embargo.country", "pk": 61}, {"fields": {"country": "DJ"}, "model": "embargo.country", "pk": 62}, {"fields": {"country": "DM"}, "model": "embargo.country", "pk": 63}, {"fields": {"country": "DO"}, "model": "embargo.country", "pk": 64}, {"fields": {"country": "EC"}, "model": "embargo.country", "pk": 65}, {"fields": {"country": "EG"}, "model": "embargo.country", "pk": 66}, {"fields": {"country": "SV"}, "model": "embargo.country", "pk": 67}, {"fields": {"country": "GQ"}, "model": "embargo.country", "pk": 68}, {"fields": {"country": "ER"}, "model": "embargo.country", "pk": 69}, {"fields": {"country": "EE"}, "model": "embargo.country", "pk": 70}, {"fields": {"country": "ET"}, "model": "embargo.country", "pk": 71}, {"fields": {"country": "FK"}, "model": "embargo.country", "pk": 72}, {"fields": {"country": "FO"}, "model": "embargo.country", "pk": 73}, {"fields": {"country": "FJ"}, "model": "embargo.country", "pk": 74}, {"fields": {"country": "FI"}, "model": "embargo.country", "pk": 75}, {"fields": {"country": "FR"}, "model": "embargo.country", "pk": 76}, {"fields": {"country": "GF"}, "model": "embargo.country", "pk": 77}, {"fields": {"country": "PF"}, "model": "embargo.country", "pk": 78}, {"fields": {"country": "TF"}, "model": "embargo.country", "pk": 79}, {"fields": {"country": "GA"}, "model": "embargo.country", "pk": 80}, {"fields": {"country": "GM"}, "model": "embargo.country", "pk": 81}, {"fields": {"country": "GE"}, "model": "embargo.country", "pk": 82}, {"fields": {"country": "DE"}, "model": "embargo.country", "pk": 83}, {"fields": {"country": "GH"}, "model": "embargo.country", "pk": 84}, {"fields": {"country": "GI"}, "model": "embargo.country", "pk": 85}, {"fields": {"country": "GR"}, "model": "embargo.country", "pk": 86}, {"fields": {"country": "GL"}, "model": "embargo.country", "pk": 87}, {"fields": {"country": "GD"}, "model": "embargo.country", "pk": 88}, {"fields": {"country": "GP"}, "model": "embargo.country", "pk": 89}, {"fields": {"country": "GU"}, "model": "embargo.country", "pk": 90}, {"fields": {"country": "GT"}, "model": "embargo.country", "pk": 91}, {"fields": {"country": "GG"}, "model": "embargo.country", "pk": 92}, {"fields": {"country": "GN"}, "model": "embargo.country", "pk": 93}, {"fields": {"country": "GW"}, "model": "embargo.country", "pk": 94}, {"fields": {"country": "GY"}, "model": "embargo.country", "pk": 95}, {"fields": {"country": "HT"}, "model": "embargo.country", "pk": 96}, {"fields": {"country": "HM"}, "model": "embargo.country", "pk": 97}, {"fields": {"country": "VA"}, "model": "embargo.country", "pk": 98}, {"fields": {"country": "HN"}, "model": "embargo.country", "pk": 99}, {"fields": {"country": "HK"}, "model": "embargo.country", "pk": 100}, {"fields": {"country": "HU"}, "model": "embargo.country", "pk": 101}, {"fields": {"country": "IS"}, "model": "embargo.country", "pk": 102}, {"fields": {"country": "IN"}, "model": "embargo.country", "pk": 103}, {"fields": {"country": "ID"}, "model": "embargo.country", "pk": 104}, {"fields": {"country": "IR"}, "model": "embargo.country", "pk": 105}, {"fields": {"country": "IQ"}, "model": "embargo.country", "pk": 106}, {"fields": {"country": "IE"}, "model": "embargo.country", "pk": 107}, {"fields": {"country": "IM"}, "model": "embargo.country", "pk": 108}, {"fields": {"country": "IL"}, "model": "embargo.country", "pk": 109}, {"fields": {"country": "IT"}, "model": "embargo.country", "pk": 110}, {"fields": {"country": "JM"}, "model": "embargo.country", "pk": 111}, {"fields": {"country": "JP"}, "model": "embargo.country", "pk": 112}, {"fields": {"country": "JE"}, "model": "embargo.country", "pk": 113}, {"fields": {"country": "JO"}, "model": "embargo.country", "pk": 114}, {"fields": {"country": "KZ"}, "model": "embargo.country", "pk": 115}, {"fields": {"country": "KE"}, "model": "embargo.country", "pk": 116}, {"fields": {"country": "KI"}, "model": "embargo.country", "pk": 117}, {"fields": {"country": "XK"}, "model": "embargo.country", "pk": 118}, {"fields": {"country": "KW"}, "model": "embargo.country", "pk": 119}, {"fields": {"country": "KG"}, "model": "embargo.country", "pk": 120}, {"fields": {"country": "LA"}, "model": "embargo.country", "pk": 121}, {"fields": {"country": "LV"}, "model": "embargo.country", "pk": 122}, {"fields": {"country": "LB"}, "model": "embargo.country", "pk": 123}, {"fields": {"country": "LS"}, "model": "embargo.country", "pk": 124}, {"fields": {"country": "LR"}, "model": "embargo.country", "pk": 125}, {"fields": {"country": "LY"}, "model": "embargo.country", "pk": 126}, {"fields": {"country": "LI"}, "model": "embargo.country", "pk": 127}, {"fields": {"country": "LT"}, "model": "embargo.country", "pk": 128}, {"fields": {"country": "LU"}, "model": "embargo.country", "pk": 129}, {"fields": {"country": "MO"}, "model": "embargo.country", "pk": 130}, {"fields": {"country": "MK"}, "model": "embargo.country", "pk": 131}, {"fields": {"country": "MG"}, "model": "embargo.country", "pk": 132}, {"fields": {"country": "MW"}, "model": "embargo.country", "pk": 133}, {"fields": {"country": "MY"}, "model": "embargo.country", "pk": 134}, {"fields": {"country": "MV"}, "model": "embargo.country", "pk": 135}, {"fields": {"country": "ML"}, "model": "embargo.country", "pk": 136}, {"fields": {"country": "MT"}, "model": "embargo.country", "pk": 137}, {"fields": {"country": "MH"}, "model": "embargo.country", "pk": 138}, {"fields": {"country": "MQ"}, "model": "embargo.country", "pk": 139}, {"fields": {"country": "MR"}, "model": "embargo.country", "pk": 140}, {"fields": {"country": "MU"}, "model": "embargo.country", "pk": 141}, {"fields": {"country": "YT"}, "model": "embargo.country", "pk": 142}, {"fields": {"country": "MX"}, "model": "embargo.country", "pk": 143}, {"fields": {"country": "FM"}, "model": "embargo.country", "pk": 144}, {"fields": {"country": "MD"}, "model": "embargo.country", "pk": 145}, {"fields": {"country": "MC"}, "model": "embargo.country", "pk": 146}, {"fields": {"country": "MN"}, "model": "embargo.country", "pk": 147}, {"fields": {"country": "ME"}, "model": "embargo.country", "pk": 148}, {"fields": {"country": "MS"}, "model": "embargo.country", "pk": 149}, {"fields": {"country": "MA"}, "model": "embargo.country", "pk": 150}, {"fields": {"country": "MZ"}, "model": "embargo.country", "pk": 151}, {"fields": {"country": "MM"}, "model": "embargo.country", "pk": 152}, {"fields": {"country": "NA"}, "model": "embargo.country", "pk": 153}, {"fields": {"country": "NR"}, "model": "embargo.country", "pk": 154}, {"fields": {"country": "NP"}, "model": "embargo.country", "pk": 155}, {"fields": {"country": "NL"}, "model": "embargo.country", "pk": 156}, {"fields": {"country": "NC"}, "model": "embargo.country", "pk": 157}, {"fields": {"country": "NZ"}, "model": "embargo.country", "pk": 158}, {"fields": {"country": "NI"}, "model": "embargo.country", "pk": 159}, {"fields": {"country": "NE"}, "model": "embargo.country", "pk": 160}, {"fields": {"country": "NG"}, "model": "embargo.country", "pk": 161}, {"fields": {"country": "NU"}, "model": "embargo.country", "pk": 162}, {"fields": {"country": "NF"}, "model": "embargo.country", "pk": 163}, {"fields": {"country": "KP"}, "model": "embargo.country", "pk": 164}, {"fields": {"country": "MP"}, "model": "embargo.country", "pk": 165}, {"fields": {"country": "NO"}, "model": "embargo.country", "pk": 166}, {"fields": {"country": "OM"}, "model": "embargo.country", "pk": 167}, {"fields": {"country": "PK"}, "model": "embargo.country", "pk": 168}, {"fields": {"country": "PW"}, "model": "embargo.country", "pk": 169}, {"fields": {"country": "PS"}, "model": "embargo.country", "pk": 170}, {"fields": {"country": "PA"}, "model": "embargo.country", "pk": 171}, {"fields": {"country": "PG"}, "model": "embargo.country", "pk": 172}, {"fields": {"country": "PY"}, "model": "embargo.country", "pk": 173}, {"fields": {"country": "PE"}, "model": "embargo.country", "pk": 174}, {"fields": {"country": "PH"}, "model": "embargo.country", "pk": 175}, {"fields": {"country": "PN"}, "model": "embargo.country", "pk": 176}, {"fields": {"country": "PL"}, "model": "embargo.country", "pk": 177}, {"fields": {"country": "PT"}, "model": "embargo.country", "pk": 178}, {"fields": {"country": "PR"}, "model": "embargo.country", "pk": 179}, {"fields": {"country": "QA"}, "model": "embargo.country", "pk": 180}, {"fields": {"country": "RE"}, "model": "embargo.country", "pk": 181}, {"fields": {"country": "RO"}, "model": "embargo.country", "pk": 182}, {"fields": {"country": "RU"}, "model": "embargo.country", "pk": 183}, {"fields": {"country": "RW"}, "model": "embargo.country", "pk": 184}, {"fields": {"country": "BL"}, "model": "embargo.country", "pk": 185}, {"fields": {"country": "SH"}, "model": "embargo.country", "pk": 186}, {"fields": {"country": "KN"}, "model": "embargo.country", "pk": 187}, {"fields": {"country": "LC"}, "model": "embargo.country", "pk": 188}, {"fields": {"country": "MF"}, "model": "embargo.country", "pk": 189}, {"fields": {"country": "PM"}, "model": "embargo.country", "pk": 190}, {"fields": {"country": "VC"}, "model": "embargo.country", "pk": 191}, {"fields": {"country": "WS"}, "model": "embargo.country", "pk": 192}, {"fields": {"country": "SM"}, "model": "embargo.country", "pk": 193}, {"fields": {"country": "ST"}, "model": "embargo.country", "pk": 194}, {"fields": {"country": "SA"}, "model": "embargo.country", "pk": 195}, {"fields": {"country": "SN"}, "model": "embargo.country", "pk": 196}, {"fields": {"country": "RS"}, "model": "embargo.country", "pk": 197}, {"fields": {"country": "SC"}, "model": "embargo.country", "pk": 198}, {"fields": {"country": "SL"}, "model": "embargo.country", "pk": 199}, {"fields": {"country": "SG"}, "model": "embargo.country", "pk": 200}, {"fields": {"country": "SX"}, "model": "embargo.country", "pk": 201}, {"fields": {"country": "SK"}, "model": "embargo.country", "pk": 202}, {"fields": {"country": "SI"}, "model": "embargo.country", "pk": 203}, {"fields": {"country": "SB"}, "model": "embargo.country", "pk": 204}, {"fields": {"country": "SO"}, "model": "embargo.country", "pk": 205}, {"fields": {"country": "ZA"}, "model": "embargo.country", "pk": 206}, {"fields": {"country": "GS"}, "model": "embargo.country", "pk": 207}, {"fields": {"country": "KR"}, "model": "embargo.country", "pk": 208}, {"fields": {"country": "SS"}, "model": "embargo.country", "pk": 209}, {"fields": {"country": "ES"}, "model": "embargo.country", "pk": 210}, {"fields": {"country": "LK"}, "model": "embargo.country", "pk": 211}, {"fields": {"country": "SD"}, "model": "embargo.country", "pk": 212}, {"fields": {"country": "SR"}, "model": "embargo.country", "pk": 213}, {"fields": {"country": "SJ"}, "model": "embargo.country", "pk": 214}, {"fields": {"country": "SZ"}, "model": "embargo.country", "pk": 215}, {"fields": {"country": "SE"}, "model": "embargo.country", "pk": 216}, {"fields": {"country": "CH"}, "model": "embargo.country", "pk": 217}, {"fields": {"country": "SY"}, "model": "embargo.country", "pk": 218}, {"fields": {"country": "TW"}, "model": "embargo.country", "pk": 219}, {"fields": {"country": "TJ"}, "model": "embargo.country", "pk": 220}, {"fields": {"country": "TZ"}, "model": "embargo.country", "pk": 221}, {"fields": {"country": "TH"}, "model": "embargo.country", "pk": 222}, {"fields": {"country": "TL"}, "model": "embargo.country", "pk": 223}, {"fields": {"country": "TG"}, "model": "embargo.country", "pk": 224}, {"fields": {"country": "TK"}, "model": "embargo.country", "pk": 225}, {"fields": {"country": "TO"}, "model": "embargo.country", "pk": 226}, {"fields": {"country": "TT"}, "model": "embargo.country", "pk": 227}, {"fields": {"country": "TN"}, "model": "embargo.country", "pk": 228}, {"fields": {"country": "TR"}, "model": "embargo.country", "pk": 229}, {"fields": {"country": "TM"}, "model": "embargo.country", "pk": 230}, {"fields": {"country": "TC"}, "model": "embargo.country", "pk": 231}, {"fields": {"country": "TV"}, "model": "embargo.country", "pk": 232}, {"fields": {"country": "UG"}, "model": "embargo.country", "pk": 233}, {"fields": {"country": "UA"}, "model": "embargo.country", "pk": 234}, {"fields": {"country": "AE"}, "model": "embargo.country", "pk": 235}, {"fields": {"country": "GB"}, "model": "embargo.country", "pk": 236}, {"fields": {"country": "UM"}, "model": "embargo.country", "pk": 237}, {"fields": {"country": "US"}, "model": "embargo.country", "pk": 238}, {"fields": {"country": "UY"}, "model": "embargo.country", "pk": 239}, {"fields": {"country": "UZ"}, "model": "embargo.country", "pk": 240}, {"fields": {"country": "VU"}, "model": "embargo.country", "pk": 241}, {"fields": {"country": "VE"}, "model": "embargo.country", "pk": 242}, {"fields": {"country": "VN"}, "model": "embargo.country", "pk": 243}, {"fields": {"country": "VG"}, "model": "embargo.country", "pk": 244}, {"fields": {"country": "VI"}, "model": "embargo.country", "pk": 245}, {"fields": {"country": "WF"}, "model": "embargo.country", "pk": 246}, {"fields": {"country": "EH"}, "model": "embargo.country", "pk": 247}, {"fields": {"country": "YE"}, "model": "embargo.country", "pk": 248}, {"fields": {"country": "ZM"}, "model": "embargo.country", "pk": 249}, {"fields": {"country": "ZW"}, "model": "embargo.country", "pk": 250}, {"fields": {"active": true, "description": "Autogenerated milestone relationship type \"fulfills\"", "modified": "2016-07-26T19:14:49.426Z", "name": "fulfills", "created": "2016-07-26T19:14:49.426Z"}, "model": "milestones.milestonerelationshiptype", "pk": 1}, {"fields": {"active": true, "description": "Autogenerated milestone relationship type \"requires\"", "modified": "2016-07-26T19:14:49.430Z", "name": "requires", "created": "2016-07-26T19:14:49.429Z"}, "model": "milestones.milestonerelationshiptype", "pk": 2}, {"fields": {"default": false, "mode": "honor", "icon": "badges/honor.png"}, "model": "badges.coursecompleteimageconfiguration", "pk": 1}, {"fields": {"default": false, "mode": "verified", "icon": "badges/verified.png"}, "model": "badges.coursecompleteimageconfiguration", "pk": 2}, {"fields": {"default": false, "mode": "professional", "icon": "badges/professional.png"}, "model": "badges.coursecompleteimageconfiguration", "pk": 3}, {"fields": {"profile_name": "desktop_mp4"}, "model": "edxval.profile", "pk": 1}, {"fields": {"profile_name": "desktop_webm"}, "model": "edxval.profile", "pk": 2}, {"fields": {"profile_name": "mobile_high"}, "model": "edxval.profile", "pk": 3}, {"fields": {"profile_name": "mobile_low"}, "model": "edxval.profile", "pk": 4}, {"fields": {"profile_name": "youtube"}, "model": "edxval.profile", "pk": 5}, {"fields": {"codename": "add_permission", "name": "Can add permission", "content_type": 2}, "model": "auth.permission", "pk": 1}, {"fields": {"codename": "change_permission", "name": "Can change permission", "content_type": 2}, "model": "auth.permission", "pk": 2}, {"fields": {"codename": "delete_permission", "name": "Can delete permission", "content_type": 2}, "model": "auth.permission", "pk": 3}, {"fields": {"codename": "add_group", "name": "Can add group", "content_type": 3}, "model": "auth.permission", "pk": 4}, {"fields": {"codename": "change_group", "name": "Can change group", "content_type": 3}, "model": "auth.permission", "pk": 5}, {"fields": {"codename": "delete_group", "name": "Can delete group", "content_type": 3}, "model": "auth.permission", "pk": 6}, {"fields": {"codename": "add_user", "name": "Can add user", "content_type": 4}, "model": "auth.permission", "pk": 7}, {"fields": {"codename": "change_user", "name": "Can change user", "content_type": 4}, "model": "auth.permission", "pk": 8}, {"fields": {"codename": "delete_user", "name": "Can delete user", "content_type": 4}, "model": "auth.permission", "pk": 9}, {"fields": {"codename": "add_contenttype", "name": "Can add content type", "content_type": 5}, "model": "auth.permission", "pk": 10}, {"fields": {"codename": "change_contenttype", "name": "Can change content type", "content_type": 5}, "model": "auth.permission", "pk": 11}, {"fields": {"codename": "delete_contenttype", "name": "Can delete content type", "content_type": 5}, "model": "auth.permission", "pk": 12}, {"fields": {"codename": "add_redirect", "name": "Can add redirect", "content_type": 6}, "model": "auth.permission", "pk": 13}, {"fields": {"codename": "change_redirect", "name": "Can change redirect", "content_type": 6}, "model": "auth.permission", "pk": 14}, {"fields": {"codename": "delete_redirect", "name": "Can delete redirect", "content_type": 6}, "model": "auth.permission", "pk": 15}, {"fields": {"codename": "add_session", "name": "Can add session", "content_type": 7}, "model": "auth.permission", "pk": 16}, {"fields": {"codename": "change_session", "name": "Can change session", "content_type": 7}, "model": "auth.permission", "pk": 17}, {"fields": {"codename": "delete_session", "name": "Can delete session", "content_type": 7}, "model": "auth.permission", "pk": 18}, {"fields": {"codename": "add_site", "name": "Can add site", "content_type": 8}, "model": "auth.permission", "pk": 19}, {"fields": {"codename": "change_site", "name": "Can change site", "content_type": 8}, "model": "auth.permission", "pk": 20}, {"fields": {"codename": "delete_site", "name": "Can delete site", "content_type": 8}, "model": "auth.permission", "pk": 21}, {"fields": {"codename": "add_taskmeta", "name": "Can add task state", "content_type": 9}, "model": "auth.permission", "pk": 22}, {"fields": {"codename": "change_taskmeta", "name": "Can change task state", "content_type": 9}, "model": "auth.permission", "pk": 23}, {"fields": {"codename": "delete_taskmeta", "name": "Can delete task state", "content_type": 9}, "model": "auth.permission", "pk": 24}, {"fields": {"codename": "add_tasksetmeta", "name": "Can add saved group result", "content_type": 10}, "model": "auth.permission", "pk": 25}, {"fields": {"codename": "change_tasksetmeta", "name": "Can change saved group result", "content_type": 10}, "model": "auth.permission", "pk": 26}, {"fields": {"codename": "delete_tasksetmeta", "name": "Can delete saved group result", "content_type": 10}, "model": "auth.permission", "pk": 27}, {"fields": {"codename": "add_intervalschedule", "name": "Can add interval", "content_type": 11}, "model": "auth.permission", "pk": 28}, {"fields": {"codename": "change_intervalschedule", "name": "Can change interval", "content_type": 11}, "model": "auth.permission", "pk": 29}, {"fields": {"codename": "delete_intervalschedule", "name": "Can delete interval", "content_type": 11}, "model": "auth.permission", "pk": 30}, {"fields": {"codename": "add_crontabschedule", "name": "Can add crontab", "content_type": 12}, "model": "auth.permission", "pk": 31}, {"fields": {"codename": "change_crontabschedule", "name": "Can change crontab", "content_type": 12}, "model": "auth.permission", "pk": 32}, {"fields": {"codename": "delete_crontabschedule", "name": "Can delete crontab", "content_type": 12}, "model": "auth.permission", "pk": 33}, {"fields": {"codename": "add_periodictasks", "name": "Can add periodic tasks", "content_type": 13}, "model": "auth.permission", "pk": 34}, {"fields": {"codename": "change_periodictasks", "name": "Can change periodic tasks", "content_type": 13}, "model": "auth.permission", "pk": 35}, {"fields": {"codename": "delete_periodictasks", "name": "Can delete periodic tasks", "content_type": 13}, "model": "auth.permission", "pk": 36}, {"fields": {"codename": "add_periodictask", "name": "Can add periodic task", "content_type": 14}, "model": "auth.permission", "pk": 37}, {"fields": {"codename": "change_periodictask", "name": "Can change periodic task", "content_type": 14}, "model": "auth.permission", "pk": 38}, {"fields": {"codename": "delete_periodictask", "name": "Can delete periodic task", "content_type": 14}, "model": "auth.permission", "pk": 39}, {"fields": {"codename": "add_workerstate", "name": "Can add worker", "content_type": 15}, "model": "auth.permission", "pk": 40}, {"fields": {"codename": "change_workerstate", "name": "Can change worker", "content_type": 15}, "model": "auth.permission", "pk": 41}, {"fields": {"codename": "delete_workerstate", "name": "Can delete worker", "content_type": 15}, "model": "auth.permission", "pk": 42}, {"fields": {"codename": "add_taskstate", "name": "Can add task", "content_type": 16}, "model": "auth.permission", "pk": 43}, {"fields": {"codename": "change_taskstate", "name": "Can change task", "content_type": 16}, "model": "auth.permission", "pk": 44}, {"fields": {"codename": "delete_taskstate", "name": "Can delete task", "content_type": 16}, "model": "auth.permission", "pk": 45}, {"fields": {"codename": "add_globalstatusmessage", "name": "Can add global status message", "content_type": 17}, "model": "auth.permission", "pk": 46}, {"fields": {"codename": "change_globalstatusmessage", "name": "Can change global status message", "content_type": 17}, "model": "auth.permission", "pk": 47}, {"fields": {"codename": "delete_globalstatusmessage", "name": "Can delete global status message", "content_type": 17}, "model": "auth.permission", "pk": 48}, {"fields": {"codename": "add_coursemessage", "name": "Can add course message", "content_type": 18}, "model": "auth.permission", "pk": 49}, {"fields": {"codename": "change_coursemessage", "name": "Can change course message", "content_type": 18}, "model": "auth.permission", "pk": 50}, {"fields": {"codename": "delete_coursemessage", "name": "Can delete course message", "content_type": 18}, "model": "auth.permission", "pk": 51}, {"fields": {"codename": "add_assetbaseurlconfig", "name": "Can add asset base url config", "content_type": 19}, "model": "auth.permission", "pk": 52}, {"fields": {"codename": "change_assetbaseurlconfig", "name": "Can change asset base url config", "content_type": 19}, "model": "auth.permission", "pk": 53}, {"fields": {"codename": "delete_assetbaseurlconfig", "name": "Can delete asset base url config", "content_type": 19}, "model": "auth.permission", "pk": 54}, {"fields": {"codename": "add_assetexcludedextensionsconfig", "name": "Can add asset excluded extensions config", "content_type": 20}, "model": "auth.permission", "pk": 55}, {"fields": {"codename": "change_assetexcludedextensionsconfig", "name": "Can change asset excluded extensions config", "content_type": 20}, "model": "auth.permission", "pk": 56}, {"fields": {"codename": "delete_assetexcludedextensionsconfig", "name": "Can delete asset excluded extensions config", "content_type": 20}, "model": "auth.permission", "pk": 57}, {"fields": {"codename": "add_courseassetcachettlconfig", "name": "Can add course asset cache ttl config", "content_type": 21}, "model": "auth.permission", "pk": 58}, {"fields": {"codename": "change_courseassetcachettlconfig", "name": "Can change course asset cache ttl config", "content_type": 21}, "model": "auth.permission", "pk": 59}, {"fields": {"codename": "delete_courseassetcachettlconfig", "name": "Can delete course asset cache ttl config", "content_type": 21}, "model": "auth.permission", "pk": 60}, {"fields": {"codename": "add_cdnuseragentsconfig", "name": "Can add cdn user agents config", "content_type": 22}, "model": "auth.permission", "pk": 61}, {"fields": {"codename": "change_cdnuseragentsconfig", "name": "Can change cdn user agents config", "content_type": 22}, "model": "auth.permission", "pk": 62}, {"fields": {"codename": "delete_cdnuseragentsconfig", "name": "Can delete cdn user agents config", "content_type": 22}, "model": "auth.permission", "pk": 63}, {"fields": {"codename": "add_sitetheme", "name": "Can add site theme", "content_type": 23}, "model": "auth.permission", "pk": 64}, {"fields": {"codename": "change_sitetheme", "name": "Can change site theme", "content_type": 23}, "model": "auth.permission", "pk": 65}, {"fields": {"codename": "delete_sitetheme", "name": "Can delete site theme", "content_type": 23}, "model": "auth.permission", "pk": 66}, {"fields": {"codename": "add_siteconfiguration", "name": "Can add site configuration", "content_type": 24}, "model": "auth.permission", "pk": 67}, {"fields": {"codename": "change_siteconfiguration", "name": "Can change site configuration", "content_type": 24}, "model": "auth.permission", "pk": 68}, {"fields": {"codename": "delete_siteconfiguration", "name": "Can delete site configuration", "content_type": 24}, "model": "auth.permission", "pk": 69}, {"fields": {"codename": "add_siteconfigurationhistory", "name": "Can add site configuration history", "content_type": 25}, "model": "auth.permission", "pk": 70}, {"fields": {"codename": "change_siteconfigurationhistory", "name": "Can change site configuration history", "content_type": 25}, "model": "auth.permission", "pk": 71}, {"fields": {"codename": "delete_siteconfigurationhistory", "name": "Can delete site configuration history", "content_type": 25}, "model": "auth.permission", "pk": 72}, {"fields": {"codename": "add_studentmodule", "name": "Can add student module", "content_type": 26}, "model": "auth.permission", "pk": 73}, {"fields": {"codename": "change_studentmodule", "name": "Can change student module", "content_type": 26}, "model": "auth.permission", "pk": 74}, {"fields": {"codename": "delete_studentmodule", "name": "Can delete student module", "content_type": 26}, "model": "auth.permission", "pk": 75}, {"fields": {"codename": "add_studentmodulehistory", "name": "Can add student module history", "content_type": 27}, "model": "auth.permission", "pk": 76}, {"fields": {"codename": "change_studentmodulehistory", "name": "Can change student module history", "content_type": 27}, "model": "auth.permission", "pk": 77}, {"fields": {"codename": "delete_studentmodulehistory", "name": "Can delete student module history", "content_type": 27}, "model": "auth.permission", "pk": 78}, {"fields": {"codename": "add_xmoduleuserstatesummaryfield", "name": "Can add x module user state summary field", "content_type": 28}, "model": "auth.permission", "pk": 79}, {"fields": {"codename": "change_xmoduleuserstatesummaryfield", "name": "Can change x module user state summary field", "content_type": 28}, "model": "auth.permission", "pk": 80}, {"fields": {"codename": "delete_xmoduleuserstatesummaryfield", "name": "Can delete x module user state summary field", "content_type": 28}, "model": "auth.permission", "pk": 81}, {"fields": {"codename": "add_xmodulestudentprefsfield", "name": "Can add x module student prefs field", "content_type": 29}, "model": "auth.permission", "pk": 82}, {"fields": {"codename": "change_xmodulestudentprefsfield", "name": "Can change x module student prefs field", "content_type": 29}, "model": "auth.permission", "pk": 83}, {"fields": {"codename": "delete_xmodulestudentprefsfield", "name": "Can delete x module student prefs field", "content_type": 29}, "model": "auth.permission", "pk": 84}, {"fields": {"codename": "add_xmodulestudentinfofield", "name": "Can add x module student info field", "content_type": 30}, "model": "auth.permission", "pk": 85}, {"fields": {"codename": "change_xmodulestudentinfofield", "name": "Can change x module student info field", "content_type": 30}, "model": "auth.permission", "pk": 86}, {"fields": {"codename": "delete_xmodulestudentinfofield", "name": "Can delete x module student info field", "content_type": 30}, "model": "auth.permission", "pk": 87}, {"fields": {"codename": "add_offlinecomputedgrade", "name": "Can add offline computed grade", "content_type": 31}, "model": "auth.permission", "pk": 88}, {"fields": {"codename": "change_offlinecomputedgrade", "name": "Can change offline computed grade", "content_type": 31}, "model": "auth.permission", "pk": 89}, {"fields": {"codename": "delete_offlinecomputedgrade", "name": "Can delete offline computed grade", "content_type": 31}, "model": "auth.permission", "pk": 90}, {"fields": {"codename": "add_offlinecomputedgradelog", "name": "Can add offline computed grade log", "content_type": 32}, "model": "auth.permission", "pk": 91}, {"fields": {"codename": "change_offlinecomputedgradelog", "name": "Can change offline computed grade log", "content_type": 32}, "model": "auth.permission", "pk": 92}, {"fields": {"codename": "delete_offlinecomputedgradelog", "name": "Can delete offline computed grade log", "content_type": 32}, "model": "auth.permission", "pk": 93}, {"fields": {"codename": "add_studentfieldoverride", "name": "Can add student field override", "content_type": 33}, "model": "auth.permission", "pk": 94}, {"fields": {"codename": "change_studentfieldoverride", "name": "Can change student field override", "content_type": 33}, "model": "auth.permission", "pk": 95}, {"fields": {"codename": "delete_studentfieldoverride", "name": "Can delete student field override", "content_type": 33}, "model": "auth.permission", "pk": 96}, {"fields": {"codename": "add_anonymoususerid", "name": "Can add anonymous user id", "content_type": 34}, "model": "auth.permission", "pk": 97}, {"fields": {"codename": "change_anonymoususerid", "name": "Can change anonymous user id", "content_type": 34}, "model": "auth.permission", "pk": 98}, {"fields": {"codename": "delete_anonymoususerid", "name": "Can delete anonymous user id", "content_type": 34}, "model": "auth.permission", "pk": 99}, {"fields": {"codename": "add_userstanding", "name": "Can add user standing", "content_type": 35}, "model": "auth.permission", "pk": 100}, {"fields": {"codename": "change_userstanding", "name": "Can change user standing", "content_type": 35}, "model": "auth.permission", "pk": 101}, {"fields": {"codename": "delete_userstanding", "name": "Can delete user standing", "content_type": 35}, "model": "auth.permission", "pk": 102}, {"fields": {"codename": "add_userprofile", "name": "Can add user profile", "content_type": 36}, "model": "auth.permission", "pk": 103}, {"fields": {"codename": "change_userprofile", "name": "Can change user profile", "content_type": 36}, "model": "auth.permission", "pk": 104}, {"fields": {"codename": "delete_userprofile", "name": "Can delete user profile", "content_type": 36}, "model": "auth.permission", "pk": 105}, {"fields": {"codename": "add_usersignupsource", "name": "Can add user signup source", "content_type": 37}, "model": "auth.permission", "pk": 106}, {"fields": {"codename": "change_usersignupsource", "name": "Can change user signup source", "content_type": 37}, "model": "auth.permission", "pk": 107}, {"fields": {"codename": "delete_usersignupsource", "name": "Can delete user signup source", "content_type": 37}, "model": "auth.permission", "pk": 108}, {"fields": {"codename": "add_usertestgroup", "name": "Can add user test group", "content_type": 38}, "model": "auth.permission", "pk": 109}, {"fields": {"codename": "change_usertestgroup", "name": "Can change user test group", "content_type": 38}, "model": "auth.permission", "pk": 110}, {"fields": {"codename": "delete_usertestgroup", "name": "Can delete user test group", "content_type": 38}, "model": "auth.permission", "pk": 111}, {"fields": {"codename": "add_registration", "name": "Can add registration", "content_type": 39}, "model": "auth.permission", "pk": 112}, {"fields": {"codename": "change_registration", "name": "Can change registration", "content_type": 39}, "model": "auth.permission", "pk": 113}, {"fields": {"codename": "delete_registration", "name": "Can delete registration", "content_type": 39}, "model": "auth.permission", "pk": 114}, {"fields": {"codename": "add_pendingnamechange", "name": "Can add pending name change", "content_type": 40}, "model": "auth.permission", "pk": 115}, {"fields": {"codename": "change_pendingnamechange", "name": "Can change pending name change", "content_type": 40}, "model": "auth.permission", "pk": 116}, {"fields": {"codename": "delete_pendingnamechange", "name": "Can delete pending name change", "content_type": 40}, "model": "auth.permission", "pk": 117}, {"fields": {"codename": "add_pendingemailchange", "name": "Can add pending email change", "content_type": 41}, "model": "auth.permission", "pk": 118}, {"fields": {"codename": "change_pendingemailchange", "name": "Can change pending email change", "content_type": 41}, "model": "auth.permission", "pk": 119}, {"fields": {"codename": "delete_pendingemailchange", "name": "Can delete pending email change", "content_type": 41}, "model": "auth.permission", "pk": 120}, {"fields": {"codename": "add_passwordhistory", "name": "Can add password history", "content_type": 42}, "model": "auth.permission", "pk": 121}, {"fields": {"codename": "change_passwordhistory", "name": "Can change password history", "content_type": 42}, "model": "auth.permission", "pk": 122}, {"fields": {"codename": "delete_passwordhistory", "name": "Can delete password history", "content_type": 42}, "model": "auth.permission", "pk": 123}, {"fields": {"codename": "add_loginfailures", "name": "Can add login failures", "content_type": 43}, "model": "auth.permission", "pk": 124}, {"fields": {"codename": "change_loginfailures", "name": "Can change login failures", "content_type": 43}, "model": "auth.permission", "pk": 125}, {"fields": {"codename": "delete_loginfailures", "name": "Can delete login failures", "content_type": 43}, "model": "auth.permission", "pk": 126}, {"fields": {"codename": "add_historicalcourseenrollment", "name": "Can add historical course enrollment", "content_type": 44}, "model": "auth.permission", "pk": 127}, {"fields": {"codename": "change_historicalcourseenrollment", "name": "Can change historical course enrollment", "content_type": 44}, "model": "auth.permission", "pk": 128}, {"fields": {"codename": "delete_historicalcourseenrollment", "name": "Can delete historical course enrollment", "content_type": 44}, "model": "auth.permission", "pk": 129}, {"fields": {"codename": "add_courseenrollment", "name": "Can add course enrollment", "content_type": 45}, "model": "auth.permission", "pk": 130}, {"fields": {"codename": "change_courseenrollment", "name": "Can change course enrollment", "content_type": 45}, "model": "auth.permission", "pk": 131}, {"fields": {"codename": "delete_courseenrollment", "name": "Can delete course enrollment", "content_type": 45}, "model": "auth.permission", "pk": 132}, {"fields": {"codename": "add_manualenrollmentaudit", "name": "Can add manual enrollment audit", "content_type": 46}, "model": "auth.permission", "pk": 133}, {"fields": {"codename": "change_manualenrollmentaudit", "name": "Can change manual enrollment audit", "content_type": 46}, "model": "auth.permission", "pk": 134}, {"fields": {"codename": "delete_manualenrollmentaudit", "name": "Can delete manual enrollment audit", "content_type": 46}, "model": "auth.permission", "pk": 135}, {"fields": {"codename": "add_courseenrollmentallowed", "name": "Can add course enrollment allowed", "content_type": 47}, "model": "auth.permission", "pk": 136}, {"fields": {"codename": "change_courseenrollmentallowed", "name": "Can change course enrollment allowed", "content_type": 47}, "model": "auth.permission", "pk": 137}, {"fields": {"codename": "delete_courseenrollmentallowed", "name": "Can delete course enrollment allowed", "content_type": 47}, "model": "auth.permission", "pk": 138}, {"fields": {"codename": "add_courseaccessrole", "name": "Can add course access role", "content_type": 48}, "model": "auth.permission", "pk": 139}, {"fields": {"codename": "change_courseaccessrole", "name": "Can change course access role", "content_type": 48}, "model": "auth.permission", "pk": 140}, {"fields": {"codename": "delete_courseaccessrole", "name": "Can delete course access role", "content_type": 48}, "model": "auth.permission", "pk": 141}, {"fields": {"codename": "add_dashboardconfiguration", "name": "Can add dashboard configuration", "content_type": 49}, "model": "auth.permission", "pk": 142}, {"fields": {"codename": "change_dashboardconfiguration", "name": "Can change dashboard configuration", "content_type": 49}, "model": "auth.permission", "pk": 143}, {"fields": {"codename": "delete_dashboardconfiguration", "name": "Can delete dashboard configuration", "content_type": 49}, "model": "auth.permission", "pk": 144}, {"fields": {"codename": "add_linkedinaddtoprofileconfiguration", "name": "Can add linked in add to profile configuration", "content_type": 50}, "model": "auth.permission", "pk": 145}, {"fields": {"codename": "change_linkedinaddtoprofileconfiguration", "name": "Can change linked in add to profile configuration", "content_type": 50}, "model": "auth.permission", "pk": 146}, {"fields": {"codename": "delete_linkedinaddtoprofileconfiguration", "name": "Can delete linked in add to profile configuration", "content_type": 50}, "model": "auth.permission", "pk": 147}, {"fields": {"codename": "add_entranceexamconfiguration", "name": "Can add entrance exam configuration", "content_type": 51}, "model": "auth.permission", "pk": 148}, {"fields": {"codename": "change_entranceexamconfiguration", "name": "Can change entrance exam configuration", "content_type": 51}, "model": "auth.permission", "pk": 149}, {"fields": {"codename": "delete_entranceexamconfiguration", "name": "Can delete entrance exam configuration", "content_type": 51}, "model": "auth.permission", "pk": 150}, {"fields": {"codename": "add_languageproficiency", "name": "Can add language proficiency", "content_type": 52}, "model": "auth.permission", "pk": 151}, {"fields": {"codename": "change_languageproficiency", "name": "Can change language proficiency", "content_type": 52}, "model": "auth.permission", "pk": 152}, {"fields": {"codename": "delete_languageproficiency", "name": "Can delete language proficiency", "content_type": 52}, "model": "auth.permission", "pk": 153}, {"fields": {"codename": "add_courseenrollmentattribute", "name": "Can add course enrollment attribute", "content_type": 53}, "model": "auth.permission", "pk": 154}, {"fields": {"codename": "change_courseenrollmentattribute", "name": "Can change course enrollment attribute", "content_type": 53}, "model": "auth.permission", "pk": 155}, {"fields": {"codename": "delete_courseenrollmentattribute", "name": "Can delete course enrollment attribute", "content_type": 53}, "model": "auth.permission", "pk": 156}, {"fields": {"codename": "add_enrollmentrefundconfiguration", "name": "Can add enrollment refund configuration", "content_type": 54}, "model": "auth.permission", "pk": 157}, {"fields": {"codename": "change_enrollmentrefundconfiguration", "name": "Can change enrollment refund configuration", "content_type": 54}, "model": "auth.permission", "pk": 158}, {"fields": {"codename": "delete_enrollmentrefundconfiguration", "name": "Can delete enrollment refund configuration", "content_type": 54}, "model": "auth.permission", "pk": 159}, {"fields": {"codename": "add_userattribute", "name": "Can add user attribute", "content_type": 55}, "model": "auth.permission", "pk": 160}, {"fields": {"codename": "change_userattribute", "name": "Can change user attribute", "content_type": 55}, "model": "auth.permission", "pk": 161}, {"fields": {"codename": "delete_userattribute", "name": "Can delete user attribute", "content_type": 55}, "model": "auth.permission", "pk": 162}, {"fields": {"codename": "add_logoutviewconfiguration", "name": "Can add logout view configuration", "content_type": 56}, "model": "auth.permission", "pk": 163}, {"fields": {"codename": "change_logoutviewconfiguration", "name": "Can change logout view configuration", "content_type": 56}, "model": "auth.permission", "pk": 164}, {"fields": {"codename": "delete_logoutviewconfiguration", "name": "Can delete logout view configuration", "content_type": 56}, "model": "auth.permission", "pk": 165}, {"fields": {"codename": "add_trackinglog", "name": "Can add tracking log", "content_type": 57}, "model": "auth.permission", "pk": 166}, {"fields": {"codename": "change_trackinglog", "name": "Can change tracking log", "content_type": 57}, "model": "auth.permission", "pk": 167}, {"fields": {"codename": "delete_trackinglog", "name": "Can delete tracking log", "content_type": 57}, "model": "auth.permission", "pk": 168}, {"fields": {"codename": "add_ratelimitconfiguration", "name": "Can add rate limit configuration", "content_type": 58}, "model": "auth.permission", "pk": 169}, {"fields": {"codename": "change_ratelimitconfiguration", "name": "Can change rate limit configuration", "content_type": 58}, "model": "auth.permission", "pk": 170}, {"fields": {"codename": "delete_ratelimitconfiguration", "name": "Can delete rate limit configuration", "content_type": 58}, "model": "auth.permission", "pk": 171}, {"fields": {"codename": "add_certificatewhitelist", "name": "Can add certificate whitelist", "content_type": 59}, "model": "auth.permission", "pk": 172}, {"fields": {"codename": "change_certificatewhitelist", "name": "Can change certificate whitelist", "content_type": 59}, "model": "auth.permission", "pk": 173}, {"fields": {"codename": "delete_certificatewhitelist", "name": "Can delete certificate whitelist", "content_type": 59}, "model": "auth.permission", "pk": 174}, {"fields": {"codename": "add_generatedcertificate", "name": "Can add generated certificate", "content_type": 60}, "model": "auth.permission", "pk": 175}, {"fields": {"codename": "change_generatedcertificate", "name": "Can change generated certificate", "content_type": 60}, "model": "auth.permission", "pk": 176}, {"fields": {"codename": "delete_generatedcertificate", "name": "Can delete generated certificate", "content_type": 60}, "model": "auth.permission", "pk": 177}, {"fields": {"codename": "add_certificategenerationhistory", "name": "Can add certificate generation history", "content_type": 61}, "model": "auth.permission", "pk": 178}, {"fields": {"codename": "change_certificategenerationhistory", "name": "Can change certificate generation history", "content_type": 61}, "model": "auth.permission", "pk": 179}, {"fields": {"codename": "delete_certificategenerationhistory", "name": "Can delete certificate generation history", "content_type": 61}, "model": "auth.permission", "pk": 180}, {"fields": {"codename": "add_certificateinvalidation", "name": "Can add certificate invalidation", "content_type": 62}, "model": "auth.permission", "pk": 181}, {"fields": {"codename": "change_certificateinvalidation", "name": "Can change certificate invalidation", "content_type": 62}, "model": "auth.permission", "pk": 182}, {"fields": {"codename": "delete_certificateinvalidation", "name": "Can delete certificate invalidation", "content_type": 62}, "model": "auth.permission", "pk": 183}, {"fields": {"codename": "add_examplecertificateset", "name": "Can add example certificate set", "content_type": 63}, "model": "auth.permission", "pk": 184}, {"fields": {"codename": "change_examplecertificateset", "name": "Can change example certificate set", "content_type": 63}, "model": "auth.permission", "pk": 185}, {"fields": {"codename": "delete_examplecertificateset", "name": "Can delete example certificate set", "content_type": 63}, "model": "auth.permission", "pk": 186}, {"fields": {"codename": "add_examplecertificate", "name": "Can add example certificate", "content_type": 64}, "model": "auth.permission", "pk": 187}, {"fields": {"codename": "change_examplecertificate", "name": "Can change example certificate", "content_type": 64}, "model": "auth.permission", "pk": 188}, {"fields": {"codename": "delete_examplecertificate", "name": "Can delete example certificate", "content_type": 64}, "model": "auth.permission", "pk": 189}, {"fields": {"codename": "add_certificategenerationcoursesetting", "name": "Can add certificate generation course setting", "content_type": 65}, "model": "auth.permission", "pk": 190}, {"fields": {"codename": "change_certificategenerationcoursesetting", "name": "Can change certificate generation course setting", "content_type": 65}, "model": "auth.permission", "pk": 191}, {"fields": {"codename": "delete_certificategenerationcoursesetting", "name": "Can delete certificate generation course setting", "content_type": 65}, "model": "auth.permission", "pk": 192}, {"fields": {"codename": "add_certificategenerationconfiguration", "name": "Can add certificate generation configuration", "content_type": 66}, "model": "auth.permission", "pk": 193}, {"fields": {"codename": "change_certificategenerationconfiguration", "name": "Can change certificate generation configuration", "content_type": 66}, "model": "auth.permission", "pk": 194}, {"fields": {"codename": "delete_certificategenerationconfiguration", "name": "Can delete certificate generation configuration", "content_type": 66}, "model": "auth.permission", "pk": 195}, {"fields": {"codename": "add_certificatehtmlviewconfiguration", "name": "Can add certificate html view configuration", "content_type": 67}, "model": "auth.permission", "pk": 196}, {"fields": {"codename": "change_certificatehtmlviewconfiguration", "name": "Can change certificate html view configuration", "content_type": 67}, "model": "auth.permission", "pk": 197}, {"fields": {"codename": "delete_certificatehtmlviewconfiguration", "name": "Can delete certificate html view configuration", "content_type": 67}, "model": "auth.permission", "pk": 198}, {"fields": {"codename": "add_certificatetemplate", "name": "Can add certificate template", "content_type": 68}, "model": "auth.permission", "pk": 199}, {"fields": {"codename": "change_certificatetemplate", "name": "Can change certificate template", "content_type": 68}, "model": "auth.permission", "pk": 200}, {"fields": {"codename": "delete_certificatetemplate", "name": "Can delete certificate template", "content_type": 68}, "model": "auth.permission", "pk": 201}, {"fields": {"codename": "add_certificatetemplateasset", "name": "Can add certificate template asset", "content_type": 69}, "model": "auth.permission", "pk": 202}, {"fields": {"codename": "change_certificatetemplateasset", "name": "Can change certificate template asset", "content_type": 69}, "model": "auth.permission", "pk": 203}, {"fields": {"codename": "delete_certificatetemplateasset", "name": "Can delete certificate template asset", "content_type": 69}, "model": "auth.permission", "pk": 204}, {"fields": {"codename": "add_instructortask", "name": "Can add instructor task", "content_type": 70}, "model": "auth.permission", "pk": 205}, {"fields": {"codename": "change_instructortask", "name": "Can change instructor task", "content_type": 70}, "model": "auth.permission", "pk": 206}, {"fields": {"codename": "delete_instructortask", "name": "Can delete instructor task", "content_type": 70}, "model": "auth.permission", "pk": 207}, {"fields": {"codename": "add_courseusergroup", "name": "Can add course user group", "content_type": 71}, "model": "auth.permission", "pk": 208}, {"fields": {"codename": "change_courseusergroup", "name": "Can change course user group", "content_type": 71}, "model": "auth.permission", "pk": 209}, {"fields": {"codename": "delete_courseusergroup", "name": "Can delete course user group", "content_type": 71}, "model": "auth.permission", "pk": 210}, {"fields": {"codename": "add_cohortmembership", "name": "Can add cohort membership", "content_type": 72}, "model": "auth.permission", "pk": 211}, {"fields": {"codename": "change_cohortmembership", "name": "Can change cohort membership", "content_type": 72}, "model": "auth.permission", "pk": 212}, {"fields": {"codename": "delete_cohortmembership", "name": "Can delete cohort membership", "content_type": 72}, "model": "auth.permission", "pk": 213}, {"fields": {"codename": "add_courseusergrouppartitiongroup", "name": "Can add course user group partition group", "content_type": 73}, "model": "auth.permission", "pk": 214}, {"fields": {"codename": "change_courseusergrouppartitiongroup", "name": "Can change course user group partition group", "content_type": 73}, "model": "auth.permission", "pk": 215}, {"fields": {"codename": "delete_courseusergrouppartitiongroup", "name": "Can delete course user group partition group", "content_type": 73}, "model": "auth.permission", "pk": 216}, {"fields": {"codename": "add_coursecohortssettings", "name": "Can add course cohorts settings", "content_type": 74}, "model": "auth.permission", "pk": 217}, {"fields": {"codename": "change_coursecohortssettings", "name": "Can change course cohorts settings", "content_type": 74}, "model": "auth.permission", "pk": 218}, {"fields": {"codename": "delete_coursecohortssettings", "name": "Can delete course cohorts settings", "content_type": 74}, "model": "auth.permission", "pk": 219}, {"fields": {"codename": "add_coursecohort", "name": "Can add course cohort", "content_type": 75}, "model": "auth.permission", "pk": 220}, {"fields": {"codename": "change_coursecohort", "name": "Can change course cohort", "content_type": 75}, "model": "auth.permission", "pk": 221}, {"fields": {"codename": "delete_coursecohort", "name": "Can delete course cohort", "content_type": 75}, "model": "auth.permission", "pk": 222}, {"fields": {"codename": "add_target", "name": "Can add target", "content_type": 76}, "model": "auth.permission", "pk": 223}, {"fields": {"codename": "change_target", "name": "Can change target", "content_type": 76}, "model": "auth.permission", "pk": 224}, {"fields": {"codename": "delete_target", "name": "Can delete target", "content_type": 76}, "model": "auth.permission", "pk": 225}, {"fields": {"codename": "add_cohorttarget", "name": "Can add cohort target", "content_type": 77}, "model": "auth.permission", "pk": 226}, {"fields": {"codename": "change_cohorttarget", "name": "Can change cohort target", "content_type": 77}, "model": "auth.permission", "pk": 227}, {"fields": {"codename": "delete_cohorttarget", "name": "Can delete cohort target", "content_type": 77}, "model": "auth.permission", "pk": 228}, {"fields": {"codename": "add_courseemail", "name": "Can add course email", "content_type": 78}, "model": "auth.permission", "pk": 229}, {"fields": {"codename": "change_courseemail", "name": "Can change course email", "content_type": 78}, "model": "auth.permission", "pk": 230}, {"fields": {"codename": "delete_courseemail", "name": "Can delete course email", "content_type": 78}, "model": "auth.permission", "pk": 231}, {"fields": {"codename": "add_optout", "name": "Can add optout", "content_type": 79}, "model": "auth.permission", "pk": 232}, {"fields": {"codename": "change_optout", "name": "Can change optout", "content_type": 79}, "model": "auth.permission", "pk": 233}, {"fields": {"codename": "delete_optout", "name": "Can delete optout", "content_type": 79}, "model": "auth.permission", "pk": 234}, {"fields": {"codename": "add_courseemailtemplate", "name": "Can add course email template", "content_type": 80}, "model": "auth.permission", "pk": 235}, {"fields": {"codename": "change_courseemailtemplate", "name": "Can change course email template", "content_type": 80}, "model": "auth.permission", "pk": 236}, {"fields": {"codename": "delete_courseemailtemplate", "name": "Can delete course email template", "content_type": 80}, "model": "auth.permission", "pk": 237}, {"fields": {"codename": "add_courseauthorization", "name": "Can add course authorization", "content_type": 81}, "model": "auth.permission", "pk": 238}, {"fields": {"codename": "change_courseauthorization", "name": "Can change course authorization", "content_type": 81}, "model": "auth.permission", "pk": 239}, {"fields": {"codename": "delete_courseauthorization", "name": "Can delete course authorization", "content_type": 81}, "model": "auth.permission", "pk": 240}, {"fields": {"codename": "add_bulkemailflag", "name": "Can add bulk email flag", "content_type": 82}, "model": "auth.permission", "pk": 241}, {"fields": {"codename": "change_bulkemailflag", "name": "Can change bulk email flag", "content_type": 82}, "model": "auth.permission", "pk": 242}, {"fields": {"codename": "delete_bulkemailflag", "name": "Can delete bulk email flag", "content_type": 82}, "model": "auth.permission", "pk": 243}, {"fields": {"codename": "add_brandinginfoconfig", "name": "Can add branding info config", "content_type": 83}, "model": "auth.permission", "pk": 244}, {"fields": {"codename": "change_brandinginfoconfig", "name": "Can change branding info config", "content_type": 83}, "model": "auth.permission", "pk": 245}, {"fields": {"codename": "delete_brandinginfoconfig", "name": "Can delete branding info config", "content_type": 83}, "model": "auth.permission", "pk": 246}, {"fields": {"codename": "add_brandingapiconfig", "name": "Can add branding api config", "content_type": 84}, "model": "auth.permission", "pk": 247}, {"fields": {"codename": "change_brandingapiconfig", "name": "Can change branding api config", "content_type": 84}, "model": "auth.permission", "pk": 248}, {"fields": {"codename": "delete_brandingapiconfig", "name": "Can delete branding api config", "content_type": 84}, "model": "auth.permission", "pk": 249}, {"fields": {"codename": "add_externalauthmap", "name": "Can add external auth map", "content_type": 85}, "model": "auth.permission", "pk": 250}, {"fields": {"codename": "change_externalauthmap", "name": "Can change external auth map", "content_type": 85}, "model": "auth.permission", "pk": 251}, {"fields": {"codename": "delete_externalauthmap", "name": "Can delete external auth map", "content_type": 85}, "model": "auth.permission", "pk": 252}, {"fields": {"codename": "add_nonce", "name": "Can add nonce", "content_type": 86}, "model": "auth.permission", "pk": 253}, {"fields": {"codename": "change_nonce", "name": "Can change nonce", "content_type": 86}, "model": "auth.permission", "pk": 254}, {"fields": {"codename": "delete_nonce", "name": "Can delete nonce", "content_type": 86}, "model": "auth.permission", "pk": 255}, {"fields": {"codename": "add_association", "name": "Can add association", "content_type": 87}, "model": "auth.permission", "pk": 256}, {"fields": {"codename": "change_association", "name": "Can change association", "content_type": 87}, "model": "auth.permission", "pk": 257}, {"fields": {"codename": "delete_association", "name": "Can delete association", "content_type": 87}, "model": "auth.permission", "pk": 258}, {"fields": {"codename": "add_useropenid", "name": "Can add user open id", "content_type": 88}, "model": "auth.permission", "pk": 259}, {"fields": {"codename": "change_useropenid", "name": "Can change user open id", "content_type": 88}, "model": "auth.permission", "pk": 260}, {"fields": {"codename": "delete_useropenid", "name": "Can delete user open id", "content_type": 88}, "model": "auth.permission", "pk": 261}, {"fields": {"codename": "account_verified", "name": "The OpenID has been verified", "content_type": 88}, "model": "auth.permission", "pk": 262}, {"fields": {"codename": "add_client", "name": "Can add client", "content_type": 89}, "model": "auth.permission", "pk": 263}, {"fields": {"codename": "change_client", "name": "Can change client", "content_type": 89}, "model": "auth.permission", "pk": 264}, {"fields": {"codename": "delete_client", "name": "Can delete client", "content_type": 89}, "model": "auth.permission", "pk": 265}, {"fields": {"codename": "add_grant", "name": "Can add grant", "content_type": 90}, "model": "auth.permission", "pk": 266}, {"fields": {"codename": "change_grant", "name": "Can change grant", "content_type": 90}, "model": "auth.permission", "pk": 267}, {"fields": {"codename": "delete_grant", "name": "Can delete grant", "content_type": 90}, "model": "auth.permission", "pk": 268}, {"fields": {"codename": "add_accesstoken", "name": "Can add access token", "content_type": 91}, "model": "auth.permission", "pk": 269}, {"fields": {"codename": "change_accesstoken", "name": "Can change access token", "content_type": 91}, "model": "auth.permission", "pk": 270}, {"fields": {"codename": "delete_accesstoken", "name": "Can delete access token", "content_type": 91}, "model": "auth.permission", "pk": 271}, {"fields": {"codename": "add_refreshtoken", "name": "Can add refresh token", "content_type": 92}, "model": "auth.permission", "pk": 272}, {"fields": {"codename": "change_refreshtoken", "name": "Can change refresh token", "content_type": 92}, "model": "auth.permission", "pk": 273}, {"fields": {"codename": "delete_refreshtoken", "name": "Can delete refresh token", "content_type": 92}, "model": "auth.permission", "pk": 274}, {"fields": {"codename": "add_trustedclient", "name": "Can add trusted client", "content_type": 93}, "model": "auth.permission", "pk": 275}, {"fields": {"codename": "change_trustedclient", "name": "Can change trusted client", "content_type": 93}, "model": "auth.permission", "pk": 276}, {"fields": {"codename": "delete_trustedclient", "name": "Can delete trusted client", "content_type": 93}, "model": "auth.permission", "pk": 277}, {"fields": {"codename": "add_application", "name": "Can add application", "content_type": 94}, "model": "auth.permission", "pk": 278}, {"fields": {"codename": "change_application", "name": "Can change application", "content_type": 94}, "model": "auth.permission", "pk": 279}, {"fields": {"codename": "delete_application", "name": "Can delete application", "content_type": 94}, "model": "auth.permission", "pk": 280}, {"fields": {"codename": "add_grant", "name": "Can add grant", "content_type": 95}, "model": "auth.permission", "pk": 281}, {"fields": {"codename": "change_grant", "name": "Can change grant", "content_type": 95}, "model": "auth.permission", "pk": 282}, {"fields": {"codename": "delete_grant", "name": "Can delete grant", "content_type": 95}, "model": "auth.permission", "pk": 283}, {"fields": {"codename": "add_accesstoken", "name": "Can add access token", "content_type": 96}, "model": "auth.permission", "pk": 284}, {"fields": {"codename": "change_accesstoken", "name": "Can change access token", "content_type": 96}, "model": "auth.permission", "pk": 285}, {"fields": {"codename": "delete_accesstoken", "name": "Can delete access token", "content_type": 96}, "model": "auth.permission", "pk": 286}, {"fields": {"codename": "add_refreshtoken", "name": "Can add refresh token", "content_type": 97}, "model": "auth.permission", "pk": 287}, {"fields": {"codename": "change_refreshtoken", "name": "Can change refresh token", "content_type": 97}, "model": "auth.permission", "pk": 288}, {"fields": {"codename": "delete_refreshtoken", "name": "Can delete refresh token", "content_type": 97}, "model": "auth.permission", "pk": 289}, {"fields": {"codename": "add_oauth2providerconfig", "name": "Can add Provider Configuration (OAuth)", "content_type": 98}, "model": "auth.permission", "pk": 290}, {"fields": {"codename": "change_oauth2providerconfig", "name": "Can change Provider Configuration (OAuth)", "content_type": 98}, "model": "auth.permission", "pk": 291}, {"fields": {"codename": "delete_oauth2providerconfig", "name": "Can delete Provider Configuration (OAuth)", "content_type": 98}, "model": "auth.permission", "pk": 292}, {"fields": {"codename": "add_samlproviderconfig", "name": "Can add Provider Configuration (SAML IdP)", "content_type": 99}, "model": "auth.permission", "pk": 293}, {"fields": {"codename": "change_samlproviderconfig", "name": "Can change Provider Configuration (SAML IdP)", "content_type": 99}, "model": "auth.permission", "pk": 294}, {"fields": {"codename": "delete_samlproviderconfig", "name": "Can delete Provider Configuration (SAML IdP)", "content_type": 99}, "model": "auth.permission", "pk": 295}, {"fields": {"codename": "add_samlconfiguration", "name": "Can add SAML Configuration", "content_type": 100}, "model": "auth.permission", "pk": 296}, {"fields": {"codename": "change_samlconfiguration", "name": "Can change SAML Configuration", "content_type": 100}, "model": "auth.permission", "pk": 297}, {"fields": {"codename": "delete_samlconfiguration", "name": "Can delete SAML Configuration", "content_type": 100}, "model": "auth.permission", "pk": 298}, {"fields": {"codename": "add_samlproviderdata", "name": "Can add SAML Provider Data", "content_type": 101}, "model": "auth.permission", "pk": 299}, {"fields": {"codename": "change_samlproviderdata", "name": "Can change SAML Provider Data", "content_type": 101}, "model": "auth.permission", "pk": 300}, {"fields": {"codename": "delete_samlproviderdata", "name": "Can delete SAML Provider Data", "content_type": 101}, "model": "auth.permission", "pk": 301}, {"fields": {"codename": "add_ltiproviderconfig", "name": "Can add Provider Configuration (LTI)", "content_type": 102}, "model": "auth.permission", "pk": 302}, {"fields": {"codename": "change_ltiproviderconfig", "name": "Can change Provider Configuration (LTI)", "content_type": 102}, "model": "auth.permission", "pk": 303}, {"fields": {"codename": "delete_ltiproviderconfig", "name": "Can delete Provider Configuration (LTI)", "content_type": 102}, "model": "auth.permission", "pk": 304}, {"fields": {"codename": "add_providerapipermissions", "name": "Can add Provider API Permission", "content_type": 103}, "model": "auth.permission", "pk": 305}, {"fields": {"codename": "change_providerapipermissions", "name": "Can change Provider API Permission", "content_type": 103}, "model": "auth.permission", "pk": 306}, {"fields": {"codename": "delete_providerapipermissions", "name": "Can delete Provider API Permission", "content_type": 103}, "model": "auth.permission", "pk": 307}, {"fields": {"codename": "add_nonce", "name": "Can add nonce", "content_type": 104}, "model": "auth.permission", "pk": 308}, {"fields": {"codename": "change_nonce", "name": "Can change nonce", "content_type": 104}, "model": "auth.permission", "pk": 309}, {"fields": {"codename": "delete_nonce", "name": "Can delete nonce", "content_type": 104}, "model": "auth.permission", "pk": 310}, {"fields": {"codename": "add_scope", "name": "Can add scope", "content_type": 105}, "model": "auth.permission", "pk": 311}, {"fields": {"codename": "change_scope", "name": "Can change scope", "content_type": 105}, "model": "auth.permission", "pk": 312}, {"fields": {"codename": "delete_scope", "name": "Can delete scope", "content_type": 105}, "model": "auth.permission", "pk": 313}, {"fields": {"codename": "add_resource", "name": "Can add resource", "content_type": 105}, "model": "auth.permission", "pk": 314}, {"fields": {"codename": "change_resource", "name": "Can change resource", "content_type": 105}, "model": "auth.permission", "pk": 315}, {"fields": {"codename": "delete_resource", "name": "Can delete resource", "content_type": 105}, "model": "auth.permission", "pk": 316}, {"fields": {"codename": "add_consumer", "name": "Can add consumer", "content_type": 106}, "model": "auth.permission", "pk": 317}, {"fields": {"codename": "change_consumer", "name": "Can change consumer", "content_type": 106}, "model": "auth.permission", "pk": 318}, {"fields": {"codename": "delete_consumer", "name": "Can delete consumer", "content_type": 106}, "model": "auth.permission", "pk": 319}, {"fields": {"codename": "add_token", "name": "Can add token", "content_type": 107}, "model": "auth.permission", "pk": 320}, {"fields": {"codename": "change_token", "name": "Can change token", "content_type": 107}, "model": "auth.permission", "pk": 321}, {"fields": {"codename": "delete_token", "name": "Can delete token", "content_type": 107}, "model": "auth.permission", "pk": 322}, {"fields": {"codename": "add_article", "name": "Can add article", "content_type": 109}, "model": "auth.permission", "pk": 323}, {"fields": {"codename": "change_article", "name": "Can change article", "content_type": 109}, "model": "auth.permission", "pk": 324}, {"fields": {"codename": "delete_article", "name": "Can delete article", "content_type": 109}, "model": "auth.permission", "pk": 325}, {"fields": {"codename": "moderate", "name": "Can edit all articles and lock/unlock/restore", "content_type": 109}, "model": "auth.permission", "pk": 326}, {"fields": {"codename": "assign", "name": "Can change ownership of any article", "content_type": 109}, "model": "auth.permission", "pk": 327}, {"fields": {"codename": "grant", "name": "Can assign permissions to other users", "content_type": 109}, "model": "auth.permission", "pk": 328}, {"fields": {"codename": "add_articleforobject", "name": "Can add Article for object", "content_type": 110}, "model": "auth.permission", "pk": 329}, {"fields": {"codename": "change_articleforobject", "name": "Can change Article for object", "content_type": 110}, "model": "auth.permission", "pk": 330}, {"fields": {"codename": "delete_articleforobject", "name": "Can delete Article for object", "content_type": 110}, "model": "auth.permission", "pk": 331}, {"fields": {"codename": "add_articlerevision", "name": "Can add article revision", "content_type": 111}, "model": "auth.permission", "pk": 332}, {"fields": {"codename": "change_articlerevision", "name": "Can change article revision", "content_type": 111}, "model": "auth.permission", "pk": 333}, {"fields": {"codename": "delete_articlerevision", "name": "Can delete article revision", "content_type": 111}, "model": "auth.permission", "pk": 334}, {"fields": {"codename": "add_urlpath", "name": "Can add URL path", "content_type": 112}, "model": "auth.permission", "pk": 335}, {"fields": {"codename": "change_urlpath", "name": "Can change URL path", "content_type": 112}, "model": "auth.permission", "pk": 336}, {"fields": {"codename": "delete_urlpath", "name": "Can delete URL path", "content_type": 112}, "model": "auth.permission", "pk": 337}, {"fields": {"codename": "add_articleplugin", "name": "Can add article plugin", "content_type": 113}, "model": "auth.permission", "pk": 338}, {"fields": {"codename": "change_articleplugin", "name": "Can change article plugin", "content_type": 113}, "model": "auth.permission", "pk": 339}, {"fields": {"codename": "delete_articleplugin", "name": "Can delete article plugin", "content_type": 113}, "model": "auth.permission", "pk": 340}, {"fields": {"codename": "add_reusableplugin", "name": "Can add reusable plugin", "content_type": 114}, "model": "auth.permission", "pk": 341}, {"fields": {"codename": "change_reusableplugin", "name": "Can change reusable plugin", "content_type": 114}, "model": "auth.permission", "pk": 342}, {"fields": {"codename": "delete_reusableplugin", "name": "Can delete reusable plugin", "content_type": 114}, "model": "auth.permission", "pk": 343}, {"fields": {"codename": "add_simpleplugin", "name": "Can add simple plugin", "content_type": 115}, "model": "auth.permission", "pk": 344}, {"fields": {"codename": "change_simpleplugin", "name": "Can change simple plugin", "content_type": 115}, "model": "auth.permission", "pk": 345}, {"fields": {"codename": "delete_simpleplugin", "name": "Can delete simple plugin", "content_type": 115}, "model": "auth.permission", "pk": 346}, {"fields": {"codename": "add_revisionplugin", "name": "Can add revision plugin", "content_type": 116}, "model": "auth.permission", "pk": 347}, {"fields": {"codename": "change_revisionplugin", "name": "Can change revision plugin", "content_type": 116}, "model": "auth.permission", "pk": 348}, {"fields": {"codename": "delete_revisionplugin", "name": "Can delete revision plugin", "content_type": 116}, "model": "auth.permission", "pk": 349}, {"fields": {"codename": "add_revisionpluginrevision", "name": "Can add revision plugin revision", "content_type": 117}, "model": "auth.permission", "pk": 350}, {"fields": {"codename": "change_revisionpluginrevision", "name": "Can change revision plugin revision", "content_type": 117}, "model": "auth.permission", "pk": 351}, {"fields": {"codename": "delete_revisionpluginrevision", "name": "Can delete revision plugin revision", "content_type": 117}, "model": "auth.permission", "pk": 352}, {"fields": {"codename": "add_image", "name": "Can add image", "content_type": 118}, "model": "auth.permission", "pk": 353}, {"fields": {"codename": "change_image", "name": "Can change image", "content_type": 118}, "model": "auth.permission", "pk": 354}, {"fields": {"codename": "delete_image", "name": "Can delete image", "content_type": 118}, "model": "auth.permission", "pk": 355}, {"fields": {"codename": "add_imagerevision", "name": "Can add image revision", "content_type": 119}, "model": "auth.permission", "pk": 356}, {"fields": {"codename": "change_imagerevision", "name": "Can change image revision", "content_type": 119}, "model": "auth.permission", "pk": 357}, {"fields": {"codename": "delete_imagerevision", "name": "Can delete image revision", "content_type": 119}, "model": "auth.permission", "pk": 358}, {"fields": {"codename": "add_attachment", "name": "Can add attachment", "content_type": 120}, "model": "auth.permission", "pk": 359}, {"fields": {"codename": "change_attachment", "name": "Can change attachment", "content_type": 120}, "model": "auth.permission", "pk": 360}, {"fields": {"codename": "delete_attachment", "name": "Can delete attachment", "content_type": 120}, "model": "auth.permission", "pk": 361}, {"fields": {"codename": "add_attachmentrevision", "name": "Can add attachment revision", "content_type": 121}, "model": "auth.permission", "pk": 362}, {"fields": {"codename": "change_attachmentrevision", "name": "Can change attachment revision", "content_type": 121}, "model": "auth.permission", "pk": 363}, {"fields": {"codename": "delete_attachmentrevision", "name": "Can delete attachment revision", "content_type": 121}, "model": "auth.permission", "pk": 364}, {"fields": {"codename": "add_notificationtype", "name": "Can add type", "content_type": 122}, "model": "auth.permission", "pk": 365}, {"fields": {"codename": "change_notificationtype", "name": "Can change type", "content_type": 122}, "model": "auth.permission", "pk": 366}, {"fields": {"codename": "delete_notificationtype", "name": "Can delete type", "content_type": 122}, "model": "auth.permission", "pk": 367}, {"fields": {"codename": "add_settings", "name": "Can add settings", "content_type": 123}, "model": "auth.permission", "pk": 368}, {"fields": {"codename": "change_settings", "name": "Can change settings", "content_type": 123}, "model": "auth.permission", "pk": 369}, {"fields": {"codename": "delete_settings", "name": "Can delete settings", "content_type": 123}, "model": "auth.permission", "pk": 370}, {"fields": {"codename": "add_subscription", "name": "Can add subscription", "content_type": 124}, "model": "auth.permission", "pk": 371}, {"fields": {"codename": "change_subscription", "name": "Can change subscription", "content_type": 124}, "model": "auth.permission", "pk": 372}, {"fields": {"codename": "delete_subscription", "name": "Can delete subscription", "content_type": 124}, "model": "auth.permission", "pk": 373}, {"fields": {"codename": "add_notification", "name": "Can add notification", "content_type": 125}, "model": "auth.permission", "pk": 374}, {"fields": {"codename": "change_notification", "name": "Can change notification", "content_type": 125}, "model": "auth.permission", "pk": 375}, {"fields": {"codename": "delete_notification", "name": "Can delete notification", "content_type": 125}, "model": "auth.permission", "pk": 376}, {"fields": {"codename": "add_logentry", "name": "Can add log entry", "content_type": 126}, "model": "auth.permission", "pk": 377}, {"fields": {"codename": "change_logentry", "name": "Can change log entry", "content_type": 126}, "model": "auth.permission", "pk": 378}, {"fields": {"codename": "delete_logentry", "name": "Can delete log entry", "content_type": 126}, "model": "auth.permission", "pk": 379}, {"fields": {"codename": "add_role", "name": "Can add role", "content_type": 127}, "model": "auth.permission", "pk": 380}, {"fields": {"codename": "change_role", "name": "Can change role", "content_type": 127}, "model": "auth.permission", "pk": 381}, {"fields": {"codename": "delete_role", "name": "Can delete role", "content_type": 127}, "model": "auth.permission", "pk": 382}, {"fields": {"codename": "add_permission", "name": "Can add permission", "content_type": 128}, "model": "auth.permission", "pk": 383}, {"fields": {"codename": "change_permission", "name": "Can change permission", "content_type": 128}, "model": "auth.permission", "pk": 384}, {"fields": {"codename": "delete_permission", "name": "Can delete permission", "content_type": 128}, "model": "auth.permission", "pk": 385}, {"fields": {"codename": "add_forumsconfig", "name": "Can add forums config", "content_type": 129}, "model": "auth.permission", "pk": 386}, {"fields": {"codename": "change_forumsconfig", "name": "Can change forums config", "content_type": 129}, "model": "auth.permission", "pk": 387}, {"fields": {"codename": "delete_forumsconfig", "name": "Can delete forums config", "content_type": 129}, "model": "auth.permission", "pk": 388}, {"fields": {"codename": "add_note", "name": "Can add note", "content_type": 130}, "model": "auth.permission", "pk": 389}, {"fields": {"codename": "change_note", "name": "Can change note", "content_type": 130}, "model": "auth.permission", "pk": 390}, {"fields": {"codename": "delete_note", "name": "Can delete note", "content_type": 130}, "model": "auth.permission", "pk": 391}, {"fields": {"codename": "add_splashconfig", "name": "Can add splash config", "content_type": 131}, "model": "auth.permission", "pk": 392}, {"fields": {"codename": "change_splashconfig", "name": "Can change splash config", "content_type": 131}, "model": "auth.permission", "pk": 393}, {"fields": {"codename": "delete_splashconfig", "name": "Can delete splash config", "content_type": 131}, "model": "auth.permission", "pk": 394}, {"fields": {"codename": "add_userpreference", "name": "Can add user preference", "content_type": 132}, "model": "auth.permission", "pk": 395}, {"fields": {"codename": "change_userpreference", "name": "Can change user preference", "content_type": 132}, "model": "auth.permission", "pk": 396}, {"fields": {"codename": "delete_userpreference", "name": "Can delete user preference", "content_type": 132}, "model": "auth.permission", "pk": 397}, {"fields": {"codename": "add_usercoursetag", "name": "Can add user course tag", "content_type": 133}, "model": "auth.permission", "pk": 398}, {"fields": {"codename": "change_usercoursetag", "name": "Can change user course tag", "content_type": 133}, "model": "auth.permission", "pk": 399}, {"fields": {"codename": "delete_usercoursetag", "name": "Can delete user course tag", "content_type": 133}, "model": "auth.permission", "pk": 400}, {"fields": {"codename": "add_userorgtag", "name": "Can add user org tag", "content_type": 134}, "model": "auth.permission", "pk": 401}, {"fields": {"codename": "change_userorgtag", "name": "Can change user org tag", "content_type": 134}, "model": "auth.permission", "pk": 402}, {"fields": {"codename": "delete_userorgtag", "name": "Can delete user org tag", "content_type": 134}, "model": "auth.permission", "pk": 403}, {"fields": {"codename": "add_order", "name": "Can add order", "content_type": 135}, "model": "auth.permission", "pk": 404}, {"fields": {"codename": "change_order", "name": "Can change order", "content_type": 135}, "model": "auth.permission", "pk": 405}, {"fields": {"codename": "delete_order", "name": "Can delete order", "content_type": 135}, "model": "auth.permission", "pk": 406}, {"fields": {"codename": "add_orderitem", "name": "Can add order item", "content_type": 136}, "model": "auth.permission", "pk": 407}, {"fields": {"codename": "change_orderitem", "name": "Can change order item", "content_type": 136}, "model": "auth.permission", "pk": 408}, {"fields": {"codename": "delete_orderitem", "name": "Can delete order item", "content_type": 136}, "model": "auth.permission", "pk": 409}, {"fields": {"codename": "add_invoice", "name": "Can add invoice", "content_type": 137}, "model": "auth.permission", "pk": 410}, {"fields": {"codename": "change_invoice", "name": "Can change invoice", "content_type": 137}, "model": "auth.permission", "pk": 411}, {"fields": {"codename": "delete_invoice", "name": "Can delete invoice", "content_type": 137}, "model": "auth.permission", "pk": 412}, {"fields": {"codename": "add_invoicetransaction", "name": "Can add invoice transaction", "content_type": 138}, "model": "auth.permission", "pk": 413}, {"fields": {"codename": "change_invoicetransaction", "name": "Can change invoice transaction", "content_type": 138}, "model": "auth.permission", "pk": 414}, {"fields": {"codename": "delete_invoicetransaction", "name": "Can delete invoice transaction", "content_type": 138}, "model": "auth.permission", "pk": 415}, {"fields": {"codename": "add_invoiceitem", "name": "Can add invoice item", "content_type": 139}, "model": "auth.permission", "pk": 416}, {"fields": {"codename": "change_invoiceitem", "name": "Can change invoice item", "content_type": 139}, "model": "auth.permission", "pk": 417}, {"fields": {"codename": "delete_invoiceitem", "name": "Can delete invoice item", "content_type": 139}, "model": "auth.permission", "pk": 418}, {"fields": {"codename": "add_courseregistrationcodeinvoiceitem", "name": "Can add course registration code invoice item", "content_type": 140}, "model": "auth.permission", "pk": 419}, {"fields": {"codename": "change_courseregistrationcodeinvoiceitem", "name": "Can change course registration code invoice item", "content_type": 140}, "model": "auth.permission", "pk": 420}, {"fields": {"codename": "delete_courseregistrationcodeinvoiceitem", "name": "Can delete course registration code invoice item", "content_type": 140}, "model": "auth.permission", "pk": 421}, {"fields": {"codename": "add_invoicehistory", "name": "Can add invoice history", "content_type": 141}, "model": "auth.permission", "pk": 422}, {"fields": {"codename": "change_invoicehistory", "name": "Can change invoice history", "content_type": 141}, "model": "auth.permission", "pk": 423}, {"fields": {"codename": "delete_invoicehistory", "name": "Can delete invoice history", "content_type": 141}, "model": "auth.permission", "pk": 424}, {"fields": {"codename": "add_courseregistrationcode", "name": "Can add course registration code", "content_type": 142}, "model": "auth.permission", "pk": 425}, {"fields": {"codename": "change_courseregistrationcode", "name": "Can change course registration code", "content_type": 142}, "model": "auth.permission", "pk": 426}, {"fields": {"codename": "delete_courseregistrationcode", "name": "Can delete course registration code", "content_type": 142}, "model": "auth.permission", "pk": 427}, {"fields": {"codename": "add_registrationcoderedemption", "name": "Can add registration code redemption", "content_type": 143}, "model": "auth.permission", "pk": 428}, {"fields": {"codename": "change_registrationcoderedemption", "name": "Can change registration code redemption", "content_type": 143}, "model": "auth.permission", "pk": 429}, {"fields": {"codename": "delete_registrationcoderedemption", "name": "Can delete registration code redemption", "content_type": 143}, "model": "auth.permission", "pk": 430}, {"fields": {"codename": "add_coupon", "name": "Can add coupon", "content_type": 144}, "model": "auth.permission", "pk": 431}, {"fields": {"codename": "change_coupon", "name": "Can change coupon", "content_type": 144}, "model": "auth.permission", "pk": 432}, {"fields": {"codename": "delete_coupon", "name": "Can delete coupon", "content_type": 144}, "model": "auth.permission", "pk": 433}, {"fields": {"codename": "add_couponredemption", "name": "Can add coupon redemption", "content_type": 145}, "model": "auth.permission", "pk": 434}, {"fields": {"codename": "change_couponredemption", "name": "Can change coupon redemption", "content_type": 145}, "model": "auth.permission", "pk": 435}, {"fields": {"codename": "delete_couponredemption", "name": "Can delete coupon redemption", "content_type": 145}, "model": "auth.permission", "pk": 436}, {"fields": {"codename": "add_paidcourseregistration", "name": "Can add paid course registration", "content_type": 146}, "model": "auth.permission", "pk": 437}, {"fields": {"codename": "change_paidcourseregistration", "name": "Can change paid course registration", "content_type": 146}, "model": "auth.permission", "pk": 438}, {"fields": {"codename": "delete_paidcourseregistration", "name": "Can delete paid course registration", "content_type": 146}, "model": "auth.permission", "pk": 439}, {"fields": {"codename": "add_courseregcodeitem", "name": "Can add course reg code item", "content_type": 147}, "model": "auth.permission", "pk": 440}, {"fields": {"codename": "change_courseregcodeitem", "name": "Can change course reg code item", "content_type": 147}, "model": "auth.permission", "pk": 441}, {"fields": {"codename": "delete_courseregcodeitem", "name": "Can delete course reg code item", "content_type": 147}, "model": "auth.permission", "pk": 442}, {"fields": {"codename": "add_courseregcodeitemannotation", "name": "Can add course reg code item annotation", "content_type": 148}, "model": "auth.permission", "pk": 443}, {"fields": {"codename": "change_courseregcodeitemannotation", "name": "Can change course reg code item annotation", "content_type": 148}, "model": "auth.permission", "pk": 444}, {"fields": {"codename": "delete_courseregcodeitemannotation", "name": "Can delete course reg code item annotation", "content_type": 148}, "model": "auth.permission", "pk": 445}, {"fields": {"codename": "add_paidcourseregistrationannotation", "name": "Can add paid course registration annotation", "content_type": 149}, "model": "auth.permission", "pk": 446}, {"fields": {"codename": "change_paidcourseregistrationannotation", "name": "Can change paid course registration annotation", "content_type": 149}, "model": "auth.permission", "pk": 447}, {"fields": {"codename": "delete_paidcourseregistrationannotation", "name": "Can delete paid course registration annotation", "content_type": 149}, "model": "auth.permission", "pk": 448}, {"fields": {"codename": "add_certificateitem", "name": "Can add certificate item", "content_type": 150}, "model": "auth.permission", "pk": 449}, {"fields": {"codename": "change_certificateitem", "name": "Can change certificate item", "content_type": 150}, "model": "auth.permission", "pk": 450}, {"fields": {"codename": "delete_certificateitem", "name": "Can delete certificate item", "content_type": 150}, "model": "auth.permission", "pk": 451}, {"fields": {"codename": "add_donationconfiguration", "name": "Can add donation configuration", "content_type": 151}, "model": "auth.permission", "pk": 452}, {"fields": {"codename": "change_donationconfiguration", "name": "Can change donation configuration", "content_type": 151}, "model": "auth.permission", "pk": 453}, {"fields": {"codename": "delete_donationconfiguration", "name": "Can delete donation configuration", "content_type": 151}, "model": "auth.permission", "pk": 454}, {"fields": {"codename": "add_donation", "name": "Can add donation", "content_type": 152}, "model": "auth.permission", "pk": 455}, {"fields": {"codename": "change_donation", "name": "Can change donation", "content_type": 152}, "model": "auth.permission", "pk": 456}, {"fields": {"codename": "delete_donation", "name": "Can delete donation", "content_type": 152}, "model": "auth.permission", "pk": 457}, {"fields": {"codename": "add_coursemode", "name": "Can add course mode", "content_type": 153}, "model": "auth.permission", "pk": 458}, {"fields": {"codename": "change_coursemode", "name": "Can change course mode", "content_type": 153}, "model": "auth.permission", "pk": 459}, {"fields": {"codename": "delete_coursemode", "name": "Can delete course mode", "content_type": 153}, "model": "auth.permission", "pk": 460}, {"fields": {"codename": "add_coursemodesarchive", "name": "Can add course modes archive", "content_type": 154}, "model": "auth.permission", "pk": 461}, {"fields": {"codename": "change_coursemodesarchive", "name": "Can change course modes archive", "content_type": 154}, "model": "auth.permission", "pk": 462}, {"fields": {"codename": "delete_coursemodesarchive", "name": "Can delete course modes archive", "content_type": 154}, "model": "auth.permission", "pk": 463}, {"fields": {"codename": "add_coursemodeexpirationconfig", "name": "Can add course mode expiration config", "content_type": 155}, "model": "auth.permission", "pk": 464}, {"fields": {"codename": "change_coursemodeexpirationconfig", "name": "Can change course mode expiration config", "content_type": 155}, "model": "auth.permission", "pk": 465}, {"fields": {"codename": "delete_coursemodeexpirationconfig", "name": "Can delete course mode expiration config", "content_type": 155}, "model": "auth.permission", "pk": 466}, {"fields": {"codename": "add_softwaresecurephotoverification", "name": "Can add software secure photo verification", "content_type": 156}, "model": "auth.permission", "pk": 467}, {"fields": {"codename": "change_softwaresecurephotoverification", "name": "Can change software secure photo verification", "content_type": 156}, "model": "auth.permission", "pk": 468}, {"fields": {"codename": "delete_softwaresecurephotoverification", "name": "Can delete software secure photo verification", "content_type": 156}, "model": "auth.permission", "pk": 469}, {"fields": {"codename": "add_historicalverificationdeadline", "name": "Can add historical verification deadline", "content_type": 157}, "model": "auth.permission", "pk": 470}, {"fields": {"codename": "change_historicalverificationdeadline", "name": "Can change historical verification deadline", "content_type": 157}, "model": "auth.permission", "pk": 471}, {"fields": {"codename": "delete_historicalverificationdeadline", "name": "Can delete historical verification deadline", "content_type": 157}, "model": "auth.permission", "pk": 472}, {"fields": {"codename": "add_verificationdeadline", "name": "Can add verification deadline", "content_type": 158}, "model": "auth.permission", "pk": 473}, {"fields": {"codename": "change_verificationdeadline", "name": "Can change verification deadline", "content_type": 158}, "model": "auth.permission", "pk": 474}, {"fields": {"codename": "delete_verificationdeadline", "name": "Can delete verification deadline", "content_type": 158}, "model": "auth.permission", "pk": 475}, {"fields": {"codename": "add_verificationcheckpoint", "name": "Can add verification checkpoint", "content_type": 159}, "model": "auth.permission", "pk": 476}, {"fields": {"codename": "change_verificationcheckpoint", "name": "Can change verification checkpoint", "content_type": 159}, "model": "auth.permission", "pk": 477}, {"fields": {"codename": "delete_verificationcheckpoint", "name": "Can delete verification checkpoint", "content_type": 159}, "model": "auth.permission", "pk": 478}, {"fields": {"codename": "add_verificationstatus", "name": "Can add Verification Status", "content_type": 160}, "model": "auth.permission", "pk": 479}, {"fields": {"codename": "change_verificationstatus", "name": "Can change Verification Status", "content_type": 160}, "model": "auth.permission", "pk": 480}, {"fields": {"codename": "delete_verificationstatus", "name": "Can delete Verification Status", "content_type": 160}, "model": "auth.permission", "pk": 481}, {"fields": {"codename": "add_incoursereverificationconfiguration", "name": "Can add in course reverification configuration", "content_type": 161}, "model": "auth.permission", "pk": 482}, {"fields": {"codename": "change_incoursereverificationconfiguration", "name": "Can change in course reverification configuration", "content_type": 161}, "model": "auth.permission", "pk": 483}, {"fields": {"codename": "delete_incoursereverificationconfiguration", "name": "Can delete in course reverification configuration", "content_type": 161}, "model": "auth.permission", "pk": 484}, {"fields": {"codename": "add_icrvstatusemailsconfiguration", "name": "Can add icrv status emails configuration", "content_type": 162}, "model": "auth.permission", "pk": 485}, {"fields": {"codename": "change_icrvstatusemailsconfiguration", "name": "Can change icrv status emails configuration", "content_type": 162}, "model": "auth.permission", "pk": 486}, {"fields": {"codename": "delete_icrvstatusemailsconfiguration", "name": "Can delete icrv status emails configuration", "content_type": 162}, "model": "auth.permission", "pk": 487}, {"fields": {"codename": "add_skippedreverification", "name": "Can add skipped reverification", "content_type": 163}, "model": "auth.permission", "pk": 488}, {"fields": {"codename": "change_skippedreverification", "name": "Can change skipped reverification", "content_type": 163}, "model": "auth.permission", "pk": 489}, {"fields": {"codename": "delete_skippedreverification", "name": "Can delete skipped reverification", "content_type": 163}, "model": "auth.permission", "pk": 490}, {"fields": {"codename": "add_darklangconfig", "name": "Can add dark lang config", "content_type": 164}, "model": "auth.permission", "pk": 491}, {"fields": {"codename": "change_darklangconfig", "name": "Can change dark lang config", "content_type": 164}, "model": "auth.permission", "pk": 492}, {"fields": {"codename": "delete_darklangconfig", "name": "Can delete dark lang config", "content_type": 164}, "model": "auth.permission", "pk": 493}, {"fields": {"codename": "add_microsite", "name": "Can add microsite", "content_type": 165}, "model": "auth.permission", "pk": 494}, {"fields": {"codename": "change_microsite", "name": "Can change microsite", "content_type": 165}, "model": "auth.permission", "pk": 495}, {"fields": {"codename": "delete_microsite", "name": "Can delete microsite", "content_type": 165}, "model": "auth.permission", "pk": 496}, {"fields": {"codename": "add_micrositehistory", "name": "Can add microsite history", "content_type": 166}, "model": "auth.permission", "pk": 497}, {"fields": {"codename": "change_micrositehistory", "name": "Can change microsite history", "content_type": 166}, "model": "auth.permission", "pk": 498}, {"fields": {"codename": "delete_micrositehistory", "name": "Can delete microsite history", "content_type": 166}, "model": "auth.permission", "pk": 499}, {"fields": {"codename": "add_historicalmicrositeorganizationmapping", "name": "Can add historical microsite organization mapping", "content_type": 167}, "model": "auth.permission", "pk": 500}, {"fields": {"codename": "change_historicalmicrositeorganizationmapping", "name": "Can change historical microsite organization mapping", "content_type": 167}, "model": "auth.permission", "pk": 501}, {"fields": {"codename": "delete_historicalmicrositeorganizationmapping", "name": "Can delete historical microsite organization mapping", "content_type": 167}, "model": "auth.permission", "pk": 502}, {"fields": {"codename": "add_micrositeorganizationmapping", "name": "Can add microsite organization mapping", "content_type": 168}, "model": "auth.permission", "pk": 503}, {"fields": {"codename": "change_micrositeorganizationmapping", "name": "Can change microsite organization mapping", "content_type": 168}, "model": "auth.permission", "pk": 504}, {"fields": {"codename": "delete_micrositeorganizationmapping", "name": "Can delete microsite organization mapping", "content_type": 168}, "model": "auth.permission", "pk": 505}, {"fields": {"codename": "add_historicalmicrositetemplate", "name": "Can add historical microsite template", "content_type": 169}, "model": "auth.permission", "pk": 506}, {"fields": {"codename": "change_historicalmicrositetemplate", "name": "Can change historical microsite template", "content_type": 169}, "model": "auth.permission", "pk": 507}, {"fields": {"codename": "delete_historicalmicrositetemplate", "name": "Can delete historical microsite template", "content_type": 169}, "model": "auth.permission", "pk": 508}, {"fields": {"codename": "add_micrositetemplate", "name": "Can add microsite template", "content_type": 170}, "model": "auth.permission", "pk": 509}, {"fields": {"codename": "change_micrositetemplate", "name": "Can change microsite template", "content_type": 170}, "model": "auth.permission", "pk": 510}, {"fields": {"codename": "delete_micrositetemplate", "name": "Can delete microsite template", "content_type": 170}, "model": "auth.permission", "pk": 511}, {"fields": {"codename": "add_whitelistedrssurl", "name": "Can add whitelisted rss url", "content_type": 171}, "model": "auth.permission", "pk": 512}, {"fields": {"codename": "change_whitelistedrssurl", "name": "Can change whitelisted rss url", "content_type": 171}, "model": "auth.permission", "pk": 513}, {"fields": {"codename": "delete_whitelistedrssurl", "name": "Can delete whitelisted rss url", "content_type": 171}, "model": "auth.permission", "pk": 514}, {"fields": {"codename": "add_embargoedcourse", "name": "Can add embargoed course", "content_type": 172}, "model": "auth.permission", "pk": 515}, {"fields": {"codename": "change_embargoedcourse", "name": "Can change embargoed course", "content_type": 172}, "model": "auth.permission", "pk": 516}, {"fields": {"codename": "delete_embargoedcourse", "name": "Can delete embargoed course", "content_type": 172}, "model": "auth.permission", "pk": 517}, {"fields": {"codename": "add_embargoedstate", "name": "Can add embargoed state", "content_type": 173}, "model": "auth.permission", "pk": 518}, {"fields": {"codename": "change_embargoedstate", "name": "Can change embargoed state", "content_type": 173}, "model": "auth.permission", "pk": 519}, {"fields": {"codename": "delete_embargoedstate", "name": "Can delete embargoed state", "content_type": 173}, "model": "auth.permission", "pk": 520}, {"fields": {"codename": "add_restrictedcourse", "name": "Can add restricted course", "content_type": 174}, "model": "auth.permission", "pk": 521}, {"fields": {"codename": "change_restrictedcourse", "name": "Can change restricted course", "content_type": 174}, "model": "auth.permission", "pk": 522}, {"fields": {"codename": "delete_restrictedcourse", "name": "Can delete restricted course", "content_type": 174}, "model": "auth.permission", "pk": 523}, {"fields": {"codename": "add_country", "name": "Can add country", "content_type": 175}, "model": "auth.permission", "pk": 524}, {"fields": {"codename": "change_country", "name": "Can change country", "content_type": 175}, "model": "auth.permission", "pk": 525}, {"fields": {"codename": "delete_country", "name": "Can delete country", "content_type": 175}, "model": "auth.permission", "pk": 526}, {"fields": {"codename": "add_countryaccessrule", "name": "Can add country access rule", "content_type": 176}, "model": "auth.permission", "pk": 527}, {"fields": {"codename": "change_countryaccessrule", "name": "Can change country access rule", "content_type": 176}, "model": "auth.permission", "pk": 528}, {"fields": {"codename": "delete_countryaccessrule", "name": "Can delete country access rule", "content_type": 176}, "model": "auth.permission", "pk": 529}, {"fields": {"codename": "add_courseaccessrulehistory", "name": "Can add course access rule history", "content_type": 177}, "model": "auth.permission", "pk": 530}, {"fields": {"codename": "change_courseaccessrulehistory", "name": "Can change course access rule history", "content_type": 177}, "model": "auth.permission", "pk": 531}, {"fields": {"codename": "delete_courseaccessrulehistory", "name": "Can delete course access rule history", "content_type": 177}, "model": "auth.permission", "pk": 532}, {"fields": {"codename": "add_ipfilter", "name": "Can add ip filter", "content_type": 178}, "model": "auth.permission", "pk": 533}, {"fields": {"codename": "change_ipfilter", "name": "Can change ip filter", "content_type": 178}, "model": "auth.permission", "pk": 534}, {"fields": {"codename": "delete_ipfilter", "name": "Can delete ip filter", "content_type": 178}, "model": "auth.permission", "pk": 535}, {"fields": {"codename": "add_coursererunstate", "name": "Can add course rerun state", "content_type": 179}, "model": "auth.permission", "pk": 536}, {"fields": {"codename": "change_coursererunstate", "name": "Can change course rerun state", "content_type": 179}, "model": "auth.permission", "pk": 537}, {"fields": {"codename": "delete_coursererunstate", "name": "Can delete course rerun state", "content_type": 179}, "model": "auth.permission", "pk": 538}, {"fields": {"codename": "add_mobileapiconfig", "name": "Can add mobile api config", "content_type": 180}, "model": "auth.permission", "pk": 539}, {"fields": {"codename": "change_mobileapiconfig", "name": "Can change mobile api config", "content_type": 180}, "model": "auth.permission", "pk": 540}, {"fields": {"codename": "delete_mobileapiconfig", "name": "Can delete mobile api config", "content_type": 180}, "model": "auth.permission", "pk": 541}, {"fields": {"codename": "add_appversionconfig", "name": "Can add app version config", "content_type": 181}, "model": "auth.permission", "pk": 542}, {"fields": {"codename": "change_appversionconfig", "name": "Can change app version config", "content_type": 181}, "model": "auth.permission", "pk": 543}, {"fields": {"codename": "delete_appversionconfig", "name": "Can delete app version config", "content_type": 181}, "model": "auth.permission", "pk": 544}, {"fields": {"codename": "add_usersocialauth", "name": "Can add user social auth", "content_type": 182}, "model": "auth.permission", "pk": 545}, {"fields": {"codename": "change_usersocialauth", "name": "Can change user social auth", "content_type": 182}, "model": "auth.permission", "pk": 546}, {"fields": {"codename": "delete_usersocialauth", "name": "Can delete user social auth", "content_type": 182}, "model": "auth.permission", "pk": 547}, {"fields": {"codename": "add_nonce", "name": "Can add nonce", "content_type": 183}, "model": "auth.permission", "pk": 548}, {"fields": {"codename": "change_nonce", "name": "Can change nonce", "content_type": 183}, "model": "auth.permission", "pk": 549}, {"fields": {"codename": "delete_nonce", "name": "Can delete nonce", "content_type": 183}, "model": "auth.permission", "pk": 550}, {"fields": {"codename": "add_association", "name": "Can add association", "content_type": 184}, "model": "auth.permission", "pk": 551}, {"fields": {"codename": "change_association", "name": "Can change association", "content_type": 184}, "model": "auth.permission", "pk": 552}, {"fields": {"codename": "delete_association", "name": "Can delete association", "content_type": 184}, "model": "auth.permission", "pk": 553}, {"fields": {"codename": "add_code", "name": "Can add code", "content_type": 185}, "model": "auth.permission", "pk": 554}, {"fields": {"codename": "change_code", "name": "Can change code", "content_type": 185}, "model": "auth.permission", "pk": 555}, {"fields": {"codename": "delete_code", "name": "Can delete code", "content_type": 185}, "model": "auth.permission", "pk": 556}, {"fields": {"codename": "add_surveyform", "name": "Can add survey form", "content_type": 186}, "model": "auth.permission", "pk": 557}, {"fields": {"codename": "change_surveyform", "name": "Can change survey form", "content_type": 186}, "model": "auth.permission", "pk": 558}, {"fields": {"codename": "delete_surveyform", "name": "Can delete survey form", "content_type": 186}, "model": "auth.permission", "pk": 559}, {"fields": {"codename": "add_surveyanswer", "name": "Can add survey answer", "content_type": 187}, "model": "auth.permission", "pk": 560}, {"fields": {"codename": "change_surveyanswer", "name": "Can change survey answer", "content_type": 187}, "model": "auth.permission", "pk": 561}, {"fields": {"codename": "delete_surveyanswer", "name": "Can delete survey answer", "content_type": 187}, "model": "auth.permission", "pk": 562}, {"fields": {"codename": "add_xblockasidesconfig", "name": "Can add x block asides config", "content_type": 188}, "model": "auth.permission", "pk": 563}, {"fields": {"codename": "change_xblockasidesconfig", "name": "Can change x block asides config", "content_type": 188}, "model": "auth.permission", "pk": 564}, {"fields": {"codename": "delete_xblockasidesconfig", "name": "Can delete x block asides config", "content_type": 188}, "model": "auth.permission", "pk": 565}, {"fields": {"codename": "add_courseoverview", "name": "Can add course overview", "content_type": 189}, "model": "auth.permission", "pk": 566}, {"fields": {"codename": "change_courseoverview", "name": "Can change course overview", "content_type": 189}, "model": "auth.permission", "pk": 567}, {"fields": {"codename": "delete_courseoverview", "name": "Can delete course overview", "content_type": 189}, "model": "auth.permission", "pk": 568}, {"fields": {"codename": "add_courseoverviewtab", "name": "Can add course overview tab", "content_type": 190}, "model": "auth.permission", "pk": 569}, {"fields": {"codename": "change_courseoverviewtab", "name": "Can change course overview tab", "content_type": 190}, "model": "auth.permission", "pk": 570}, {"fields": {"codename": "delete_courseoverviewtab", "name": "Can delete course overview tab", "content_type": 190}, "model": "auth.permission", "pk": 571}, {"fields": {"codename": "add_courseoverviewimageset", "name": "Can add course overview image set", "content_type": 191}, "model": "auth.permission", "pk": 572}, {"fields": {"codename": "change_courseoverviewimageset", "name": "Can change course overview image set", "content_type": 191}, "model": "auth.permission", "pk": 573}, {"fields": {"codename": "delete_courseoverviewimageset", "name": "Can delete course overview image set", "content_type": 191}, "model": "auth.permission", "pk": 574}, {"fields": {"codename": "add_courseoverviewimageconfig", "name": "Can add course overview image config", "content_type": 192}, "model": "auth.permission", "pk": 575}, {"fields": {"codename": "change_courseoverviewimageconfig", "name": "Can change course overview image config", "content_type": 192}, "model": "auth.permission", "pk": 576}, {"fields": {"codename": "delete_courseoverviewimageconfig", "name": "Can delete course overview image config", "content_type": 192}, "model": "auth.permission", "pk": 577}, {"fields": {"codename": "add_coursestructure", "name": "Can add course structure", "content_type": 193}, "model": "auth.permission", "pk": 578}, {"fields": {"codename": "change_coursestructure", "name": "Can change course structure", "content_type": 193}, "model": "auth.permission", "pk": 579}, {"fields": {"codename": "delete_coursestructure", "name": "Can delete course structure", "content_type": 193}, "model": "auth.permission", "pk": 580}, {"fields": {"codename": "add_corsmodel", "name": "Can add cors model", "content_type": 194}, "model": "auth.permission", "pk": 581}, {"fields": {"codename": "change_corsmodel", "name": "Can change cors model", "content_type": 194}, "model": "auth.permission", "pk": 582}, {"fields": {"codename": "delete_corsmodel", "name": "Can delete cors model", "content_type": 194}, "model": "auth.permission", "pk": 583}, {"fields": {"codename": "add_xdomainproxyconfiguration", "name": "Can add x domain proxy configuration", "content_type": 195}, "model": "auth.permission", "pk": 584}, {"fields": {"codename": "change_xdomainproxyconfiguration", "name": "Can change x domain proxy configuration", "content_type": 195}, "model": "auth.permission", "pk": 585}, {"fields": {"codename": "delete_xdomainproxyconfiguration", "name": "Can delete x domain proxy configuration", "content_type": 195}, "model": "auth.permission", "pk": 586}, {"fields": {"codename": "add_commerceconfiguration", "name": "Can add commerce configuration", "content_type": 196}, "model": "auth.permission", "pk": 587}, {"fields": {"codename": "change_commerceconfiguration", "name": "Can change commerce configuration", "content_type": 196}, "model": "auth.permission", "pk": 588}, {"fields": {"codename": "delete_commerceconfiguration", "name": "Can delete commerce configuration", "content_type": 196}, "model": "auth.permission", "pk": 589}, {"fields": {"codename": "add_creditprovider", "name": "Can add credit provider", "content_type": 197}, "model": "auth.permission", "pk": 590}, {"fields": {"codename": "change_creditprovider", "name": "Can change credit provider", "content_type": 197}, "model": "auth.permission", "pk": 591}, {"fields": {"codename": "delete_creditprovider", "name": "Can delete credit provider", "content_type": 197}, "model": "auth.permission", "pk": 592}, {"fields": {"codename": "add_creditcourse", "name": "Can add credit course", "content_type": 198}, "model": "auth.permission", "pk": 593}, {"fields": {"codename": "change_creditcourse", "name": "Can change credit course", "content_type": 198}, "model": "auth.permission", "pk": 594}, {"fields": {"codename": "delete_creditcourse", "name": "Can delete credit course", "content_type": 198}, "model": "auth.permission", "pk": 595}, {"fields": {"codename": "add_creditrequirement", "name": "Can add credit requirement", "content_type": 199}, "model": "auth.permission", "pk": 596}, {"fields": {"codename": "change_creditrequirement", "name": "Can change credit requirement", "content_type": 199}, "model": "auth.permission", "pk": 597}, {"fields": {"codename": "delete_creditrequirement", "name": "Can delete credit requirement", "content_type": 199}, "model": "auth.permission", "pk": 598}, {"fields": {"codename": "add_historicalcreditrequirementstatus", "name": "Can add historical credit requirement status", "content_type": 200}, "model": "auth.permission", "pk": 599}, {"fields": {"codename": "change_historicalcreditrequirementstatus", "name": "Can change historical credit requirement status", "content_type": 200}, "model": "auth.permission", "pk": 600}, {"fields": {"codename": "delete_historicalcreditrequirementstatus", "name": "Can delete historical credit requirement status", "content_type": 200}, "model": "auth.permission", "pk": 601}, {"fields": {"codename": "add_creditrequirementstatus", "name": "Can add credit requirement status", "content_type": 201}, "model": "auth.permission", "pk": 602}, {"fields": {"codename": "change_creditrequirementstatus", "name": "Can change credit requirement status", "content_type": 201}, "model": "auth.permission", "pk": 603}, {"fields": {"codename": "delete_creditrequirementstatus", "name": "Can delete credit requirement status", "content_type": 201}, "model": "auth.permission", "pk": 604}, {"fields": {"codename": "add_crediteligibility", "name": "Can add credit eligibility", "content_type": 202}, "model": "auth.permission", "pk": 605}, {"fields": {"codename": "change_crediteligibility", "name": "Can change credit eligibility", "content_type": 202}, "model": "auth.permission", "pk": 606}, {"fields": {"codename": "delete_crediteligibility", "name": "Can delete credit eligibility", "content_type": 202}, "model": "auth.permission", "pk": 607}, {"fields": {"codename": "add_historicalcreditrequest", "name": "Can add historical credit request", "content_type": 203}, "model": "auth.permission", "pk": 608}, {"fields": {"codename": "change_historicalcreditrequest", "name": "Can change historical credit request", "content_type": 203}, "model": "auth.permission", "pk": 609}, {"fields": {"codename": "delete_historicalcreditrequest", "name": "Can delete historical credit request", "content_type": 203}, "model": "auth.permission", "pk": 610}, {"fields": {"codename": "add_creditrequest", "name": "Can add credit request", "content_type": 204}, "model": "auth.permission", "pk": 611}, {"fields": {"codename": "change_creditrequest", "name": "Can change credit request", "content_type": 204}, "model": "auth.permission", "pk": 612}, {"fields": {"codename": "delete_creditrequest", "name": "Can delete credit request", "content_type": 204}, "model": "auth.permission", "pk": 613}, {"fields": {"codename": "add_creditconfig", "name": "Can add credit config", "content_type": 205}, "model": "auth.permission", "pk": 614}, {"fields": {"codename": "change_creditconfig", "name": "Can change credit config", "content_type": 205}, "model": "auth.permission", "pk": 615}, {"fields": {"codename": "delete_creditconfig", "name": "Can delete credit config", "content_type": 205}, "model": "auth.permission", "pk": 616}, {"fields": {"codename": "add_courseteam", "name": "Can add course team", "content_type": 206}, "model": "auth.permission", "pk": 617}, {"fields": {"codename": "change_courseteam", "name": "Can change course team", "content_type": 206}, "model": "auth.permission", "pk": 618}, {"fields": {"codename": "delete_courseteam", "name": "Can delete course team", "content_type": 206}, "model": "auth.permission", "pk": 619}, {"fields": {"codename": "add_courseteammembership", "name": "Can add course team membership", "content_type": 207}, "model": "auth.permission", "pk": 620}, {"fields": {"codename": "change_courseteammembership", "name": "Can change course team membership", "content_type": 207}, "model": "auth.permission", "pk": 621}, {"fields": {"codename": "delete_courseteammembership", "name": "Can delete course team membership", "content_type": 207}, "model": "auth.permission", "pk": 622}, {"fields": {"codename": "add_xblockconfiguration", "name": "Can add x block configuration", "content_type": 208}, "model": "auth.permission", "pk": 623}, {"fields": {"codename": "change_xblockconfiguration", "name": "Can change x block configuration", "content_type": 208}, "model": "auth.permission", "pk": 624}, {"fields": {"codename": "delete_xblockconfiguration", "name": "Can delete x block configuration", "content_type": 208}, "model": "auth.permission", "pk": 625}, {"fields": {"codename": "add_xblockstudioconfigurationflag", "name": "Can add x block studio configuration flag", "content_type": 209}, "model": "auth.permission", "pk": 626}, {"fields": {"codename": "change_xblockstudioconfigurationflag", "name": "Can change x block studio configuration flag", "content_type": 209}, "model": "auth.permission", "pk": 627}, {"fields": {"codename": "delete_xblockstudioconfigurationflag", "name": "Can delete x block studio configuration flag", "content_type": 209}, "model": "auth.permission", "pk": 628}, {"fields": {"codename": "add_xblockstudioconfiguration", "name": "Can add x block studio configuration", "content_type": 210}, "model": "auth.permission", "pk": 629}, {"fields": {"codename": "change_xblockstudioconfiguration", "name": "Can change x block studio configuration", "content_type": 210}, "model": "auth.permission", "pk": 630}, {"fields": {"codename": "delete_xblockstudioconfiguration", "name": "Can delete x block studio configuration", "content_type": 210}, "model": "auth.permission", "pk": 631}, {"fields": {"codename": "add_bookmark", "name": "Can add bookmark", "content_type": 211}, "model": "auth.permission", "pk": 632}, {"fields": {"codename": "change_bookmark", "name": "Can change bookmark", "content_type": 211}, "model": "auth.permission", "pk": 633}, {"fields": {"codename": "delete_bookmark", "name": "Can delete bookmark", "content_type": 211}, "model": "auth.permission", "pk": 634}, {"fields": {"codename": "add_xblockcache", "name": "Can add x block cache", "content_type": 212}, "model": "auth.permission", "pk": 635}, {"fields": {"codename": "change_xblockcache", "name": "Can change x block cache", "content_type": 212}, "model": "auth.permission", "pk": 636}, {"fields": {"codename": "delete_xblockcache", "name": "Can delete x block cache", "content_type": 212}, "model": "auth.permission", "pk": 637}, {"fields": {"codename": "add_programsapiconfig", "name": "Can add programs api config", "content_type": 213}, "model": "auth.permission", "pk": 638}, {"fields": {"codename": "change_programsapiconfig", "name": "Can change programs api config", "content_type": 213}, "model": "auth.permission", "pk": 639}, {"fields": {"codename": "delete_programsapiconfig", "name": "Can delete programs api config", "content_type": 213}, "model": "auth.permission", "pk": 640}, {"fields": {"codename": "add_catalogintegration", "name": "Can add catalog integration", "content_type": 214}, "model": "auth.permission", "pk": 641}, {"fields": {"codename": "change_catalogintegration", "name": "Can change catalog integration", "content_type": 214}, "model": "auth.permission", "pk": 642}, {"fields": {"codename": "delete_catalogintegration", "name": "Can delete catalog integration", "content_type": 214}, "model": "auth.permission", "pk": 643}, {"fields": {"codename": "add_selfpacedconfiguration", "name": "Can add self paced configuration", "content_type": 215}, "model": "auth.permission", "pk": 644}, {"fields": {"codename": "change_selfpacedconfiguration", "name": "Can change self paced configuration", "content_type": 215}, "model": "auth.permission", "pk": 645}, {"fields": {"codename": "delete_selfpacedconfiguration", "name": "Can delete self paced configuration", "content_type": 215}, "model": "auth.permission", "pk": 646}, {"fields": {"codename": "add_kvstore", "name": "Can add kv store", "content_type": 216}, "model": "auth.permission", "pk": 647}, {"fields": {"codename": "change_kvstore", "name": "Can change kv store", "content_type": 216}, "model": "auth.permission", "pk": 648}, {"fields": {"codename": "delete_kvstore", "name": "Can delete kv store", "content_type": 216}, "model": "auth.permission", "pk": 649}, {"fields": {"codename": "add_credentialsapiconfig", "name": "Can add credentials api config", "content_type": 217}, "model": "auth.permission", "pk": 650}, {"fields": {"codename": "change_credentialsapiconfig", "name": "Can change credentials api config", "content_type": 217}, "model": "auth.permission", "pk": 651}, {"fields": {"codename": "delete_credentialsapiconfig", "name": "Can delete credentials api config", "content_type": 217}, "model": "auth.permission", "pk": 652}, {"fields": {"codename": "add_milestone", "name": "Can add milestone", "content_type": 218}, "model": "auth.permission", "pk": 653}, {"fields": {"codename": "change_milestone", "name": "Can change milestone", "content_type": 218}, "model": "auth.permission", "pk": 654}, {"fields": {"codename": "delete_milestone", "name": "Can delete milestone", "content_type": 218}, "model": "auth.permission", "pk": 655}, {"fields": {"codename": "add_milestonerelationshiptype", "name": "Can add milestone relationship type", "content_type": 219}, "model": "auth.permission", "pk": 656}, {"fields": {"codename": "change_milestonerelationshiptype", "name": "Can change milestone relationship type", "content_type": 219}, "model": "auth.permission", "pk": 657}, {"fields": {"codename": "delete_milestonerelationshiptype", "name": "Can delete milestone relationship type", "content_type": 219}, "model": "auth.permission", "pk": 658}, {"fields": {"codename": "add_coursemilestone", "name": "Can add course milestone", "content_type": 220}, "model": "auth.permission", "pk": 659}, {"fields": {"codename": "change_coursemilestone", "name": "Can change course milestone", "content_type": 220}, "model": "auth.permission", "pk": 660}, {"fields": {"codename": "delete_coursemilestone", "name": "Can delete course milestone", "content_type": 220}, "model": "auth.permission", "pk": 661}, {"fields": {"codename": "add_coursecontentmilestone", "name": "Can add course content milestone", "content_type": 221}, "model": "auth.permission", "pk": 662}, {"fields": {"codename": "change_coursecontentmilestone", "name": "Can change course content milestone", "content_type": 221}, "model": "auth.permission", "pk": 663}, {"fields": {"codename": "delete_coursecontentmilestone", "name": "Can delete course content milestone", "content_type": 221}, "model": "auth.permission", "pk": 664}, {"fields": {"codename": "add_usermilestone", "name": "Can add user milestone", "content_type": 222}, "model": "auth.permission", "pk": 665}, {"fields": {"codename": "change_usermilestone", "name": "Can change user milestone", "content_type": 222}, "model": "auth.permission", "pk": 666}, {"fields": {"codename": "delete_usermilestone", "name": "Can delete user milestone", "content_type": 222}, "model": "auth.permission", "pk": 667}, {"fields": {"codename": "add_coursetalkwidgetconfiguration", "name": "Can add course talk widget configuration", "content_type": 223}, "model": "auth.permission", "pk": 668}, {"fields": {"codename": "change_coursetalkwidgetconfiguration", "name": "Can change course talk widget configuration", "content_type": 223}, "model": "auth.permission", "pk": 669}, {"fields": {"codename": "delete_coursetalkwidgetconfiguration", "name": "Can delete course talk widget configuration", "content_type": 223}, "model": "auth.permission", "pk": 670}, {"fields": {"codename": "add_historicalapiaccessrequest", "name": "Can add historical api access request", "content_type": 224}, "model": "auth.permission", "pk": 671}, {"fields": {"codename": "change_historicalapiaccessrequest", "name": "Can change historical api access request", "content_type": 224}, "model": "auth.permission", "pk": 672}, {"fields": {"codename": "delete_historicalapiaccessrequest", "name": "Can delete historical api access request", "content_type": 224}, "model": "auth.permission", "pk": 673}, {"fields": {"codename": "add_apiaccessrequest", "name": "Can add api access request", "content_type": 1}, "model": "auth.permission", "pk": 674}, {"fields": {"codename": "change_apiaccessrequest", "name": "Can change api access request", "content_type": 1}, "model": "auth.permission", "pk": 675}, {"fields": {"codename": "delete_apiaccessrequest", "name": "Can delete api access request", "content_type": 1}, "model": "auth.permission", "pk": 676}, {"fields": {"codename": "add_apiaccessconfig", "name": "Can add api access config", "content_type": 225}, "model": "auth.permission", "pk": 677}, {"fields": {"codename": "change_apiaccessconfig", "name": "Can change api access config", "content_type": 225}, "model": "auth.permission", "pk": 678}, {"fields": {"codename": "delete_apiaccessconfig", "name": "Can delete api access config", "content_type": 225}, "model": "auth.permission", "pk": 679}, {"fields": {"codename": "add_catalog", "name": "Can add catalog", "content_type": 226}, "model": "auth.permission", "pk": 680}, {"fields": {"codename": "change_catalog", "name": "Can change catalog", "content_type": 226}, "model": "auth.permission", "pk": 681}, {"fields": {"codename": "delete_catalog", "name": "Can delete catalog", "content_type": 226}, "model": "auth.permission", "pk": 682}, {"fields": {"codename": "add_verifiedtrackcohortedcourse", "name": "Can add verified track cohorted course", "content_type": 227}, "model": "auth.permission", "pk": 683}, {"fields": {"codename": "change_verifiedtrackcohortedcourse", "name": "Can change verified track cohorted course", "content_type": 227}, "model": "auth.permission", "pk": 684}, {"fields": {"codename": "delete_verifiedtrackcohortedcourse", "name": "Can delete verified track cohorted course", "content_type": 227}, "model": "auth.permission", "pk": 685}, {"fields": {"codename": "add_badgeclass", "name": "Can add badge class", "content_type": 228}, "model": "auth.permission", "pk": 686}, {"fields": {"codename": "change_badgeclass", "name": "Can change badge class", "content_type": 228}, "model": "auth.permission", "pk": 687}, {"fields": {"codename": "delete_badgeclass", "name": "Can delete badge class", "content_type": 228}, "model": "auth.permission", "pk": 688}, {"fields": {"codename": "add_badgeassertion", "name": "Can add badge assertion", "content_type": 229}, "model": "auth.permission", "pk": 689}, {"fields": {"codename": "change_badgeassertion", "name": "Can change badge assertion", "content_type": 229}, "model": "auth.permission", "pk": 690}, {"fields": {"codename": "delete_badgeassertion", "name": "Can delete badge assertion", "content_type": 229}, "model": "auth.permission", "pk": 691}, {"fields": {"codename": "add_coursecompleteimageconfiguration", "name": "Can add course complete image configuration", "content_type": 230}, "model": "auth.permission", "pk": 692}, {"fields": {"codename": "change_coursecompleteimageconfiguration", "name": "Can change course complete image configuration", "content_type": 230}, "model": "auth.permission", "pk": 693}, {"fields": {"codename": "delete_coursecompleteimageconfiguration", "name": "Can delete course complete image configuration", "content_type": 230}, "model": "auth.permission", "pk": 694}, {"fields": {"codename": "add_courseeventbadgesconfiguration", "name": "Can add course event badges configuration", "content_type": 231}, "model": "auth.permission", "pk": 695}, {"fields": {"codename": "change_courseeventbadgesconfiguration", "name": "Can change course event badges configuration", "content_type": 231}, "model": "auth.permission", "pk": 696}, {"fields": {"codename": "delete_courseeventbadgesconfiguration", "name": "Can delete course event badges configuration", "content_type": 231}, "model": "auth.permission", "pk": 697}, {"fields": {"codename": "add_emailmarketingconfiguration", "name": "Can add email marketing configuration", "content_type": 232}, "model": "auth.permission", "pk": 698}, {"fields": {"codename": "change_emailmarketingconfiguration", "name": "Can change email marketing configuration", "content_type": 232}, "model": "auth.permission", "pk": 699}, {"fields": {"codename": "delete_emailmarketingconfiguration", "name": "Can delete email marketing configuration", "content_type": 232}, "model": "auth.permission", "pk": 700}, {"fields": {"codename": "add_studentitem", "name": "Can add student item", "content_type": 233}, "model": "auth.permission", "pk": 701}, {"fields": {"codename": "change_studentitem", "name": "Can change student item", "content_type": 233}, "model": "auth.permission", "pk": 702}, {"fields": {"codename": "delete_studentitem", "name": "Can delete student item", "content_type": 233}, "model": "auth.permission", "pk": 703}, {"fields": {"codename": "add_submission", "name": "Can add submission", "content_type": 234}, "model": "auth.permission", "pk": 704}, {"fields": {"codename": "change_submission", "name": "Can change submission", "content_type": 234}, "model": "auth.permission", "pk": 705}, {"fields": {"codename": "delete_submission", "name": "Can delete submission", "content_type": 234}, "model": "auth.permission", "pk": 706}, {"fields": {"codename": "add_score", "name": "Can add score", "content_type": 235}, "model": "auth.permission", "pk": 707}, {"fields": {"codename": "change_score", "name": "Can change score", "content_type": 235}, "model": "auth.permission", "pk": 708}, {"fields": {"codename": "delete_score", "name": "Can delete score", "content_type": 235}, "model": "auth.permission", "pk": 709}, {"fields": {"codename": "add_scoresummary", "name": "Can add score summary", "content_type": 236}, "model": "auth.permission", "pk": 710}, {"fields": {"codename": "change_scoresummary", "name": "Can change score summary", "content_type": 236}, "model": "auth.permission", "pk": 711}, {"fields": {"codename": "delete_scoresummary", "name": "Can delete score summary", "content_type": 236}, "model": "auth.permission", "pk": 712}, {"fields": {"codename": "add_scoreannotation", "name": "Can add score annotation", "content_type": 237}, "model": "auth.permission", "pk": 713}, {"fields": {"codename": "change_scoreannotation", "name": "Can change score annotation", "content_type": 237}, "model": "auth.permission", "pk": 714}, {"fields": {"codename": "delete_scoreannotation", "name": "Can delete score annotation", "content_type": 237}, "model": "auth.permission", "pk": 715}, {"fields": {"codename": "add_rubric", "name": "Can add rubric", "content_type": 238}, "model": "auth.permission", "pk": 716}, {"fields": {"codename": "change_rubric", "name": "Can change rubric", "content_type": 238}, "model": "auth.permission", "pk": 717}, {"fields": {"codename": "delete_rubric", "name": "Can delete rubric", "content_type": 238}, "model": "auth.permission", "pk": 718}, {"fields": {"codename": "add_criterion", "name": "Can add criterion", "content_type": 239}, "model": "auth.permission", "pk": 719}, {"fields": {"codename": "change_criterion", "name": "Can change criterion", "content_type": 239}, "model": "auth.permission", "pk": 720}, {"fields": {"codename": "delete_criterion", "name": "Can delete criterion", "content_type": 239}, "model": "auth.permission", "pk": 721}, {"fields": {"codename": "add_criterionoption", "name": "Can add criterion option", "content_type": 240}, "model": "auth.permission", "pk": 722}, {"fields": {"codename": "change_criterionoption", "name": "Can change criterion option", "content_type": 240}, "model": "auth.permission", "pk": 723}, {"fields": {"codename": "delete_criterionoption", "name": "Can delete criterion option", "content_type": 240}, "model": "auth.permission", "pk": 724}, {"fields": {"codename": "add_assessment", "name": "Can add assessment", "content_type": 241}, "model": "auth.permission", "pk": 725}, {"fields": {"codename": "change_assessment", "name": "Can change assessment", "content_type": 241}, "model": "auth.permission", "pk": 726}, {"fields": {"codename": "delete_assessment", "name": "Can delete assessment", "content_type": 241}, "model": "auth.permission", "pk": 727}, {"fields": {"codename": "add_assessmentpart", "name": "Can add assessment part", "content_type": 242}, "model": "auth.permission", "pk": 728}, {"fields": {"codename": "change_assessmentpart", "name": "Can change assessment part", "content_type": 242}, "model": "auth.permission", "pk": 729}, {"fields": {"codename": "delete_assessmentpart", "name": "Can delete assessment part", "content_type": 242}, "model": "auth.permission", "pk": 730}, {"fields": {"codename": "add_assessmentfeedbackoption", "name": "Can add assessment feedback option", "content_type": 243}, "model": "auth.permission", "pk": 731}, {"fields": {"codename": "change_assessmentfeedbackoption", "name": "Can change assessment feedback option", "content_type": 243}, "model": "auth.permission", "pk": 732}, {"fields": {"codename": "delete_assessmentfeedbackoption", "name": "Can delete assessment feedback option", "content_type": 243}, "model": "auth.permission", "pk": 733}, {"fields": {"codename": "add_assessmentfeedback", "name": "Can add assessment feedback", "content_type": 244}, "model": "auth.permission", "pk": 734}, {"fields": {"codename": "change_assessmentfeedback", "name": "Can change assessment feedback", "content_type": 244}, "model": "auth.permission", "pk": 735}, {"fields": {"codename": "delete_assessmentfeedback", "name": "Can delete assessment feedback", "content_type": 244}, "model": "auth.permission", "pk": 736}, {"fields": {"codename": "add_peerworkflow", "name": "Can add peer workflow", "content_type": 245}, "model": "auth.permission", "pk": 737}, {"fields": {"codename": "change_peerworkflow", "name": "Can change peer workflow", "content_type": 245}, "model": "auth.permission", "pk": 738}, {"fields": {"codename": "delete_peerworkflow", "name": "Can delete peer workflow", "content_type": 245}, "model": "auth.permission", "pk": 739}, {"fields": {"codename": "add_peerworkflowitem", "name": "Can add peer workflow item", "content_type": 246}, "model": "auth.permission", "pk": 740}, {"fields": {"codename": "change_peerworkflowitem", "name": "Can change peer workflow item", "content_type": 246}, "model": "auth.permission", "pk": 741}, {"fields": {"codename": "delete_peerworkflowitem", "name": "Can delete peer workflow item", "content_type": 246}, "model": "auth.permission", "pk": 742}, {"fields": {"codename": "add_trainingexample", "name": "Can add training example", "content_type": 247}, "model": "auth.permission", "pk": 743}, {"fields": {"codename": "change_trainingexample", "name": "Can change training example", "content_type": 247}, "model": "auth.permission", "pk": 744}, {"fields": {"codename": "delete_trainingexample", "name": "Can delete training example", "content_type": 247}, "model": "auth.permission", "pk": 745}, {"fields": {"codename": "add_studenttrainingworkflow", "name": "Can add student training workflow", "content_type": 248}, "model": "auth.permission", "pk": 746}, {"fields": {"codename": "change_studenttrainingworkflow", "name": "Can change student training workflow", "content_type": 248}, "model": "auth.permission", "pk": 747}, {"fields": {"codename": "delete_studenttrainingworkflow", "name": "Can delete student training workflow", "content_type": 248}, "model": "auth.permission", "pk": 748}, {"fields": {"codename": "add_studenttrainingworkflowitem", "name": "Can add student training workflow item", "content_type": 249}, "model": "auth.permission", "pk": 749}, {"fields": {"codename": "change_studenttrainingworkflowitem", "name": "Can change student training workflow item", "content_type": 249}, "model": "auth.permission", "pk": 750}, {"fields": {"codename": "delete_studenttrainingworkflowitem", "name": "Can delete student training workflow item", "content_type": 249}, "model": "auth.permission", "pk": 751}, {"fields": {"codename": "add_aiclassifierset", "name": "Can add ai classifier set", "content_type": 250}, "model": "auth.permission", "pk": 752}, {"fields": {"codename": "change_aiclassifierset", "name": "Can change ai classifier set", "content_type": 250}, "model": "auth.permission", "pk": 753}, {"fields": {"codename": "delete_aiclassifierset", "name": "Can delete ai classifier set", "content_type": 250}, "model": "auth.permission", "pk": 754}, {"fields": {"codename": "add_aiclassifier", "name": "Can add ai classifier", "content_type": 251}, "model": "auth.permission", "pk": 755}, {"fields": {"codename": "change_aiclassifier", "name": "Can change ai classifier", "content_type": 251}, "model": "auth.permission", "pk": 756}, {"fields": {"codename": "delete_aiclassifier", "name": "Can delete ai classifier", "content_type": 251}, "model": "auth.permission", "pk": 757}, {"fields": {"codename": "add_aitrainingworkflow", "name": "Can add ai training workflow", "content_type": 252}, "model": "auth.permission", "pk": 758}, {"fields": {"codename": "change_aitrainingworkflow", "name": "Can change ai training workflow", "content_type": 252}, "model": "auth.permission", "pk": 759}, {"fields": {"codename": "delete_aitrainingworkflow", "name": "Can delete ai training workflow", "content_type": 252}, "model": "auth.permission", "pk": 760}, {"fields": {"codename": "add_aigradingworkflow", "name": "Can add ai grading workflow", "content_type": 253}, "model": "auth.permission", "pk": 761}, {"fields": {"codename": "change_aigradingworkflow", "name": "Can change ai grading workflow", "content_type": 253}, "model": "auth.permission", "pk": 762}, {"fields": {"codename": "delete_aigradingworkflow", "name": "Can delete ai grading workflow", "content_type": 253}, "model": "auth.permission", "pk": 763}, {"fields": {"codename": "add_staffworkflow", "name": "Can add staff workflow", "content_type": 254}, "model": "auth.permission", "pk": 764}, {"fields": {"codename": "change_staffworkflow", "name": "Can change staff workflow", "content_type": 254}, "model": "auth.permission", "pk": 765}, {"fields": {"codename": "delete_staffworkflow", "name": "Can delete staff workflow", "content_type": 254}, "model": "auth.permission", "pk": 766}, {"fields": {"codename": "add_assessmentworkflow", "name": "Can add assessment workflow", "content_type": 255}, "model": "auth.permission", "pk": 767}, {"fields": {"codename": "change_assessmentworkflow", "name": "Can change assessment workflow", "content_type": 255}, "model": "auth.permission", "pk": 768}, {"fields": {"codename": "delete_assessmentworkflow", "name": "Can delete assessment workflow", "content_type": 255}, "model": "auth.permission", "pk": 769}, {"fields": {"codename": "add_assessmentworkflowstep", "name": "Can add assessment workflow step", "content_type": 256}, "model": "auth.permission", "pk": 770}, {"fields": {"codename": "change_assessmentworkflowstep", "name": "Can change assessment workflow step", "content_type": 256}, "model": "auth.permission", "pk": 771}, {"fields": {"codename": "delete_assessmentworkflowstep", "name": "Can delete assessment workflow step", "content_type": 256}, "model": "auth.permission", "pk": 772}, {"fields": {"codename": "add_assessmentworkflowcancellation", "name": "Can add assessment workflow cancellation", "content_type": 257}, "model": "auth.permission", "pk": 773}, {"fields": {"codename": "change_assessmentworkflowcancellation", "name": "Can change assessment workflow cancellation", "content_type": 257}, "model": "auth.permission", "pk": 774}, {"fields": {"codename": "delete_assessmentworkflowcancellation", "name": "Can delete assessment workflow cancellation", "content_type": 257}, "model": "auth.permission", "pk": 775}, {"fields": {"codename": "add_profile", "name": "Can add profile", "content_type": 258}, "model": "auth.permission", "pk": 776}, {"fields": {"codename": "change_profile", "name": "Can change profile", "content_type": 258}, "model": "auth.permission", "pk": 777}, {"fields": {"codename": "delete_profile", "name": "Can delete profile", "content_type": 258}, "model": "auth.permission", "pk": 778}, {"fields": {"codename": "add_video", "name": "Can add video", "content_type": 259}, "model": "auth.permission", "pk": 779}, {"fields": {"codename": "change_video", "name": "Can change video", "content_type": 259}, "model": "auth.permission", "pk": 780}, {"fields": {"codename": "delete_video", "name": "Can delete video", "content_type": 259}, "model": "auth.permission", "pk": 781}, {"fields": {"codename": "add_coursevideo", "name": "Can add course video", "content_type": 260}, "model": "auth.permission", "pk": 782}, {"fields": {"codename": "change_coursevideo", "name": "Can change course video", "content_type": 260}, "model": "auth.permission", "pk": 783}, {"fields": {"codename": "delete_coursevideo", "name": "Can delete course video", "content_type": 260}, "model": "auth.permission", "pk": 784}, {"fields": {"codename": "add_encodedvideo", "name": "Can add encoded video", "content_type": 261}, "model": "auth.permission", "pk": 785}, {"fields": {"codename": "change_encodedvideo", "name": "Can change encoded video", "content_type": 261}, "model": "auth.permission", "pk": 786}, {"fields": {"codename": "delete_encodedvideo", "name": "Can delete encoded video", "content_type": 261}, "model": "auth.permission", "pk": 787}, {"fields": {"codename": "add_subtitle", "name": "Can add subtitle", "content_type": 262}, "model": "auth.permission", "pk": 788}, {"fields": {"codename": "change_subtitle", "name": "Can change subtitle", "content_type": 262}, "model": "auth.permission", "pk": 789}, {"fields": {"codename": "delete_subtitle", "name": "Can delete subtitle", "content_type": 262}, "model": "auth.permission", "pk": 790}, {"fields": {"codename": "add_proctoredexam", "name": "Can add proctored exam", "content_type": 263}, "model": "auth.permission", "pk": 791}, {"fields": {"codename": "change_proctoredexam", "name": "Can change proctored exam", "content_type": 263}, "model": "auth.permission", "pk": 792}, {"fields": {"codename": "delete_proctoredexam", "name": "Can delete proctored exam", "content_type": 263}, "model": "auth.permission", "pk": 793}, {"fields": {"codename": "add_proctoredexamreviewpolicy", "name": "Can add Proctored exam review policy", "content_type": 264}, "model": "auth.permission", "pk": 794}, {"fields": {"codename": "change_proctoredexamreviewpolicy", "name": "Can change Proctored exam review policy", "content_type": 264}, "model": "auth.permission", "pk": 795}, {"fields": {"codename": "delete_proctoredexamreviewpolicy", "name": "Can delete Proctored exam review policy", "content_type": 264}, "model": "auth.permission", "pk": 796}, {"fields": {"codename": "add_proctoredexamreviewpolicyhistory", "name": "Can add proctored exam review policy history", "content_type": 265}, "model": "auth.permission", "pk": 797}, {"fields": {"codename": "change_proctoredexamreviewpolicyhistory", "name": "Can change proctored exam review policy history", "content_type": 265}, "model": "auth.permission", "pk": 798}, {"fields": {"codename": "delete_proctoredexamreviewpolicyhistory", "name": "Can delete proctored exam review policy history", "content_type": 265}, "model": "auth.permission", "pk": 799}, {"fields": {"codename": "add_proctoredexamstudentattempt", "name": "Can add proctored exam attempt", "content_type": 266}, "model": "auth.permission", "pk": 800}, {"fields": {"codename": "change_proctoredexamstudentattempt", "name": "Can change proctored exam attempt", "content_type": 266}, "model": "auth.permission", "pk": 801}, {"fields": {"codename": "delete_proctoredexamstudentattempt", "name": "Can delete proctored exam attempt", "content_type": 266}, "model": "auth.permission", "pk": 802}, {"fields": {"codename": "add_proctoredexamstudentattempthistory", "name": "Can add proctored exam attempt history", "content_type": 267}, "model": "auth.permission", "pk": 803}, {"fields": {"codename": "change_proctoredexamstudentattempthistory", "name": "Can change proctored exam attempt history", "content_type": 267}, "model": "auth.permission", "pk": 804}, {"fields": {"codename": "delete_proctoredexamstudentattempthistory", "name": "Can delete proctored exam attempt history", "content_type": 267}, "model": "auth.permission", "pk": 805}, {"fields": {"codename": "add_proctoredexamstudentallowance", "name": "Can add proctored allowance", "content_type": 268}, "model": "auth.permission", "pk": 806}, {"fields": {"codename": "change_proctoredexamstudentallowance", "name": "Can change proctored allowance", "content_type": 268}, "model": "auth.permission", "pk": 807}, {"fields": {"codename": "delete_proctoredexamstudentallowance", "name": "Can delete proctored allowance", "content_type": 268}, "model": "auth.permission", "pk": 808}, {"fields": {"codename": "add_proctoredexamstudentallowancehistory", "name": "Can add proctored allowance history", "content_type": 269}, "model": "auth.permission", "pk": 809}, {"fields": {"codename": "change_proctoredexamstudentallowancehistory", "name": "Can change proctored allowance history", "content_type": 269}, "model": "auth.permission", "pk": 810}, {"fields": {"codename": "delete_proctoredexamstudentallowancehistory", "name": "Can delete proctored allowance history", "content_type": 269}, "model": "auth.permission", "pk": 811}, {"fields": {"codename": "add_proctoredexamsoftwaresecurereview", "name": "Can add Proctored exam software secure review", "content_type": 270}, "model": "auth.permission", "pk": 812}, {"fields": {"codename": "change_proctoredexamsoftwaresecurereview", "name": "Can change Proctored exam software secure review", "content_type": 270}, "model": "auth.permission", "pk": 813}, {"fields": {"codename": "delete_proctoredexamsoftwaresecurereview", "name": "Can delete Proctored exam software secure review", "content_type": 270}, "model": "auth.permission", "pk": 814}, {"fields": {"codename": "add_proctoredexamsoftwaresecurereviewhistory", "name": "Can add Proctored exam review archive", "content_type": 271}, "model": "auth.permission", "pk": 815}, {"fields": {"codename": "change_proctoredexamsoftwaresecurereviewhistory", "name": "Can change Proctored exam review archive", "content_type": 271}, "model": "auth.permission", "pk": 816}, {"fields": {"codename": "delete_proctoredexamsoftwaresecurereviewhistory", "name": "Can delete Proctored exam review archive", "content_type": 271}, "model": "auth.permission", "pk": 817}, {"fields": {"codename": "add_proctoredexamsoftwaresecurecomment", "name": "Can add proctored exam software secure comment", "content_type": 272}, "model": "auth.permission", "pk": 818}, {"fields": {"codename": "change_proctoredexamsoftwaresecurecomment", "name": "Can change proctored exam software secure comment", "content_type": 272}, "model": "auth.permission", "pk": 819}, {"fields": {"codename": "delete_proctoredexamsoftwaresecurecomment", "name": "Can delete proctored exam software secure comment", "content_type": 272}, "model": "auth.permission", "pk": 820}, {"fields": {"codename": "add_organization", "name": "Can add organization", "content_type": 273}, "model": "auth.permission", "pk": 821}, {"fields": {"codename": "change_organization", "name": "Can change organization", "content_type": 273}, "model": "auth.permission", "pk": 822}, {"fields": {"codename": "delete_organization", "name": "Can delete organization", "content_type": 273}, "model": "auth.permission", "pk": 823}, {"fields": {"codename": "add_organizationcourse", "name": "Can add Link Course", "content_type": 274}, "model": "auth.permission", "pk": 824}, {"fields": {"codename": "change_organizationcourse", "name": "Can change Link Course", "content_type": 274}, "model": "auth.permission", "pk": 825}, {"fields": {"codename": "delete_organizationcourse", "name": "Can delete Link Course", "content_type": 274}, "model": "auth.permission", "pk": 826}, {"fields": {"codename": "add_customcourseforedx", "name": "Can add custom course for ed x", "content_type": 275}, "model": "auth.permission", "pk": 827}, {"fields": {"codename": "change_customcourseforedx", "name": "Can change custom course for ed x", "content_type": 275}, "model": "auth.permission", "pk": 828}, {"fields": {"codename": "delete_customcourseforedx", "name": "Can delete custom course for ed x", "content_type": 275}, "model": "auth.permission", "pk": 829}, {"fields": {"codename": "add_ccxfieldoverride", "name": "Can add ccx field override", "content_type": 276}, "model": "auth.permission", "pk": 830}, {"fields": {"codename": "change_ccxfieldoverride", "name": "Can change ccx field override", "content_type": 276}, "model": "auth.permission", "pk": 831}, {"fields": {"codename": "delete_ccxfieldoverride", "name": "Can delete ccx field override", "content_type": 276}, "model": "auth.permission", "pk": 832}, {"fields": {"codename": "add_ccxcon", "name": "Can add CCX Connector", "content_type": 277}, "model": "auth.permission", "pk": 833}, {"fields": {"codename": "change_ccxcon", "name": "Can change CCX Connector", "content_type": 277}, "model": "auth.permission", "pk": 834}, {"fields": {"codename": "delete_ccxcon", "name": "Can delete CCX Connector", "content_type": 277}, "model": "auth.permission", "pk": 835}, {"fields": {"codename": "add_studentmodulehistoryextended", "name": "Can add student module history extended", "content_type": 278}, "model": "auth.permission", "pk": 836}, {"fields": {"codename": "change_studentmodulehistoryextended", "name": "Can change student module history extended", "content_type": 278}, "model": "auth.permission", "pk": 837}, {"fields": {"codename": "delete_studentmodulehistoryextended", "name": "Can delete student module history extended", "content_type": 278}, "model": "auth.permission", "pk": 838}, {"fields": {"codename": "add_videouploadconfig", "name": "Can add video upload config", "content_type": 279}, "model": "auth.permission", "pk": 839}, {"fields": {"codename": "change_videouploadconfig", "name": "Can change video upload config", "content_type": 279}, "model": "auth.permission", "pk": 840}, {"fields": {"codename": "delete_videouploadconfig", "name": "Can delete video upload config", "content_type": 279}, "model": "auth.permission", "pk": 841}, {"fields": {"codename": "add_pushnotificationconfig", "name": "Can add push notification config", "content_type": 280}, "model": "auth.permission", "pk": 842}, {"fields": {"codename": "change_pushnotificationconfig", "name": "Can change push notification config", "content_type": 280}, "model": "auth.permission", "pk": 843}, {"fields": {"codename": "delete_pushnotificationconfig", "name": "Can delete push notification config", "content_type": 280}, "model": "auth.permission", "pk": 844}, {"fields": {"codename": "add_coursecreator", "name": "Can add course creator", "content_type": 281}, "model": "auth.permission", "pk": 845}, {"fields": {"codename": "change_coursecreator", "name": "Can change course creator", "content_type": 281}, "model": "auth.permission", "pk": 846}, {"fields": {"codename": "delete_coursecreator", "name": "Can delete course creator", "content_type": 281}, "model": "auth.permission", "pk": 847}, {"fields": {"codename": "add_studioconfig", "name": "Can add studio config", "content_type": 282}, "model": "auth.permission", "pk": 848}, {"fields": {"codename": "change_studioconfig", "name": "Can change studio config", "content_type": 282}, "model": "auth.permission", "pk": 849}, {"fields": {"codename": "delete_studioconfig", "name": "Can delete studio config", "content_type": 282}, "model": "auth.permission", "pk": 850}, {"fields": {"codename": "add_tagcategories", "name": "Can add tag categories", "content_type": 283}, "model": "auth.permission", "pk": 851}, {"fields": {"codename": "change_tagcategories", "name": "Can change tag categories", "content_type": 283}, "model": "auth.permission", "pk": 852}, {"fields": {"codename": "delete_tagcategories", "name": "Can delete tag categories", "content_type": 283}, "model": "auth.permission", "pk": 853}, {"fields": {"codename": "add_tagavailablevalues", "name": "Can add tag available values", "content_type": 284}, "model": "auth.permission", "pk": 854}, {"fields": {"codename": "change_tagavailablevalues", "name": "Can change tag available values", "content_type": 284}, "model": "auth.permission", "pk": 855}, {"fields": {"codename": "delete_tagavailablevalues", "name": "Can delete tag available values", "content_type": 284}, "model": "auth.permission", "pk": 856}, {"fields": {"name": "API Access Request Approvers", "permissions": []}, "model": "auth.group", "pk": 1}, {"fields": {"username": "ecommerce_worker", "first_name": "", "last_name": "", "is_active": true, "is_superuser": false, "is_staff": false, "last_login": null, "groups": [], "user_permissions": [], "password": "!1MoA7Omelj3dXC1cnj0fI58kvISqXTH6CQYdXwyE", "email": "ecommerce_worker@fake.email", "date_joined": "2016-07-26T19:13:50.120Z"}, "model": "auth.user", "pk": 1}, {"fields": {"change_date": "2016-07-26T19:16:47.030Z", "changed_by": null, "enabled": true}, "model": "util.ratelimitconfiguration", "pk": 1}, {"fields": {"change_date": "2016-07-26T19:13:43.345Z", "changed_by": null, "configuration": "{\"default\": {\"accomplishment_class_append\": \"accomplishment-certificate\", \"platform_name\": \"Your Platform Name Here\", \"logo_src\": \"/static/certificates/images/logo.png\", \"logo_url\": \"http://www.example.com\", \"company_verified_certificate_url\": \"http://www.example.com/verified-certificate\", \"company_privacy_url\": \"http://www.example.com/privacy-policy\", \"company_tos_url\": \"http://www.example.com/terms-service\", \"company_about_url\": \"http://www.example.com/about-us\"}, \"verified\": {\"certificate_type\": \"Verified\", \"certificate_title\": \"Verified Certificate of Achievement\"}, \"honor\": {\"certificate_type\": \"Honor Code\", \"certificate_title\": \"Certificate of Achievement\"}}", "enabled": false}, "model": "certificates.certificatehtmlviewconfiguration", "pk": 1}, {"fields": {"change_date": "2016-07-26T19:14:05.616Z", "changed_by": null, "enabled": true, "released_languages": ""}, "model": "dark_lang.darklangconfig", "pk": 1}] \ No newline at end of file diff --git a/common/test/db_cache/bok_choy_migrations_data_default.sql b/common/test/db_cache/bok_choy_migrations_data_default.sql index 9ee2be09c9..2e1e9f7293 100644 --- a/common/test/db_cache/bok_choy_migrations_data_default.sql +++ b/common/test/db_cache/bok_choy_migrations_data_default.sql @@ -21,7 +21,7 @@ LOCK TABLES `django_migrations` WRITE; /*!40000 ALTER TABLE `django_migrations` DISABLE KEYS */; -INSERT INTO `django_migrations` VALUES (1,'contenttypes','0001_initial','2016-07-06 14:29:47.976353'),(2,'auth','0001_initial','2016-07-06 14:29:48.375891'),(3,'admin','0001_initial','2016-07-06 14:29:48.523866'),(4,'sites','0001_initial','2016-07-06 14:29:48.554541'),(5,'contenttypes','0002_remove_content_type_name','2016-07-06 14:29:48.736902'),(6,'api_admin','0001_initial','2016-07-06 14:29:48.942247'),(7,'api_admin','0002_auto_20160325_1604','2016-07-06 14:29:48.969892'),(8,'api_admin','0003_auto_20160404_1618','2016-07-06 14:29:49.517865'),(9,'api_admin','0004_auto_20160412_1506','2016-07-06 14:29:49.939639'),(10,'api_admin','0005_auto_20160414_1232','2016-07-06 14:29:50.046636'),(11,'api_admin','0006_catalog','2016-07-06 14:29:50.065066'),(12,'assessment','0001_initial','2016-07-06 14:29:53.402858'),(13,'assessment','0002_staffworkflow','2016-07-06 14:29:53.511859'),(14,'auth','0002_alter_permission_name_max_length','2016-07-06 14:29:53.614665'),(15,'auth','0003_alter_user_email_max_length','2016-07-06 14:29:53.719666'),(16,'auth','0004_alter_user_username_opts','2016-07-06 14:29:53.802908'),(17,'auth','0005_alter_user_last_login_null','2016-07-06 14:29:53.903248'),(18,'auth','0006_require_contenttypes_0002','2016-07-06 14:29:53.909618'),(19,'instructor_task','0001_initial','2016-07-06 14:29:54.079775'),(20,'certificates','0001_initial','2016-07-06 14:29:55.530916'),(21,'certificates','0002_data__certificatehtmlviewconfiguration_data','2016-07-06 14:29:55.557037'),(22,'certificates','0003_data__default_modes','2016-07-06 14:29:55.627039'),(23,'certificates','0004_certificategenerationhistory','2016-07-06 14:29:55.850281'),(24,'certificates','0005_auto_20151208_0801','2016-07-06 14:29:56.014449'),(25,'certificates','0006_certificatetemplateasset_asset_slug','2016-07-06 14:29:56.065401'),(26,'certificates','0007_certificateinvalidation','2016-07-06 14:29:56.298622'),(27,'badges','0001_initial','2016-07-06 14:29:56.752809'),(28,'badges','0002_data__migrate_assertions','2016-07-06 14:29:58.572401'),(29,'badges','0003_schema__add_event_configuration','2016-07-06 14:29:58.767727'),(30,'bookmarks','0001_initial','2016-07-06 14:29:59.181746'),(31,'branding','0001_initial','2016-07-06 14:29:59.461423'),(32,'course_groups','0001_initial','2016-07-06 14:30:00.576633'),(33,'bulk_email','0001_initial','2016-07-06 14:30:01.101064'),(34,'bulk_email','0002_data__load_course_email_template','2016-07-06 14:30:01.181228'),(35,'bulk_email','0003_config_model_feature_flag','2016-07-06 14:30:01.343413'),(36,'bulk_email','0004_add_email_targets','2016-07-06 14:30:01.997927'),(37,'bulk_email','0005_move_target_data','2016-07-06 14:30:02.041646'),(38,'verified_track_content','0001_initial','2016-07-06 14:30:02.104181'),(39,'course_overviews','0001_initial','2016-07-06 14:30:02.229258'),(40,'course_overviews','0002_add_course_catalog_fields','2016-07-06 14:30:02.468553'),(41,'course_overviews','0003_courseoverviewgeneratedhistory','2016-07-06 14:30:02.508461'),(42,'course_overviews','0004_courseoverview_org','2016-07-06 14:30:02.559087'),(43,'course_overviews','0005_delete_courseoverviewgeneratedhistory','2016-07-06 14:30:02.588416'),(44,'course_overviews','0006_courseoverviewimageset','2016-07-06 14:30:02.672411'),(45,'course_overviews','0007_courseoverviewimageconfig','2016-07-06 14:30:02.893657'),(46,'course_overviews','0008_remove_courseoverview_facebook_url','2016-07-06 14:30:02.903881'),(47,'course_overviews','0009_readd_facebook_url','2016-07-06 14:30:02.914923'),(48,'course_overviews','0010_auto_20160329_2317','2016-07-06 14:30:03.041338'),(49,'ccx','0001_initial','2016-07-06 14:30:03.734298'),(50,'ccx','0002_customcourseforedx_structure_json','2016-07-06 14:30:03.927664'),(51,'ccx','0003_add_master_course_staff_in_ccx','2016-07-06 14:30:03.955218'),(52,'ccxcon','0001_initial_ccxcon_model','2016-07-06 14:30:03.997994'),(53,'ccxcon','0002_auto_20160325_0407','2016-07-06 14:30:04.032031'),(54,'certificates','0008_schema__remove_badges','2016-07-06 14:30:04.421786'),(55,'commerce','0001_data__add_ecommerce_service_user','2016-07-06 14:30:04.465648'),(56,'commerce','0002_commerceconfiguration','2016-07-06 14:30:04.661380'),(57,'commerce','0003_auto_20160329_0709','2016-07-06 14:30:04.815829'),(58,'commerce','0004_auto_20160531_0950','2016-07-06 14:30:05.158438'),(59,'contentserver','0001_initial','2016-07-06 14:30:05.353849'),(60,'contentserver','0002_cdnuseragentsconfig','2016-07-06 14:30:05.548766'),(61,'cors_csrf','0001_initial','2016-07-06 14:30:05.746001'),(62,'course_action_state','0001_initial','2016-07-06 14:30:06.224276'),(63,'course_modes','0001_initial','2016-07-06 14:30:06.378868'),(64,'course_modes','0002_coursemode_expiration_datetime_is_explicit','2016-07-06 14:30:06.443751'),(65,'course_modes','0003_auto_20151113_1443','2016-07-06 14:30:06.487696'),(66,'course_modes','0004_auto_20151113_1457','2016-07-06 14:30:06.713957'),(67,'course_modes','0005_auto_20151217_0958','2016-07-06 14:30:06.751071'),(68,'course_modes','0006_auto_20160208_1407','2016-07-06 14:30:06.915501'),(69,'course_modes','0007_coursemode_bulk_sku','2016-07-06 14:30:06.968162'),(70,'course_structures','0001_initial','2016-07-06 14:30:07.018772'),(71,'coursetalk','0001_initial','2016-07-06 14:30:07.229037'),(72,'coursetalk','0002_auto_20160325_0631','2016-07-06 14:30:07.399371'),(73,'courseware','0001_initial','2016-07-06 14:30:10.143398'),(74,'coursewarehistoryextended','0001_initial','2016-07-06 14:30:10.386982'),(75,'coursewarehistoryextended','0002_force_studentmodule_index','2016-07-06 14:30:10.622786'),(76,'credentials','0001_initial','2016-07-06 14:30:10.890876'),(77,'credentials','0002_auto_20160325_0631','2016-07-06 14:30:11.127094'),(78,'credit','0001_initial','2016-07-06 14:30:13.777224'),(79,'credit','0002_creditconfig','2016-07-06 14:30:14.214676'),(80,'credit','0003_auto_20160511_2227','2016-07-06 14:30:14.634454'),(81,'dark_lang','0001_initial','2016-07-06 14:30:15.076384'),(82,'dark_lang','0002_data__enable_on_install','2016-07-06 14:30:15.117753'),(83,'default','0001_initial','2016-07-06 14:30:17.865410'),(84,'default','0002_add_related_name','2016-07-06 14:30:18.155843'),(85,'default','0003_alter_email_max_length','2016-07-06 14:30:18.227771'),(86,'django_comment_common','0001_initial','2016-07-06 14:30:18.947807'),(87,'django_comment_common','0002_forumsconfig','2016-07-06 14:30:19.237243'),(88,'django_notify','0001_initial','2016-07-06 14:30:20.517933'),(89,'django_openid_auth','0001_initial','2016-07-06 14:30:20.926284'),(90,'oauth2','0001_initial','2016-07-06 14:30:22.843114'),(91,'edx_oauth2_provider','0001_initial','2016-07-06 14:30:23.238414'),(92,'edx_proctoring','0001_initial','2016-07-06 14:30:30.284692'),(93,'edx_proctoring','0002_proctoredexamstudentattempt_is_status_acknowledged','2016-07-06 14:30:30.957598'),(94,'edx_proctoring','0003_auto_20160101_0525','2016-07-06 14:30:32.618846'),(95,'edx_proctoring','0004_auto_20160201_0523','2016-07-06 14:30:33.524011'),(96,'edx_proctoring','0005_proctoredexam_hide_after_due','2016-07-06 14:30:34.271428'),(97,'edxval','0001_initial','2016-07-06 14:30:35.123801'),(98,'edxval','0002_data__default_profiles','2016-07-06 14:30:35.184060'),(99,'email_marketing','0001_initial','2016-07-06 14:30:35.818672'),(100,'email_marketing','0002_auto_20160623_1656','2016-07-06 14:30:41.935254'),(101,'embargo','0001_initial','2016-07-06 14:30:43.420639'),(102,'embargo','0002_data__add_countries','2016-07-06 14:30:44.136488'),(103,'external_auth','0001_initial','2016-07-06 14:30:45.196356'),(104,'lms_xblock','0001_initial','2016-07-06 14:30:45.755097'),(105,'microsite_configuration','0001_initial','2016-07-06 14:30:51.911803'),(106,'microsite_configuration','0002_auto_20160202_0228','2016-07-06 14:30:53.323291'),(107,'milestones','0001_initial','2016-07-06 14:30:54.524641'),(108,'milestones','0002_data__seed_relationship_types','2016-07-06 14:30:54.579914'),(109,'milestones','0003_coursecontentmilestone_requirements','2016-07-06 14:30:54.722212'),(110,'milestones','0004_auto_20151221_1445','2016-07-06 14:30:55.070100'),(111,'mobile_api','0001_initial','2016-07-06 14:30:55.894397'),(112,'mobile_api','0002_auto_20160406_0904','2016-07-06 14:30:56.013954'),(113,'notes','0001_initial','2016-07-06 14:30:56.860808'),(114,'oauth2','0002_auto_20160404_0813','2016-07-06 14:30:59.251621'),(115,'oauth2','0003_client_logout_uri','2016-07-06 14:31:01.538628'),(116,'oauth2_provider','0001_initial','2016-07-06 14:31:03.400067'),(117,'oauth2_provider','0002_08_updates','2016-07-06 14:31:04.913536'),(118,'oauth_provider','0001_initial','2016-07-06 14:31:06.681528'),(119,'organizations','0001_initial','2016-07-06 14:31:06.962648'),(120,'programs','0001_initial','2016-07-06 14:31:07.694773'),(121,'programs','0002_programsapiconfig_cache_ttl','2016-07-06 14:31:08.420219'),(122,'programs','0003_auto_20151120_1613','2016-07-06 14:31:11.391727'),(123,'programs','0004_programsapiconfig_enable_certification','2016-07-06 14:31:12.176712'),(124,'programs','0005_programsapiconfig_max_retries','2016-07-06 14:31:13.164066'),(125,'programs','0006_programsapiconfig_xseries_ad_enabled','2016-07-06 14:31:14.113157'),(126,'programs','0007_programsapiconfig_program_listing_enabled','2016-07-06 14:31:14.930619'),(127,'programs','0008_programsapiconfig_program_details_enabled','2016-07-06 14:31:15.756201'),(128,'redirects','0001_initial','2016-07-06 14:31:16.538251'),(129,'rss_proxy','0001_initial','2016-07-06 14:31:16.614282'),(130,'self_paced','0001_initial','2016-07-06 14:31:17.444951'),(131,'sessions','0001_initial','2016-07-06 14:31:17.528910'),(132,'student','0001_initial','2016-07-06 14:31:39.371145'),(133,'shoppingcart','0001_initial','2016-07-06 14:31:58.440770'),(134,'shoppingcart','0002_auto_20151208_1034','2016-07-06 14:32:00.223253'),(135,'shoppingcart','0003_auto_20151217_0958','2016-07-06 14:32:02.265611'),(136,'site_configuration','0001_initial','2016-07-06 14:32:04.247191'),(137,'splash','0001_initial','2016-07-06 14:32:05.404490'),(138,'static_replace','0001_initial','2016-07-06 14:32:06.811625'),(139,'static_replace','0002_assetexcludedextensionsconfig','2016-07-06 14:32:07.974035'),(140,'status','0001_initial','2016-07-06 14:32:10.600015'),(141,'student','0002_auto_20151208_1034','2016-07-06 14:32:12.997483'),(142,'student','0003_auto_20160516_0938','2016-07-06 14:32:16.103791'),(143,'student','0004_auto_20160531_1422','2016-07-06 14:32:16.751840'),(144,'student','0005_auto_20160531_1653','2016-07-06 14:32:17.420060'),(145,'student','0006_logoutviewconfiguration','2016-07-06 14:32:18.127832'),(146,'submissions','0001_initial','2016-07-06 14:32:19.047729'),(147,'submissions','0002_auto_20151119_0913','2016-07-06 14:32:19.289509'),(148,'submissions','0003_submission_status','2016-07-06 14:32:19.409821'),(149,'survey','0001_initial','2016-07-06 14:32:20.474488'),(150,'teams','0001_initial','2016-07-06 14:32:23.011220'),(151,'theming','0001_initial','2016-07-06 14:32:23.824562'),(152,'third_party_auth','0001_initial','2016-07-06 14:32:29.162846'),(153,'third_party_auth','0002_schema__provider_icon_image','2016-07-06 14:32:36.826952'),(154,'track','0001_initial','2016-07-06 14:32:36.922076'),(155,'user_api','0001_initial','2016-07-06 14:32:43.227358'),(156,'util','0001_initial','2016-07-06 14:32:44.357793'),(157,'util','0002_data__default_rate_limit_config','2016-07-06 14:32:44.426709'),(158,'verified_track_content','0002_verifiedtrackcohortedcourse_verified_cohort_name','2016-07-06 14:32:44.528130'),(159,'verify_student','0001_initial','2016-07-06 14:32:57.823635'),(160,'verify_student','0002_auto_20151124_1024','2016-07-06 14:33:01.301910'),(161,'verify_student','0003_auto_20151113_1443','2016-07-06 14:33:02.198967'),(162,'wiki','0001_initial','2016-07-06 14:33:37.471898'),(163,'wiki','0002_remove_article_subscription','2016-07-06 14:33:37.557015'),(164,'workflow','0001_initial','2016-07-06 14:33:37.930115'),(165,'xblock_django','0001_initial','2016-07-06 14:33:39.256915'),(166,'xblock_django','0002_auto_20160204_0809','2016-07-06 14:33:40.658443'),(167,'xblock_django','0003_add_new_config_models','2016-07-06 14:33:44.735503'),(168,'contentstore','0001_initial','2016-07-06 14:34:27.053754'),(169,'course_creators','0001_initial','2016-07-06 14:34:27.155802'),(170,'tagging','0001_initial','2016-07-06 14:34:27.355038'),(171,'xblock_config','0001_initial','2016-07-06 14:34:27.718855'); +INSERT INTO `django_migrations` VALUES (1,'contenttypes','0001_initial','2016-07-26 19:13:35.004724'),(2,'auth','0001_initial','2016-07-26 19:13:35.425592'),(3,'admin','0001_initial','2016-07-26 19:13:35.570207'),(4,'sites','0001_initial','2016-07-26 19:13:35.608026'),(5,'contenttypes','0002_remove_content_type_name','2016-07-26 19:13:35.818875'),(6,'api_admin','0001_initial','2016-07-26 19:13:37.728607'),(7,'api_admin','0002_auto_20160325_1604','2016-07-26 19:13:37.760239'),(8,'api_admin','0003_auto_20160404_1618','2016-07-26 19:13:38.231098'),(9,'api_admin','0004_auto_20160412_1506','2016-07-26 19:13:38.576634'),(10,'api_admin','0005_auto_20160414_1232','2016-07-26 19:13:38.670891'),(11,'api_admin','0006_catalog','2016-07-26 19:13:38.686637'),(12,'assessment','0001_initial','2016-07-26 19:13:41.754404'),(13,'assessment','0002_staffworkflow','2016-07-26 19:13:41.867685'),(14,'auth','0002_alter_permission_name_max_length','2016-07-26 19:13:41.937474'),(15,'auth','0003_alter_user_email_max_length','2016-07-26 19:13:42.005114'),(16,'auth','0004_alter_user_username_opts','2016-07-26 19:13:42.052521'),(17,'auth','0005_alter_user_last_login_null','2016-07-26 19:13:42.116285'),(18,'auth','0006_require_contenttypes_0002','2016-07-26 19:13:42.124120'),(19,'instructor_task','0001_initial','2016-07-26 19:13:42.296826'),(20,'certificates','0001_initial','2016-07-26 19:13:43.326364'),(21,'certificates','0002_data__certificatehtmlviewconfiguration_data','2016-07-26 19:13:43.352445'),(22,'certificates','0003_data__default_modes','2016-07-26 19:13:43.451555'),(23,'certificates','0004_certificategenerationhistory','2016-07-26 19:13:43.600227'),(24,'certificates','0005_auto_20151208_0801','2016-07-26 19:13:43.684110'),(25,'certificates','0006_certificatetemplateasset_asset_slug','2016-07-26 19:13:43.731391'),(26,'certificates','0007_certificateinvalidation','2016-07-26 19:13:43.883967'),(27,'badges','0001_initial','2016-07-26 19:13:44.258123'),(28,'badges','0002_data__migrate_assertions','2016-07-26 19:13:44.304104'),(29,'badges','0003_schema__add_event_configuration','2016-07-26 19:13:44.515599'),(30,'bookmarks','0001_initial','2016-07-26 19:13:44.991686'),(31,'branding','0001_initial','2016-07-26 19:13:45.364441'),(32,'course_groups','0001_initial','2016-07-26 19:13:46.493228'),(33,'bulk_email','0001_initial','2016-07-26 19:13:47.000468'),(34,'bulk_email','0002_data__load_course_email_template','2016-07-26 19:13:47.095861'),(35,'bulk_email','0003_config_model_feature_flag','2016-07-26 19:13:47.254503'),(36,'bulk_email','0004_add_email_targets','2016-07-26 19:13:47.767359'),(37,'bulk_email','0005_move_target_data','2016-07-26 19:13:47.792356'),(38,'catalog','0001_initial','2016-07-26 19:13:47.954417'),(39,'verified_track_content','0001_initial','2016-07-26 19:13:47.996821'),(40,'course_overviews','0001_initial','2016-07-26 19:13:48.119870'),(41,'course_overviews','0002_add_course_catalog_fields','2016-07-26 19:13:48.360262'),(42,'course_overviews','0003_courseoverviewgeneratedhistory','2016-07-26 19:13:48.401715'),(43,'course_overviews','0004_courseoverview_org','2016-07-26 19:13:48.455338'),(44,'course_overviews','0005_delete_courseoverviewgeneratedhistory','2016-07-26 19:13:48.485690'),(45,'course_overviews','0006_courseoverviewimageset','2016-07-26 19:13:48.570130'),(46,'course_overviews','0007_courseoverviewimageconfig','2016-07-26 19:13:48.747879'),(47,'course_overviews','0008_remove_courseoverview_facebook_url','2016-07-26 19:13:48.756696'),(48,'course_overviews','0009_readd_facebook_url','2016-07-26 19:13:48.764684'),(49,'course_overviews','0010_auto_20160329_2317','2016-07-26 19:13:48.882610'),(50,'ccx','0001_initial','2016-07-26 19:13:49.461710'),(51,'ccx','0002_customcourseforedx_structure_json','2016-07-26 19:13:49.626113'),(52,'ccx','0003_add_master_course_staff_in_ccx','2016-07-26 19:13:49.652505'),(53,'ccxcon','0001_initial_ccxcon_model','2016-07-26 19:13:49.700856'),(54,'ccxcon','0002_auto_20160325_0407','2016-07-26 19:13:49.731245'),(55,'certificates','0008_schema__remove_badges','2016-07-26 19:13:50.097075'),(56,'commerce','0001_data__add_ecommerce_service_user','2016-07-26 19:13:50.138950'),(57,'commerce','0002_commerceconfiguration','2016-07-26 19:13:50.328650'),(58,'commerce','0003_auto_20160329_0709','2016-07-26 19:13:50.511058'),(59,'commerce','0004_auto_20160531_0950','2016-07-26 19:13:50.893543'),(60,'contentserver','0001_initial','2016-07-26 19:13:51.107626'),(61,'contentserver','0002_cdnuseragentsconfig','2016-07-26 19:13:51.345146'),(62,'cors_csrf','0001_initial','2016-07-26 19:13:51.623480'),(63,'course_action_state','0001_initial','2016-07-26 19:13:52.145450'),(64,'course_modes','0001_initial','2016-07-26 19:13:52.283103'),(65,'course_modes','0002_coursemode_expiration_datetime_is_explicit','2016-07-26 19:13:52.370448'),(66,'course_modes','0003_auto_20151113_1443','2016-07-26 19:13:52.427947'),(67,'course_modes','0004_auto_20151113_1457','2016-07-26 19:13:52.818395'),(68,'course_modes','0005_auto_20151217_0958','2016-07-26 19:13:52.867474'),(69,'course_modes','0006_auto_20160208_1407','2016-07-26 19:13:53.095046'),(70,'course_modes','0007_coursemode_bulk_sku','2016-07-26 19:13:53.161748'),(71,'course_structures','0001_initial','2016-07-26 19:13:53.214143'),(72,'coursetalk','0001_initial','2016-07-26 19:13:53.507879'),(73,'coursetalk','0002_auto_20160325_0631','2016-07-26 19:13:53.700700'),(74,'courseware','0001_initial','2016-07-26 19:13:57.276682'),(75,'coursewarehistoryextended','0001_initial','2016-07-26 19:13:57.744150'),(76,'coursewarehistoryextended','0002_force_studentmodule_index','2016-07-26 19:13:58.213040'),(77,'credentials','0001_initial','2016-07-26 19:13:58.650182'),(78,'credentials','0002_auto_20160325_0631','2016-07-26 19:13:59.108566'),(79,'credit','0001_initial','2016-07-26 19:14:04.465827'),(80,'credit','0002_creditconfig','2016-07-26 19:14:04.841419'),(81,'credit','0003_auto_20160511_2227','2016-07-26 19:14:05.184186'),(82,'dark_lang','0001_initial','2016-07-26 19:14:05.588248'),(83,'dark_lang','0002_data__enable_on_install','2016-07-26 19:14:05.626127'),(84,'default','0001_initial','2016-07-26 19:14:06.364908'),(85,'default','0002_add_related_name','2016-07-26 19:14:06.689431'),(86,'default','0003_alter_email_max_length','2016-07-26 19:14:06.765512'),(87,'django_comment_common','0001_initial','2016-07-26 19:14:07.592001'),(88,'django_comment_common','0002_forumsconfig','2016-07-26 19:14:07.942062'),(89,'django_notify','0001_initial','2016-07-26 19:14:09.463073'),(90,'django_openid_auth','0001_initial','2016-07-26 19:14:10.018655'),(91,'oauth2','0001_initial','2016-07-26 19:14:12.873726'),(92,'edx_oauth2_provider','0001_initial','2016-07-26 19:14:13.370514'),(93,'edx_proctoring','0001_initial','2016-07-26 19:14:21.626445'),(94,'edx_proctoring','0002_proctoredexamstudentattempt_is_status_acknowledged','2016-07-26 19:14:22.454972'),(95,'edx_proctoring','0003_auto_20160101_0525','2016-07-26 19:14:24.204661'),(96,'edx_proctoring','0004_auto_20160201_0523','2016-07-26 19:14:24.988247'),(97,'edx_proctoring','0005_proctoredexam_hide_after_due','2016-07-26 19:14:25.689957'),(98,'edxval','0001_initial','2016-07-26 19:14:26.546348'),(99,'edxval','0002_data__default_profiles','2016-07-26 19:14:26.602577'),(100,'email_marketing','0001_initial','2016-07-26 19:14:28.829725'),(101,'email_marketing','0002_auto_20160623_1656','2016-07-26 19:14:32.475561'),(102,'email_marketing','0003_auto_20160715_1145','2016-07-26 19:14:35.261076'),(103,'embargo','0001_initial','2016-07-26 19:14:37.021767'),(104,'embargo','0002_data__add_countries','2016-07-26 19:14:37.672255'),(105,'external_auth','0001_initial','2016-07-26 19:14:39.015022'),(106,'lms_xblock','0001_initial','2016-07-26 19:14:39.712400'),(107,'microsite_configuration','0001_initial','2016-07-26 19:14:46.539629'),(108,'microsite_configuration','0002_auto_20160202_0228','2016-07-26 19:14:48.118992'),(109,'milestones','0001_initial','2016-07-26 19:14:49.389011'),(110,'milestones','0002_data__seed_relationship_types','2016-07-26 19:14:49.444099'),(111,'milestones','0003_coursecontentmilestone_requirements','2016-07-26 19:14:49.567795'),(112,'milestones','0004_auto_20151221_1445','2016-07-26 19:14:51.715779'),(113,'mobile_api','0001_initial','2016-07-26 19:14:52.147732'),(114,'mobile_api','0002_auto_20160406_0904','2016-07-26 19:14:52.279948'),(115,'notes','0001_initial','2016-07-26 19:14:52.781568'),(116,'oauth2','0002_auto_20160404_0813','2016-07-26 19:14:54.227986'),(117,'oauth2','0003_client_logout_uri','2016-07-26 19:14:54.725806'),(118,'oauth2_provider','0001_initial','2016-07-26 19:14:57.484291'),(119,'oauth2_provider','0002_08_updates','2016-07-26 19:14:59.708494'),(120,'oauth_provider','0001_initial','2016-07-26 19:15:01.474403'),(121,'organizations','0001_initial','2016-07-26 19:15:01.806297'),(122,'programs','0001_initial','2016-07-26 19:15:02.751365'),(123,'programs','0002_programsapiconfig_cache_ttl','2016-07-26 19:15:03.656487'),(124,'programs','0003_auto_20151120_1613','2016-07-26 19:15:07.302676'),(125,'programs','0004_programsapiconfig_enable_certification','2016-07-26 19:15:08.287259'),(126,'programs','0005_programsapiconfig_max_retries','2016-07-26 19:15:09.098420'),(127,'programs','0006_programsapiconfig_xseries_ad_enabled','2016-07-26 19:15:09.985118'),(128,'programs','0007_programsapiconfig_program_listing_enabled','2016-07-26 19:15:10.903170'),(129,'programs','0008_programsapiconfig_program_details_enabled','2016-07-26 19:15:11.783959'),(130,'redirects','0001_initial','2016-07-26 19:15:12.636789'),(131,'rss_proxy','0001_initial','2016-07-26 19:15:12.709814'),(132,'self_paced','0001_initial','2016-07-26 19:15:13.585514'),(133,'sessions','0001_initial','2016-07-26 19:15:13.668736'),(134,'student','0001_initial','2016-07-26 19:15:36.507060'),(135,'shoppingcart','0001_initial','2016-07-26 19:15:56.518370'),(136,'shoppingcart','0002_auto_20151208_1034','2016-07-26 19:15:58.505894'),(137,'shoppingcart','0003_auto_20151217_0958','2016-07-26 19:16:00.563395'),(138,'site_configuration','0001_initial','2016-07-26 19:16:02.821723'),(139,'splash','0001_initial','2016-07-26 19:16:04.061653'),(140,'static_replace','0001_initial','2016-07-26 19:16:05.292300'),(141,'static_replace','0002_assetexcludedextensionsconfig','2016-07-26 19:16:06.690151'),(142,'status','0001_initial','2016-07-26 19:16:09.536882'),(143,'student','0002_auto_20151208_1034','2016-07-26 19:16:12.967145'),(144,'student','0003_auto_20160516_0938','2016-07-26 19:16:14.614620'),(145,'student','0004_auto_20160531_1422','2016-07-26 19:16:15.264040'),(146,'student','0005_auto_20160531_1653','2016-07-26 19:16:16.017203'),(147,'student','0006_logoutviewconfiguration','2016-07-26 19:16:16.760217'),(148,'submissions','0001_initial','2016-07-26 19:16:17.770109'),(149,'submissions','0002_auto_20151119_0913','2016-07-26 19:16:18.014515'),(150,'submissions','0003_submission_status','2016-07-26 19:16:18.141720'),(151,'survey','0001_initial','2016-07-26 19:16:19.404825'),(152,'teams','0001_initial','2016-07-26 19:16:22.853114'),(153,'theming','0001_initial','2016-07-26 19:16:23.995445'),(154,'third_party_auth','0001_initial','2016-07-26 19:16:30.367566'),(155,'third_party_auth','0002_schema__provider_icon_image','2016-07-26 19:16:38.348159'),(156,'track','0001_initial','2016-07-26 19:16:38.440111'),(157,'user_api','0001_initial','2016-07-26 19:16:45.745905'),(158,'util','0001_initial','2016-07-26 19:16:46.977353'),(159,'util','0002_data__default_rate_limit_config','2016-07-26 19:16:47.048676'),(160,'verified_track_content','0002_verifiedtrackcohortedcourse_verified_cohort_name','2016-07-26 19:16:47.159971'),(161,'verify_student','0001_initial','2016-07-26 19:17:03.363318'),(162,'verify_student','0002_auto_20151124_1024','2016-07-26 19:17:06.814575'),(163,'verify_student','0003_auto_20151113_1443','2016-07-26 19:17:07.646017'),(164,'wiki','0001_initial','2016-07-26 19:17:42.174831'),(165,'wiki','0002_remove_article_subscription','2016-07-26 19:17:42.251520'),(166,'wiki','0003_ip_address_conv','2016-07-26 19:17:46.421042'),(167,'workflow','0001_initial','2016-07-26 19:17:46.791633'),(168,'xblock_django','0001_initial','2016-07-26 19:17:48.190472'),(169,'xblock_django','0002_auto_20160204_0809','2016-07-26 19:17:49.489649'),(170,'xblock_django','0003_add_new_config_models','2016-07-26 19:17:53.787235'),(171,'xblock_django','0004_delete_xblock_disable_config','2016-07-26 19:17:55.616689'),(172,'contentstore','0001_initial','2016-07-26 19:18:32.613490'),(173,'course_creators','0001_initial','2016-07-26 19:18:32.711965'),(174,'tagging','0001_initial','2016-07-26 19:18:32.906024'),(175,'xblock_config','0001_initial','2016-07-26 19:18:33.258247'); /*!40000 ALTER TABLE `django_migrations` ENABLE KEYS */; UNLOCK TABLES; /*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */; @@ -34,4 +34,4 @@ UNLOCK TABLES; /*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */; /*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */; --- Dump completed on 2016-07-06 14:34:35 +-- Dump completed on 2016-07-26 19:18:40 diff --git a/common/test/db_cache/bok_choy_migrations_data_student_module_history.sql b/common/test/db_cache/bok_choy_migrations_data_student_module_history.sql index e588dae2ce..e197f3c812 100644 --- a/common/test/db_cache/bok_choy_migrations_data_student_module_history.sql +++ b/common/test/db_cache/bok_choy_migrations_data_student_module_history.sql @@ -21,7 +21,7 @@ LOCK TABLES `django_migrations` WRITE; /*!40000 ALTER TABLE `django_migrations` DISABLE KEYS */; -INSERT INTO `django_migrations` VALUES (1,'contenttypes','0001_initial','2016-07-06 14:37:14.053913'),(2,'auth','0001_initial','2016-07-06 14:37:14.112675'),(3,'admin','0001_initial','2016-07-06 14:37:14.144301'),(4,'sites','0001_initial','2016-07-06 14:37:14.157723'),(5,'contenttypes','0002_remove_content_type_name','2016-07-06 14:37:14.255384'),(6,'api_admin','0001_initial','2016-07-06 14:37:14.324658'),(7,'api_admin','0002_auto_20160325_1604','2016-07-06 14:37:14.351944'),(8,'api_admin','0003_auto_20160404_1618','2016-07-06 14:37:14.588585'),(9,'api_admin','0004_auto_20160412_1506','2016-07-06 14:37:14.757573'),(10,'api_admin','0005_auto_20160414_1232','2016-07-06 14:37:14.806995'),(11,'api_admin','0006_catalog','2016-07-06 14:37:14.821647'),(12,'assessment','0001_initial','2016-07-06 14:37:15.878730'),(13,'assessment','0002_staffworkflow','2016-07-06 14:37:15.896021'),(14,'auth','0002_alter_permission_name_max_length','2016-07-06 14:37:15.947527'),(15,'auth','0003_alter_user_email_max_length','2016-07-06 14:37:16.005120'),(16,'auth','0004_alter_user_username_opts','2016-07-06 14:37:16.055201'),(17,'auth','0005_alter_user_last_login_null','2016-07-06 14:37:16.108197'),(18,'auth','0006_require_contenttypes_0002','2016-07-06 14:37:16.111925'),(19,'instructor_task','0001_initial','2016-07-06 14:37:16.170886'),(20,'certificates','0001_initial','2016-07-06 14:37:16.725225'),(21,'certificates','0002_data__certificatehtmlviewconfiguration_data','2016-07-06 14:37:16.745827'),(22,'certificates','0003_data__default_modes','2016-07-06 14:37:16.762280'),(23,'certificates','0004_certificategenerationhistory','2016-07-06 14:37:16.838243'),(24,'certificates','0005_auto_20151208_0801','2016-07-06 14:37:16.921173'),(25,'certificates','0006_certificatetemplateasset_asset_slug','2016-07-06 14:37:16.941999'),(26,'certificates','0007_certificateinvalidation','2016-07-06 14:37:17.027802'),(27,'badges','0001_initial','2016-07-06 14:37:17.211049'),(28,'badges','0002_data__migrate_assertions','2016-07-06 14:37:17.232961'),(29,'badges','0003_schema__add_event_configuration','2016-07-06 14:37:17.417384'),(30,'bookmarks','0001_initial','2016-07-06 14:37:17.732568'),(31,'branding','0001_initial','2016-07-06 14:37:17.937132'),(32,'course_groups','0001_initial','2016-07-06 14:37:18.913669'),(33,'bulk_email','0001_initial','2016-07-06 14:37:21.028752'),(34,'bulk_email','0002_data__load_course_email_template','2016-07-06 14:37:21.050642'),(35,'bulk_email','0003_config_model_feature_flag','2016-07-06 14:37:21.157326'),(36,'bulk_email','0004_add_email_targets','2016-07-06 14:37:21.508676'),(37,'bulk_email','0005_move_target_data','2016-07-06 14:37:21.531591'),(38,'verified_track_content','0001_initial','2016-07-06 14:37:21.553235'),(39,'course_overviews','0001_initial','2016-07-06 14:37:21.601755'),(40,'course_overviews','0002_add_course_catalog_fields','2016-07-06 14:37:21.749473'),(41,'course_overviews','0003_courseoverviewgeneratedhistory','2016-07-06 14:37:21.772481'),(42,'course_overviews','0004_courseoverview_org','2016-07-06 14:37:21.801484'),(43,'course_overviews','0005_delete_courseoverviewgeneratedhistory','2016-07-06 14:37:21.824149'),(44,'course_overviews','0006_courseoverviewimageset','2016-07-06 14:37:21.857205'),(45,'course_overviews','0007_courseoverviewimageconfig','2016-07-06 14:37:21.973424'),(46,'course_overviews','0008_remove_courseoverview_facebook_url','2016-07-06 14:37:21.977710'),(47,'course_overviews','0009_readd_facebook_url','2016-07-06 14:37:22.012640'),(48,'course_overviews','0010_auto_20160329_2317','2016-07-06 14:37:22.075821'),(49,'ccx','0001_initial','2016-07-06 14:37:22.469686'),(50,'ccx','0002_customcourseforedx_structure_json','2016-07-06 14:37:22.595754'),(51,'ccx','0003_add_master_course_staff_in_ccx','2016-07-06 14:37:22.624157'),(52,'ccxcon','0001_initial_ccxcon_model','2016-07-06 14:37:22.650368'),(53,'ccxcon','0002_auto_20160325_0407','2016-07-06 14:37:22.675015'),(54,'certificates','0008_schema__remove_badges','2016-07-06 14:37:22.962698'),(55,'commerce','0001_data__add_ecommerce_service_user','2016-07-06 14:37:22.985876'),(56,'commerce','0002_commerceconfiguration','2016-07-06 14:37:23.148408'),(57,'commerce','0003_auto_20160329_0709','2016-07-06 14:37:23.279602'),(58,'commerce','0004_auto_20160531_0950','2016-07-06 14:37:23.523546'),(59,'contentserver','0001_initial','2016-07-06 14:37:23.653501'),(60,'contentserver','0002_cdnuseragentsconfig','2016-07-06 14:37:23.787850'),(61,'cors_csrf','0001_initial','2016-07-06 14:37:23.925460'),(62,'course_action_state','0001_initial','2016-07-06 14:37:24.214499'),(63,'course_modes','0001_initial','2016-07-06 14:37:24.297514'),(64,'course_modes','0002_coursemode_expiration_datetime_is_explicit','2016-07-06 14:37:24.321209'),(65,'course_modes','0003_auto_20151113_1443','2016-07-06 14:37:24.350719'),(66,'course_modes','0004_auto_20151113_1457','2016-07-06 14:37:24.499338'),(67,'course_modes','0005_auto_20151217_0958','2016-07-06 14:37:24.532699'),(68,'course_modes','0006_auto_20160208_1407','2016-07-06 14:37:24.696875'),(69,'course_modes','0007_coursemode_bulk_sku','2016-07-06 14:37:24.725182'),(70,'course_structures','0001_initial','2016-07-06 14:37:24.752077'),(71,'coursetalk','0001_initial','2016-07-06 14:37:24.904290'),(72,'coursetalk','0002_auto_20160325_0631','2016-07-06 14:37:25.057002'),(73,'courseware','0001_initial','2016-07-06 14:37:27.083950'),(74,'coursewarehistoryextended','0001_initial','2016-07-06 14:37:27.352640'),(75,'coursewarehistoryextended','0002_force_studentmodule_index','2016-07-06 14:37:27.569247'),(76,'credentials','0001_initial','2016-07-06 14:37:27.788298'),(77,'credentials','0002_auto_20160325_0631','2016-07-06 14:37:27.992671'),(78,'credit','0001_initial','2016-07-06 14:37:29.733375'),(79,'credit','0002_creditconfig','2016-07-06 14:37:30.020646'),(80,'credit','0003_auto_20160511_2227','2016-07-06 14:37:30.320302'),(81,'dark_lang','0001_initial','2016-07-06 14:37:30.637986'),(82,'dark_lang','0002_data__enable_on_install','2016-07-06 14:37:30.667563'),(83,'default','0001_initial','2016-07-06 14:37:31.514941'),(84,'default','0002_add_related_name','2016-07-06 14:37:31.897860'),(85,'default','0003_alter_email_max_length','2016-07-06 14:37:31.933155'),(86,'django_comment_common','0001_initial','2016-07-06 14:37:32.880713'),(87,'django_comment_common','0002_forumsconfig','2016-07-06 14:37:33.365430'),(88,'django_notify','0001_initial','2016-07-06 14:37:36.490204'),(89,'django_openid_auth','0001_initial','2016-07-06 14:37:36.813867'),(90,'oauth2','0001_initial','2016-07-06 14:37:38.215395'),(91,'edx_oauth2_provider','0001_initial','2016-07-06 14:37:38.534023'),(92,'edx_proctoring','0001_initial','2016-07-06 14:37:43.991684'),(93,'edx_proctoring','0002_proctoredexamstudentattempt_is_status_acknowledged','2016-07-06 14:37:44.524760'),(94,'edx_proctoring','0003_auto_20160101_0525','2016-07-06 14:37:45.615362'),(95,'edx_proctoring','0004_auto_20160201_0523','2016-07-06 14:37:46.158117'),(96,'edx_proctoring','0005_proctoredexam_hide_after_due','2016-07-06 14:37:46.715282'),(97,'edxval','0001_initial','2016-07-06 14:37:47.155727'),(98,'edxval','0002_data__default_profiles','2016-07-06 14:37:47.192000'),(99,'email_marketing','0001_initial','2016-07-06 14:37:47.790526'),(100,'email_marketing','0002_auto_20160623_1656','2016-07-06 14:37:53.232271'),(101,'embargo','0001_initial','2016-07-06 14:37:55.953479'),(102,'embargo','0002_data__add_countries','2016-07-06 14:37:56.278426'),(103,'external_auth','0001_initial','2016-07-06 14:37:56.918663'),(104,'lms_xblock','0001_initial','2016-07-06 14:37:57.272115'),(105,'microsite_configuration','0001_initial','2016-07-06 14:38:00.637866'),(106,'microsite_configuration','0002_auto_20160202_0228','2016-07-06 14:38:01.619855'),(107,'milestones','0001_initial','2016-07-06 14:38:02.260166'),(108,'milestones','0002_data__seed_relationship_types','2016-07-06 14:38:02.298063'),(109,'milestones','0003_coursecontentmilestone_requirements','2016-07-06 14:38:02.360708'),(110,'milestones','0004_auto_20151221_1445','2016-07-06 14:38:02.591847'),(111,'mobile_api','0001_initial','2016-07-06 14:38:03.108492'),(112,'mobile_api','0002_auto_20160406_0904','2016-07-06 14:38:03.197515'),(113,'notes','0001_initial','2016-07-06 14:38:03.795377'),(114,'oauth2','0002_auto_20160404_0813','2016-07-06 14:38:05.715812'),(115,'oauth2','0003_client_logout_uri','2016-07-06 14:38:06.358777'),(116,'oauth2_provider','0001_initial','2016-07-06 14:38:08.983703'),(117,'oauth2_provider','0002_08_updates','2016-07-06 14:38:12.079456'),(118,'oauth_provider','0001_initial','2016-07-06 14:38:12.992286'),(119,'organizations','0001_initial','2016-07-06 14:38:13.129477'),(120,'programs','0001_initial','2016-07-06 14:38:13.545747'),(121,'programs','0002_programsapiconfig_cache_ttl','2016-07-06 14:38:13.965726'),(122,'programs','0003_auto_20151120_1613','2016-07-06 14:38:15.888298'),(123,'programs','0004_programsapiconfig_enable_certification','2016-07-06 14:38:16.537621'),(124,'programs','0005_programsapiconfig_max_retries','2016-07-06 14:38:17.201712'),(125,'programs','0006_programsapiconfig_xseries_ad_enabled','2016-07-06 14:38:17.885137'),(126,'programs','0007_programsapiconfig_program_listing_enabled','2016-07-06 14:38:18.555885'),(127,'programs','0008_programsapiconfig_program_details_enabled','2016-07-06 14:38:19.263088'),(128,'redirects','0001_initial','2016-07-06 14:38:19.949660'),(129,'rss_proxy','0001_initial','2016-07-06 14:38:19.994712'),(130,'self_paced','0001_initial','2016-07-06 14:38:20.717527'),(131,'sessions','0001_initial','2016-07-06 14:38:20.764121'),(132,'student','0001_initial','2016-07-06 14:38:39.857569'),(133,'shoppingcart','0001_initial','2016-07-06 14:38:58.270157'),(134,'shoppingcart','0002_auto_20151208_1034','2016-07-06 14:38:59.568023'),(135,'shoppingcart','0003_auto_20151217_0958','2016-07-06 14:39:01.134312'),(136,'site_configuration','0001_initial','2016-07-06 14:39:03.067037'),(137,'splash','0001_initial','2016-07-06 14:39:04.010385'),(138,'static_replace','0001_initial','2016-07-06 14:39:04.996752'),(139,'static_replace','0002_assetexcludedextensionsconfig','2016-07-06 14:39:06.062181'),(140,'status','0001_initial','2016-07-06 14:39:08.246598'),(141,'student','0002_auto_20151208_1034','2016-07-06 14:39:10.420193'),(142,'student','0003_auto_20160516_0938','2016-07-06 14:39:12.607836'),(143,'student','0004_auto_20160531_1422','2016-07-06 14:39:13.826347'),(144,'student','0005_auto_20160531_1653','2016-07-06 14:39:15.037877'),(145,'student','0006_logoutviewconfiguration','2016-07-06 14:39:17.728939'),(146,'submissions','0001_initial','2016-07-06 14:39:18.213351'),(147,'submissions','0002_auto_20151119_0913','2016-07-06 14:39:18.361129'),(148,'submissions','0003_submission_status','2016-07-06 14:39:18.430228'),(149,'survey','0001_initial','2016-07-06 14:39:19.207103'),(150,'teams','0001_initial','2016-07-06 14:39:21.260885'),(151,'theming','0001_initial','2016-07-06 14:39:21.936022'),(152,'third_party_auth','0001_initial','2016-07-06 14:39:26.634459'),(153,'third_party_auth','0002_schema__provider_icon_image','2016-07-06 14:39:32.815890'),(154,'track','0001_initial','2016-07-06 14:39:32.878899'),(155,'user_api','0001_initial','2016-07-06 14:39:39.686203'),(156,'util','0001_initial','2016-07-06 14:39:40.716401'),(157,'util','0002_data__default_rate_limit_config','2016-07-06 14:39:40.774938'),(158,'verified_track_content','0002_verifiedtrackcohortedcourse_verified_cohort_name','2016-07-06 14:39:40.832631'),(159,'verify_student','0001_initial','2016-07-06 14:39:52.402708'),(160,'verify_student','0002_auto_20151124_1024','2016-07-06 14:39:53.807259'),(161,'verify_student','0003_auto_20151113_1443','2016-07-06 14:39:55.285482'),(162,'wiki','0001_initial','2016-07-06 14:40:28.040196'),(163,'wiki','0002_remove_article_subscription','2016-07-06 14:40:28.106054'),(164,'workflow','0001_initial','2016-07-06 14:40:28.315964'),(165,'xblock_django','0001_initial','2016-07-06 14:40:29.215507'),(166,'xblock_django','0002_auto_20160204_0809','2016-07-06 14:40:30.129351'),(167,'xblock_django','0003_add_new_config_models','2016-07-06 14:40:33.639412'),(168,'contentstore','0001_initial','2016-07-06 14:41:06.810353'),(169,'course_creators','0001_initial','2016-07-06 14:41:06.854060'),(170,'tagging','0001_initial','2016-07-06 14:41:06.944134'),(171,'xblock_config','0001_initial','2016-07-06 14:41:07.236505'); +INSERT INTO `django_migrations` VALUES (1,'contenttypes','0001_initial','2016-07-26 19:21:30.513821'),(2,'auth','0001_initial','2016-07-26 19:21:30.613568'),(3,'admin','0001_initial','2016-07-26 19:21:30.674477'),(4,'sites','0001_initial','2016-07-26 19:21:30.691256'),(5,'contenttypes','0002_remove_content_type_name','2016-07-26 19:21:30.878068'),(6,'api_admin','0001_initial','2016-07-26 19:21:31.032875'),(7,'api_admin','0002_auto_20160325_1604','2016-07-26 19:21:31.076960'),(8,'api_admin','0003_auto_20160404_1618','2016-07-26 19:21:31.548382'),(9,'api_admin','0004_auto_20160412_1506','2016-07-26 19:21:31.794592'),(10,'api_admin','0005_auto_20160414_1232','2016-07-26 19:21:33.638939'),(11,'api_admin','0006_catalog','2016-07-26 19:21:33.654194'),(12,'assessment','0001_initial','2016-07-26 19:21:34.650281'),(13,'assessment','0002_staffworkflow','2016-07-26 19:21:34.668684'),(14,'auth','0002_alter_permission_name_max_length','2016-07-26 19:21:34.714844'),(15,'auth','0003_alter_user_email_max_length','2016-07-26 19:21:34.761841'),(16,'auth','0004_alter_user_username_opts','2016-07-26 19:21:34.813322'),(17,'auth','0005_alter_user_last_login_null','2016-07-26 19:21:34.855066'),(18,'auth','0006_require_contenttypes_0002','2016-07-26 19:21:34.858858'),(19,'instructor_task','0001_initial','2016-07-26 19:21:34.905433'),(20,'certificates','0001_initial','2016-07-26 19:21:35.435608'),(21,'certificates','0002_data__certificatehtmlviewconfiguration_data','2016-07-26 19:21:35.455242'),(22,'certificates','0003_data__default_modes','2016-07-26 19:21:35.472995'),(23,'certificates','0004_certificategenerationhistory','2016-07-26 19:21:35.547210'),(24,'certificates','0005_auto_20151208_0801','2016-07-26 19:21:35.623957'),(25,'certificates','0006_certificatetemplateasset_asset_slug','2016-07-26 19:21:35.644037'),(26,'certificates','0007_certificateinvalidation','2016-07-26 19:21:35.740150'),(27,'badges','0001_initial','2016-07-26 19:21:35.977520'),(28,'badges','0002_data__migrate_assertions','2016-07-26 19:21:36.004921'),(29,'badges','0003_schema__add_event_configuration','2016-07-26 19:21:36.214821'),(30,'bookmarks','0001_initial','2016-07-26 19:21:36.529527'),(31,'branding','0001_initial','2016-07-26 19:21:36.766984'),(32,'course_groups','0001_initial','2016-07-26 19:21:37.765416'),(33,'bulk_email','0001_initial','2016-07-26 19:21:38.135758'),(34,'bulk_email','0002_data__load_course_email_template','2016-07-26 19:21:38.159447'),(35,'bulk_email','0003_config_model_feature_flag','2016-07-26 19:21:38.270161'),(36,'bulk_email','0004_add_email_targets','2016-07-26 19:21:38.709599'),(37,'bulk_email','0005_move_target_data','2016-07-26 19:21:38.730953'),(38,'catalog','0001_initial','2016-07-26 19:21:38.890302'),(39,'verified_track_content','0001_initial','2016-07-26 19:21:38.917447'),(40,'course_overviews','0001_initial','2016-07-26 19:21:38.975738'),(41,'course_overviews','0002_add_course_catalog_fields','2016-07-26 19:21:39.125360'),(42,'course_overviews','0003_courseoverviewgeneratedhistory','2016-07-26 19:21:39.151487'),(43,'course_overviews','0004_courseoverview_org','2016-07-26 19:21:39.187260'),(44,'course_overviews','0005_delete_courseoverviewgeneratedhistory','2016-07-26 19:21:39.209991'),(45,'course_overviews','0006_courseoverviewimageset','2016-07-26 19:21:39.248775'),(46,'course_overviews','0007_courseoverviewimageconfig','2016-07-26 19:21:39.422772'),(47,'course_overviews','0008_remove_courseoverview_facebook_url','2016-07-26 19:21:39.428033'),(48,'course_overviews','0009_readd_facebook_url','2016-07-26 19:21:39.476115'),(49,'course_overviews','0010_auto_20160329_2317','2016-07-26 19:21:39.547647'),(50,'ccx','0001_initial','2016-07-26 19:21:40.040911'),(51,'ccx','0002_customcourseforedx_structure_json','2016-07-26 19:21:40.202360'),(52,'ccx','0003_add_master_course_staff_in_ccx','2016-07-26 19:21:40.225528'),(53,'ccxcon','0001_initial_ccxcon_model','2016-07-26 19:21:40.253875'),(54,'ccxcon','0002_auto_20160325_0407','2016-07-26 19:21:40.279359'),(55,'certificates','0008_schema__remove_badges','2016-07-26 19:21:40.673571'),(56,'commerce','0001_data__add_ecommerce_service_user','2016-07-26 19:21:40.701499'),(57,'commerce','0002_commerceconfiguration','2016-07-26 19:21:40.841848'),(58,'commerce','0003_auto_20160329_0709','2016-07-26 19:21:40.997534'),(59,'commerce','0004_auto_20160531_0950','2016-07-26 19:21:41.315004'),(60,'contentserver','0001_initial','2016-07-26 19:21:41.467849'),(61,'contentserver','0002_cdnuseragentsconfig','2016-07-26 19:21:41.631163'),(62,'cors_csrf','0001_initial','2016-07-26 19:21:41.783914'),(63,'course_action_state','0001_initial','2016-07-26 19:21:42.116801'),(64,'course_modes','0001_initial','2016-07-26 19:21:42.189509'),(65,'course_modes','0002_coursemode_expiration_datetime_is_explicit','2016-07-26 19:21:42.218816'),(66,'course_modes','0003_auto_20151113_1443','2016-07-26 19:21:42.243280'),(67,'course_modes','0004_auto_20151113_1457','2016-07-26 19:21:42.405329'),(68,'course_modes','0005_auto_20151217_0958','2016-07-26 19:21:42.439703'),(69,'course_modes','0006_auto_20160208_1407','2016-07-26 19:21:42.611065'),(70,'course_modes','0007_coursemode_bulk_sku','2016-07-26 19:21:42.640224'),(71,'course_structures','0001_initial','2016-07-26 19:21:42.667841'),(72,'coursetalk','0001_initial','2016-07-26 19:21:42.860674'),(73,'coursetalk','0002_auto_20160325_0631','2016-07-26 19:21:43.027808'),(74,'courseware','0001_initial','2016-07-26 19:21:45.549484'),(75,'coursewarehistoryextended','0001_initial','2016-07-26 19:21:45.933687'),(76,'coursewarehistoryextended','0002_force_studentmodule_index','2016-07-26 19:21:46.294042'),(77,'credentials','0001_initial','2016-07-26 19:21:46.627739'),(78,'credentials','0002_auto_20160325_0631','2016-07-26 19:21:46.963720'),(79,'credit','0001_initial','2016-07-26 19:21:51.766493'),(80,'credit','0002_creditconfig','2016-07-26 19:21:52.024419'),(81,'credit','0003_auto_20160511_2227','2016-07-26 19:21:52.284392'),(82,'dark_lang','0001_initial','2016-07-26 19:21:52.563908'),(83,'dark_lang','0002_data__enable_on_install','2016-07-26 19:21:52.593944'),(84,'default','0001_initial','2016-07-26 19:21:53.216370'),(85,'default','0002_add_related_name','2016-07-26 19:21:53.427736'),(86,'default','0003_alter_email_max_length','2016-07-26 19:21:53.465612'),(87,'django_comment_common','0001_initial','2016-07-26 19:21:54.031711'),(88,'django_comment_common','0002_forumsconfig','2016-07-26 19:21:54.295470'),(89,'django_notify','0001_initial','2016-07-26 19:21:55.560873'),(90,'django_openid_auth','0001_initial','2016-07-26 19:21:55.979668'),(91,'oauth2','0001_initial','2016-07-26 19:21:57.749535'),(92,'edx_oauth2_provider','0001_initial','2016-07-26 19:21:58.196224'),(93,'edx_proctoring','0001_initial','2016-07-26 19:22:05.460116'),(94,'edx_proctoring','0002_proctoredexamstudentattempt_is_status_acknowledged','2016-07-26 19:22:06.050166'),(95,'edx_proctoring','0003_auto_20160101_0525','2016-07-26 19:22:07.291172'),(96,'edx_proctoring','0004_auto_20160201_0523','2016-07-26 19:22:07.880489'),(97,'edx_proctoring','0005_proctoredexam_hide_after_due','2016-07-26 19:22:08.487275'),(98,'edxval','0001_initial','2016-07-26 19:22:08.954661'),(99,'edxval','0002_data__default_profiles','2016-07-26 19:22:08.993050'),(100,'email_marketing','0001_initial','2016-07-26 19:22:09.655640'),(101,'email_marketing','0002_auto_20160623_1656','2016-07-26 19:22:14.843673'),(102,'email_marketing','0003_auto_20160715_1145','2016-07-26 19:22:17.312365'),(103,'embargo','0001_initial','2016-07-26 19:22:18.825105'),(104,'embargo','0002_data__add_countries','2016-07-26 19:22:19.137490'),(105,'external_auth','0001_initial','2016-07-26 19:22:20.321624'),(106,'lms_xblock','0001_initial','2016-07-26 19:22:20.910478'),(107,'microsite_configuration','0001_initial','2016-07-26 19:22:26.646668'),(108,'microsite_configuration','0002_auto_20160202_0228','2016-07-26 19:22:28.064889'),(109,'milestones','0001_initial','2016-07-26 19:22:28.801361'),(110,'milestones','0002_data__seed_relationship_types','2016-07-26 19:22:28.839305'),(111,'milestones','0003_coursecontentmilestone_requirements','2016-07-26 19:22:28.915355'),(112,'milestones','0004_auto_20151221_1445','2016-07-26 19:22:29.222765'),(113,'mobile_api','0001_initial','2016-07-26 19:22:31.733868'),(114,'mobile_api','0002_auto_20160406_0904','2016-07-26 19:22:31.817574'),(115,'notes','0001_initial','2016-07-26 19:22:32.275312'),(116,'oauth2','0002_auto_20160404_0813','2016-07-26 19:22:33.712598'),(117,'oauth2','0003_client_logout_uri','2016-07-26 19:22:34.231452'),(118,'oauth2_provider','0001_initial','2016-07-26 19:22:36.463510'),(119,'oauth2_provider','0002_08_updates','2016-07-26 19:22:38.938479'),(120,'oauth_provider','0001_initial','2016-07-26 19:22:40.746642'),(121,'organizations','0001_initial','2016-07-26 19:22:40.915149'),(122,'programs','0001_initial','2016-07-26 19:22:41.801114'),(123,'programs','0002_programsapiconfig_cache_ttl','2016-07-26 19:22:42.731302'),(124,'programs','0003_auto_20151120_1613','2016-07-26 19:22:46.549188'),(125,'programs','0004_programsapiconfig_enable_certification','2016-07-26 19:22:47.485223'),(126,'programs','0005_programsapiconfig_max_retries','2016-07-26 19:22:48.377201'),(127,'programs','0006_programsapiconfig_xseries_ad_enabled','2016-07-26 19:22:49.131675'),(128,'programs','0007_programsapiconfig_program_listing_enabled','2016-07-26 19:22:49.934689'),(129,'programs','0008_programsapiconfig_program_details_enabled','2016-07-26 19:22:50.740052'),(130,'redirects','0001_initial','2016-07-26 19:22:51.563486'),(131,'rss_proxy','0001_initial','2016-07-26 19:22:51.613244'),(132,'self_paced','0001_initial','2016-07-26 19:22:52.458436'),(133,'sessions','0001_initial','2016-07-26 19:22:52.504633'),(134,'student','0001_initial','2016-07-26 19:23:14.117622'),(135,'shoppingcart','0001_initial','2016-07-26 19:23:34.054096'),(136,'shoppingcart','0002_auto_20151208_1034','2016-07-26 19:23:36.390178'),(137,'shoppingcart','0003_auto_20151217_0958','2016-07-26 19:23:38.561132'),(138,'site_configuration','0001_initial','2016-07-26 19:23:40.818637'),(139,'splash','0001_initial','2016-07-26 19:23:41.950298'),(140,'static_replace','0001_initial','2016-07-26 19:23:43.111611'),(141,'static_replace','0002_assetexcludedextensionsconfig','2016-07-26 19:23:44.343755'),(142,'status','0001_initial','2016-07-26 19:23:47.074619'),(143,'student','0002_auto_20151208_1034','2016-07-26 19:23:51.277658'),(144,'student','0003_auto_20160516_0938','2016-07-26 19:23:52.671235'),(145,'student','0004_auto_20160531_1422','2016-07-26 19:23:53.414666'),(146,'student','0005_auto_20160531_1653','2016-07-26 19:23:54.139663'),(147,'student','0006_logoutviewconfiguration','2016-07-26 19:23:54.848377'),(148,'submissions','0001_initial','2016-07-26 19:23:55.353310'),(149,'submissions','0002_auto_20151119_0913','2016-07-26 19:23:55.507500'),(150,'submissions','0003_submission_status','2016-07-26 19:23:55.580640'),(151,'survey','0001_initial','2016-07-26 19:23:56.529727'),(152,'teams','0001_initial','2016-07-26 19:23:59.334667'),(153,'theming','0001_initial','2016-07-26 19:24:00.352830'),(154,'third_party_auth','0001_initial','2016-07-26 19:24:05.980284'),(155,'third_party_auth','0002_schema__provider_icon_image','2016-07-26 19:24:14.417280'),(156,'track','0001_initial','2016-07-26 19:24:14.481414'),(157,'user_api','0001_initial','2016-07-26 19:24:21.442916'),(158,'util','0001_initial','2016-07-26 19:24:22.613536'),(159,'util','0002_data__default_rate_limit_config','2016-07-26 19:24:22.664453'),(160,'verified_track_content','0002_verifiedtrackcohortedcourse_verified_cohort_name','2016-07-26 19:24:22.717630'),(161,'verify_student','0001_initial','2016-07-26 19:24:37.352384'),(162,'verify_student','0002_auto_20151124_1024','2016-07-26 19:24:39.010498'),(163,'verify_student','0003_auto_20151113_1443','2016-07-26 19:24:40.625535'),(164,'wiki','0001_initial','2016-07-26 19:25:15.999984'),(165,'wiki','0002_remove_article_subscription','2016-07-26 19:25:16.061976'),(166,'wiki','0003_ip_address_conv','2016-07-26 19:25:19.988884'),(167,'workflow','0001_initial','2016-07-26 19:25:20.231308'),(168,'xblock_django','0001_initial','2016-07-26 19:25:21.787942'),(169,'xblock_django','0002_auto_20160204_0809','2016-07-26 19:25:23.123783'),(170,'xblock_django','0003_add_new_config_models','2016-07-26 19:25:27.659597'),(171,'xblock_django','0004_delete_xblock_disable_config','2016-07-26 19:25:29.374255'),(172,'contentstore','0001_initial','2016-07-26 19:26:07.462663'),(173,'course_creators','0001_initial','2016-07-26 19:26:07.516190'),(174,'tagging','0001_initial','2016-07-26 19:26:07.609519'),(175,'xblock_config','0001_initial','2016-07-26 19:26:07.998072'); /*!40000 ALTER TABLE `django_migrations` ENABLE KEYS */; UNLOCK TABLES; /*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */; @@ -34,4 +34,4 @@ UNLOCK TABLES; /*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */; /*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */; --- Dump completed on 2016-07-06 14:41:12 +-- Dump completed on 2016-07-26 19:26:13 diff --git a/common/test/db_cache/bok_choy_schema_default.sql b/common/test/db_cache/bok_choy_schema_default.sql index 1b40ccd160..9fdf696a3c 100644 --- a/common/test/db_cache/bok_choy_schema_default.sql +++ b/common/test/db_cache/bok_choy_schema_default.sql @@ -809,6 +809,21 @@ CREATE TABLE `bulk_email_target` ( PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; +DROP TABLE IF EXISTS `catalog_catalogintegration`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `catalog_catalogintegration` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `change_date` datetime(6) NOT NULL, + `enabled` tinyint(1) NOT NULL, + `internal_api_url` varchar(200) NOT NULL, + `cache_ttl` int(10) unsigned NOT NULL, + `changed_by_id` int(11) DEFAULT NULL, + PRIMARY KEY (`id`), + KEY `catalog_catalogin_changed_by_id_4c786efa531d484b_fk_auth_user_id` (`changed_by_id`), + CONSTRAINT `catalog_catalogin_changed_by_id_4c786efa531d484b_fk_auth_user_id` FOREIGN KEY (`changed_by_id`) REFERENCES `auth_user` (`id`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; DROP TABLE IF EXISTS `ccx_ccxfieldoverride`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; @@ -1914,7 +1929,7 @@ CREATE TABLE `django_migrations` ( `name` varchar(255) NOT NULL, `applied` datetime(6) NOT NULL, PRIMARY KEY (`id`) -) ENGINE=InnoDB AUTO_INCREMENT=172 DEFAULT CHARSET=utf8; +) ENGINE=InnoDB AUTO_INCREMENT=176 DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; DROP TABLE IF EXISTS `django_openid_auth_association`; /*!40101 SET @saved_cs_client = @@character_set_client */; @@ -2188,6 +2203,7 @@ CREATE TABLE `email_marketing_emailmarketingconfiguration` ( `sailthru_get_tags_from_sailthru` tinyint(1) NOT NULL, `sailthru_purchase_template` varchar(20) NOT NULL, `sailthru_upgrade_template` varchar(20) NOT NULL, + `sailthru_lms_url_override` varchar(80) NOT NULL, PRIMARY KEY (`id`), KEY `email_marketing_e_changed_by_id_1c6968b921f23b0b_fk_auth_user_id` (`changed_by_id`), CONSTRAINT `email_marketing_e_changed_by_id_1c6968b921f23b0b_fk_auth_user_id` FOREIGN KEY (`changed_by_id`) REFERENCES `auth_user` (`id`) @@ -4655,7 +4671,7 @@ CREATE TABLE `wiki_articlerevision` ( `revision_number` int(11) NOT NULL, `user_message` longtext NOT NULL, `automatic_log` longtext NOT NULL, - `ip_address` char(15) DEFAULT NULL, + `ip_address` char(39) DEFAULT NULL, `modified` datetime(6) NOT NULL, `created` datetime(6) NOT NULL, `deleted` tinyint(1) NOT NULL, @@ -4695,7 +4711,7 @@ CREATE TABLE `wiki_attachmentrevision` ( `revision_number` int(11) NOT NULL, `user_message` longtext NOT NULL, `automatic_log` longtext NOT NULL, - `ip_address` char(15) DEFAULT NULL, + `ip_address` char(39) DEFAULT NULL, `modified` datetime(6) NOT NULL, `created` datetime(6) NOT NULL, `deleted` tinyint(1) NOT NULL, @@ -4778,7 +4794,7 @@ CREATE TABLE `wiki_revisionpluginrevision` ( `revision_number` int(11) NOT NULL, `user_message` longtext NOT NULL, `automatic_log` longtext NOT NULL, - `ip_address` char(15) DEFAULT NULL, + `ip_address` char(39) DEFAULT NULL, `modified` datetime(6) NOT NULL, `created` datetime(6) NOT NULL, `deleted` tinyint(1) NOT NULL, @@ -4915,21 +4931,6 @@ CREATE TABLE `xblock_django_xblockconfiguration` ( CONSTRAINT `xblock_django_xbl_changed_by_id_61068ae9f50d6490_fk_auth_user_id` FOREIGN KEY (`changed_by_id`) REFERENCES `auth_user` (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -DROP TABLE IF EXISTS `xblock_django_xblockdisableconfig`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `xblock_django_xblockdisableconfig` ( - `id` int(11) NOT NULL AUTO_INCREMENT, - `change_date` datetime(6) NOT NULL, - `enabled` tinyint(1) NOT NULL, - `disabled_blocks` longtext NOT NULL, - `changed_by_id` int(11) DEFAULT NULL, - `disabled_create_blocks` longtext NOT NULL, - PRIMARY KEY (`id`), - KEY `xblock_django_xbl_changed_by_id_429bdccb9201831c_fk_auth_user_id` (`changed_by_id`), - CONSTRAINT `xblock_django_xbl_changed_by_id_429bdccb9201831c_fk_auth_user_id` FOREIGN KEY (`changed_by_id`) REFERENCES `auth_user` (`id`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8; -/*!40101 SET character_set_client = @saved_cs_client */; DROP TABLE IF EXISTS `xblock_django_xblockstudioconfiguration`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; diff --git a/common/test/db_cache/bok_choy_schema_student_module_history.sql b/common/test/db_cache/bok_choy_schema_student_module_history.sql index f8883b8617..82fe66d885 100644 --- a/common/test/db_cache/bok_choy_schema_student_module_history.sql +++ b/common/test/db_cache/bok_choy_schema_student_module_history.sql @@ -35,7 +35,7 @@ CREATE TABLE `django_migrations` ( `name` varchar(255) NOT NULL, `applied` datetime(6) NOT NULL, PRIMARY KEY (`id`) -) ENGINE=InnoDB AUTO_INCREMENT=172 DEFAULT CHARSET=utf8; +) ENGINE=InnoDB AUTO_INCREMENT=176 DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; /*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */; diff --git a/common/test/db_cache/lettuce.db b/common/test/db_cache/lettuce.db index a446bc42378114d64c2e34afcc669f369191e271..a6dc233c41fd479c0ab69c2b53278358e29e50eb 100644 GIT binary patch delta 90062 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 delta 79494 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