diff --git a/academia_nuts/__init__.py b/academia_nuts/__init__.py
new file mode 100644
index 0000000..e69de29
diff --git a/academia_nuts/admin.py b/academia_nuts/admin.py
new file mode 100644
index 0000000..8c38f3f
--- /dev/null
+++ b/academia_nuts/admin.py
@@ -0,0 +1,3 @@
+from django.contrib import admin
+
+# Register your models here.
diff --git a/academia_nuts/apps.py b/academia_nuts/apps.py
new file mode 100644
index 0000000..3a43488
--- /dev/null
+++ b/academia_nuts/apps.py
@@ -0,0 +1,6 @@
+from django.apps import AppConfig
+
+
+class AcademiaNutsConfig(AppConfig):
+ default_auto_field = 'django.db.models.BigAutoField'
+ name = 'academia_nuts'
diff --git a/academia_nuts/migrations/0001_initial.py b/academia_nuts/migrations/0001_initial.py
new file mode 100644
index 0000000..7f5906e
--- /dev/null
+++ b/academia_nuts/migrations/0001_initial.py
@@ -0,0 +1,80 @@
+# Generated by Django 5.1.1 on 2025-02-12 01:39
+
+import django.db.models.deletion
+from django.db import migrations, models
+
+
+class Migration(migrations.Migration):
+
+ initial = True
+
+ dependencies = [
+ ]
+
+ operations = [
+ migrations.CreateModel(
+ name='Abstract',
+ fields=[
+ ('id', models.BigAutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
+ ('title', models.CharField(blank=True, max_length=128, null=True)),
+ ('link', models.URLField(blank=True, null=True)),
+ ('show_date', models.DateTimeField()),
+ ('abstract', models.TextField()),
+ ('more_details', models.JSONField(blank=True, null=True)),
+ ],
+ options={
+ 'verbose_name_plural': 'Abstracts',
+ 'ordering': ['title'],
+ },
+ ),
+ migrations.CreateModel(
+ name='Tag',
+ fields=[
+ ('id', models.BigAutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
+ ('name', models.CharField(max_length=64)),
+ ('description', models.TextField(blank=True, null=True)),
+ ('slug', models.SlugField()),
+ ],
+ options={
+ 'verbose_name_plural': 'Tags',
+ },
+ ),
+ migrations.CreateModel(
+ name='Institute',
+ fields=[
+ ('id', models.BigAutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
+ ('name', models.CharField(max_length=64)),
+ ('website', models.CharField(blank=True, max_length=128, null=True)),
+ ('is_venue', models.BooleanField(default=False)),
+ ('is_501c', models.BooleanField(default=False)),
+ ('contact_name', models.CharField(blank=True, max_length=64, null=True)),
+ ('contact_email', models.CharField(blank=True, max_length=64, null=True)),
+ ('phone_number', models.CharField(blank=True, max_length=200, null=True)),
+ ('address', models.CharField(blank=True, max_length=64, null=True)),
+ ('city', models.CharField(blank=True, max_length=32, null=True)),
+ ('state', models.CharField(blank=True, max_length=16, null=True)),
+ ('zip_code', models.CharField(blank=True, max_length=16, null=True)),
+ ],
+ options={
+ 'verbose_name_plural': 'Institutes',
+ 'ordering': ['name'],
+ 'unique_together': {('name', 'is_venue')},
+ },
+ ),
+ migrations.CreateModel(
+ name='Author',
+ fields=[
+ ('id', models.BigAutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
+ ('name', models.CharField(max_length=64)),
+ ('author_type', models.CharField(choices=[('Ug', 'Undergrad'), ('Gs', 'Grad Student'), ('Ms', 'Masters'), ('Dr', 'Doctorate')], default='0', max_length=16)),
+ ('image', models.ImageField(blank=True, upload_to='promo')),
+ ('bio', models.TextField(blank=True, null=True)),
+ ('link', models.URLField(blank=True, null=True)),
+ ('notes', models.TextField(blank=True, null=True)),
+ ('institute', models.ForeignKey(on_delete=django.db.models.deletion.CASCADE, to='academia_nuts.institute')),
+ ],
+ options={
+ 'verbose_name_plural': 'Authors',
+ },
+ ),
+ ]
diff --git a/academia_nuts/migrations/0002_remove_author_institute_remove_author_image_and_more.py b/academia_nuts/migrations/0002_remove_author_institute_remove_author_image_and_more.py
new file mode 100644
index 0000000..530170e
--- /dev/null
+++ b/academia_nuts/migrations/0002_remove_author_institute_remove_author_image_and_more.py
@@ -0,0 +1,29 @@
+# Generated by Django 5.1.1 on 2025-02-12 01:46
+
+from django.db import migrations, models
+
+
+class Migration(migrations.Migration):
+
+ dependencies = [
+ ('academia_nuts', '0001_initial'),
+ ]
+
+ operations = [
+ migrations.RemoveField(
+ model_name='author',
+ name='institute',
+ ),
+ migrations.RemoveField(
+ model_name='author',
+ name='image',
+ ),
+ migrations.AlterField(
+ model_name='author',
+ name='author_type',
+ field=models.CharField(choices=[('Ug', 'Undergrad'), ('Gs', 'Grad Student'), ('Ms', 'Masters'), ('Dr', 'Doctorate'), ('Ot', 'Other')], default='0', max_length=16),
+ ),
+ migrations.DeleteModel(
+ name='Institute',
+ ),
+ ]
diff --git a/academia_nuts/migrations/__init__.py b/academia_nuts/migrations/__init__.py
new file mode 100644
index 0000000..e69de29
diff --git a/academia_nuts/models.py b/academia_nuts/models.py
new file mode 100644
index 0000000..24348b5
--- /dev/null
+++ b/academia_nuts/models.py
@@ -0,0 +1,60 @@
+from django.db import models
+from django.core.files.storage import FileSystemStorage
+from django.contrib.auth.models import User
+
+
+class Abstract(models.Model):
+ title = models.CharField(max_length=128, blank=True, null=True)
+ link = models.URLField(blank=True, null=True)
+ show_date = models.DateTimeField()
+ abstract = models.TextField()
+ more_details = models.JSONField(blank=True, null=True)
+
+ class Meta:
+ verbose_name_plural = "Abstracts"
+ ordering = ['title']
+
+ def __unicode__(self):
+ return "%s" % self.show_title
+
+ def __str__(self):
+ return u'%s' % self.show_title
+
+
+class Author(models.Model):
+ AUTHOR_TYPE = (
+ ('Ug', 'Undergrad'),
+ ('Gs', 'Grad Student'),
+ ('Ms', 'Masters'),
+ ('Dr', 'Doctorate'),
+ ('Ot', 'Other')
+ )
+ name = models.CharField(max_length=64)
+ author_type = models.CharField(max_length=16, choices=AUTHOR_TYPE, default='0')
+ bio = models.TextField(blank=True, null=True)
+ link = models.URLField(blank=True, null=True)
+ notes = models.TextField(blank=True, null=True)
+
+ class Meta:
+ verbose_name_plural = "Authors"
+
+ def __unicode__(self):
+ return "%s" % self.name
+
+ def __str__(self):
+ return u'%s' % self.name
+
+
+class Tag(models.Model):
+ name = models.CharField(max_length=64)
+ description = models.TextField(blank=True, null=True)
+ slug = models.SlugField()
+
+ class Meta:
+ verbose_name_plural = "Tags"
+
+ def __unicode__(self):
+ return "%s" % self.name
+
+ def __str__(self):
+ return u'%s' % self.name
\ No newline at end of file
diff --git a/academia_nuts/tests.py b/academia_nuts/tests.py
new file mode 100644
index 0000000..7ce503c
--- /dev/null
+++ b/academia_nuts/tests.py
@@ -0,0 +1,3 @@
+from django.test import TestCase
+
+# Create your tests here.
diff --git a/academia_nuts/urls.py b/academia_nuts/urls.py
new file mode 100644
index 0000000..2b1da36
--- /dev/null
+++ b/academia_nuts/urls.py
@@ -0,0 +1,24 @@
+"""ds_events URL Configuration
+
+The `urlpatterns` list routes URLs to views. For more information please see:
+ https://docs.djangoproject.com/en/4.1/topics/http/urls/
+Examples:
+Function views
+ 1. Add an import: from my_app import views
+ 2. Add a URL to urlpatterns: path('', views.home, name='home')
+Class-based views
+ 1. Add an import: from other_app.views import Home
+ 2. Add a URL to urlpatterns: path('', Home.as_view(), name='home')
+Including another URLconf
+ 1. Import the include() function: from django.urls import include, path
+ 2. Add a URL to urlpatterns: path('blog/', include('blog.urls'))
+"""
+from django.contrib import admin
+from django.urls import path, include, re_path
+from .views import *
+
+urlpatterns = [
+ re_path(r'^abstracts/', AbstractsAPIView.as_view(), name="get-events"),
+ # re_path(r'^promo/', PromoAPIView.as_view(), name="get-promo"),
+
+]
diff --git a/academia_nuts/views.py b/academia_nuts/views.py
new file mode 100644
index 0000000..91ea44a
--- /dev/null
+++ b/academia_nuts/views.py
@@ -0,0 +1,3 @@
+from django.shortcuts import render
+
+# Create your views here.
diff --git a/are_you_hiring/__init__.py b/are_you_hiring/__init__.py
new file mode 100644
index 0000000..e69de29
diff --git a/are_you_hiring/admin.py b/are_you_hiring/admin.py
new file mode 100644
index 0000000..8c38f3f
--- /dev/null
+++ b/are_you_hiring/admin.py
@@ -0,0 +1,3 @@
+from django.contrib import admin
+
+# Register your models here.
diff --git a/are_you_hiring/apps.py b/are_you_hiring/apps.py
new file mode 100644
index 0000000..50dd3cb
--- /dev/null
+++ b/are_you_hiring/apps.py
@@ -0,0 +1,6 @@
+from django.apps import AppConfig
+
+
+class AreYouHiringConfig(AppConfig):
+ default_auto_field = 'django.db.models.BigAutoField'
+ name = 'are_you_hiring'
diff --git a/are_you_hiring/migrations/__init__.py b/are_you_hiring/migrations/__init__.py
new file mode 100644
index 0000000..e69de29
diff --git a/are_you_hiring/models.py b/are_you_hiring/models.py
new file mode 100644
index 0000000..880dbc8
--- /dev/null
+++ b/are_you_hiring/models.py
@@ -0,0 +1,37 @@
+from django.db import models
+from django.core.files.storage import FileSystemStorage
+from django.contrib.auth.models import User
+
+from events.models import Organization
+
+class JobOpening(models.Model):
+ title = models.CharField(max_length=128, blank=True, null=True)
+ organization = models.ForeignKey(Organization)
+ link = models.URLField(blank=True, null=True)
+ show_date = models.DateTimeField()
+ abstract = models.TextField()
+
+ class Meta:
+ verbose_name_plural = "Job Openings"
+ ordering = ['title']
+
+ def __unicode__(self):
+ return "%s" % self.show_title
+
+ def __str__(self):
+ return u'%s' % self.show_title
+
+
+class Tag(models.Model):
+ name = models.CharField(max_length=64)
+ description = models.TextField(blank=True, null=True)
+ slug = models.SlugField()
+
+ class Meta:
+ verbose_name_plural = "Tags"
+
+ def __unicode__(self):
+ return "%s" % self.name
+
+ def __str__(self):
+ return u'%s' % self.name
\ No newline at end of file
diff --git a/are_you_hiring/tests.py b/are_you_hiring/tests.py
new file mode 100644
index 0000000..7ce503c
--- /dev/null
+++ b/are_you_hiring/tests.py
@@ -0,0 +1,3 @@
+from django.test import TestCase
+
+# Create your tests here.
diff --git a/are_you_hiring/urls.py b/are_you_hiring/urls.py
new file mode 100644
index 0000000..5ffe1cf
--- /dev/null
+++ b/are_you_hiring/urls.py
@@ -0,0 +1,25 @@
+"""ds_events URL Configuration
+
+The `urlpatterns` list routes URLs to views. For more information please see:
+ https://docs.djangoproject.com/en/4.1/topics/http/urls/
+Examples:
+Function views
+ 1. Add an import: from my_app import views
+ 2. Add a URL to urlpatterns: path('', views.home, name='home')
+Class-based views
+ 1. Add an import: from other_app.views import Home
+ 2. Add a URL to urlpatterns: path('', Home.as_view(), name='home')
+Including another URLconf
+ 1. Import the include() function: from django.urls import include, path
+ 2. Add a URL to urlpatterns: path('blog/', include('blog.urls'))
+"""
+from django.contrib import admin
+from django.urls import path, include, re_path
+from .views import *
+
+urlpatterns = [
+ re_path(r'^abstracts/', AbstractsAPIView.as_view(), name="get-events"),
+ # re_path(r'^promo/', PromoAPIView.as_view(), name="get-promo"),
+ # re_path(r'^events-token/', EventsTokenAPIView.as_view(), name="get-token-events"),
+
+]
diff --git a/are_you_hiring/views.py b/are_you_hiring/views.py
new file mode 100644
index 0000000..91ea44a
--- /dev/null
+++ b/are_you_hiring/views.py
@@ -0,0 +1,3 @@
+from django.shortcuts import render
+
+# Create your views here.
diff --git a/db.sqlite3 b/db.sqlite3
new file mode 100644
index 0000000..09ae2e4
Binary files /dev/null and b/db.sqlite3 differ
diff --git a/db.sqlite3.bak.orig b/db.sqlite3.bak.orig
new file mode 100644
index 0000000..3fab920
Binary files /dev/null and b/db.sqlite3.bak.orig differ
diff --git a/ds_events/__init__.py b/ds_events/__init__.py
new file mode 100644
index 0000000..e69de29
diff --git a/ds_events/asgi.py b/ds_events/asgi.py
new file mode 100644
index 0000000..6fe76c6
--- /dev/null
+++ b/ds_events/asgi.py
@@ -0,0 +1,16 @@
+"""
+ASGI config for ds_events project.
+
+It exposes the ASGI callable as a module-level variable named ``application``.
+
+For more information on this file, see
+https://docs.djangoproject.com/en/4.1/howto/deployment/asgi/
+"""
+
+import os
+
+from django.core.asgi import get_asgi_application
+
+os.environ.setdefault('DJANGO_SETTINGS_MODULE', 'ds_events.settings')
+
+application = get_asgi_application()
diff --git a/ds_events/settings.py b/ds_events/settings.py
new file mode 100644
index 0000000..24c2d98
--- /dev/null
+++ b/ds_events/settings.py
@@ -0,0 +1,180 @@
+"""
+Django settings for ds_events project.
+
+Generated by 'django-admin startproject' using Django 4.1.7.
+
+For more information on this file, see
+https://docs.djangoproject.com/en/4.1/topics/settings/
+
+For the full list of settings and their values, see
+https://docs.djangoproject.com/en/4.1/ref/settings/
+"""
+
+from pathlib import Path
+import os.path
+import sys
+
+PROJECT_ROOT = os.path.normpath(os.path.dirname(__file__))
+
+# Build paths inside the project like this: BASE_DIR / 'subdir'.
+BASE_DIR = Path(__file__).resolve().parent.parent
+
+
+# Quick-start development settings - unsuitable for production
+# See https://docs.djangoproject.com/en/4.1/howto/deployment/checklist/
+
+# SECURITY WARNING: keep the secret key used in production secret!
+SECRET_KEY = 'django-insecure-9v6qy1=ydv)zpry!$(cf$ve)s17009^0)d755my0g2qjugap2^'
+
+# SECURITY WARNING: don't run with debug turned on in production!
+DEBUG = True
+
+ALLOWED_HOSTS = [
+ "localhost",
+ "api.digisnaxx.com",
+]
+
+
+# Application definition
+
+INSTALLED_APPS = [
+ 'django.contrib.admin',
+ 'django.contrib.auth',
+ 'django.contrib.contenttypes',
+ 'django.contrib.sessions',
+ 'django.contrib.messages',
+ 'django.contrib.staticfiles',
+ 'django_filters',
+ 'rest_framework',
+ 'rest_framework.authtoken',
+ 'socials',
+ 'events',
+ 'academia_nuts',
+ # 'leg_info',
+]
+
+MIDDLEWARE = [
+ 'django.middleware.security.SecurityMiddleware',
+ 'django.contrib.sessions.middleware.SessionMiddleware',
+ 'django.middleware.common.CommonMiddleware',
+ 'django.middleware.csrf.CsrfViewMiddleware',
+ 'django.contrib.auth.middleware.AuthenticationMiddleware',
+ 'django.contrib.messages.middleware.MessageMiddleware',
+ 'django.middleware.clickjacking.XFrameOptionsMiddleware',
+]
+
+ROOT_URLCONF = 'ds_events.urls'
+
+TEMPLATES = [
+ {
+ 'BACKEND': 'django.template.backends.django.DjangoTemplates',
+ 'DIRS': [],
+ 'APP_DIRS': True,
+ 'OPTIONS': {
+ 'context_processors': [
+ 'django.template.context_processors.debug',
+ 'django.template.context_processors.request',
+ 'django.contrib.auth.context_processors.auth',
+ 'django.contrib.messages.context_processors.messages',
+ ],
+ },
+ },
+]
+
+WSGI_APPLICATION = 'ds_events.wsgi.application'
+
+
+# Database
+# https://docs.djangoproject.com/en/4.1/ref/settings/#databases
+
+DATABASES = {
+ 'default': {
+ 'ENGINE': 'django.db.backends.sqlite3',
+ 'NAME': BASE_DIR / 'db.sqlite3',
+ },
+ 'default2': {
+ 'ENGINE': 'django.db.backends.sqlite3',
+ 'NAME': BASE_DIR / 'db2.sqlite3',
+ }
+}
+
+
+# Password validation
+# https://docs.djangoproject.com/en/4.1/ref/settings/#auth-password-validators
+
+AUTH_PASSWORD_VALIDATORS = [
+ {
+ 'NAME': 'django.contrib.auth.password_validation.UserAttributeSimilarityValidator',
+ },
+ {
+ 'NAME': 'django.contrib.auth.password_validation.MinimumLengthValidator',
+ },
+ {
+ 'NAME': 'django.contrib.auth.password_validation.CommonPasswordValidator',
+ },
+ {
+ 'NAME': 'django.contrib.auth.password_validation.NumericPasswordValidator',
+ },
+]
+
+REST_FRAMEWORK = {
+ 'DEFAULT_FILTER_BACKENDS': ['django_filters.rest_framework.DjangoFilterBackend'],
+ 'DEFAULT_AUTHENTICATION_CLASSES': (
+ # 'durin.auth.TokenAuthentication',
+ 'rest_framework.authentication.SessionAuthentication',
+ 'rest_framework.authentication.BasicAuthentication',
+ ),
+ 'DEFAULT_PERMISSION_CLASSES': (
+ # 'rest_framework.permissions.IsAuthenticated',
+ ),
+ # "DEFAULT_THROTTLE_CLASSES": ["durin.throttling.UserClientRateThrottle"],
+ # 'DEFAULT_THROTTLE_RATES': {
+ # 'anon': '50/day',
+ # 'platinum': '5000/day',
+ # 'gold': '1000/day',
+ # 'silver': '250/day',
+ # 'free': '50/day',
+ # },
+}
+
+# from datetime import timedelta
+# from rest_framework.settings import api_settings
+
+# REST_DURIN = {
+# "DEFAULT_TOKEN_TTL": timedelta(days=1),
+# "TOKEN_CHARACTER_LENGTH": 64,
+# "USER_SERIALIZER": None,
+# "AUTH_HEADER_PREFIX": "Token",
+# "EXPIRY_DATETIME_FORMAT": api_settings.DATETIME_FORMAT,
+# "TOKEN_CACHE_TIMEOUT": 60,
+# "REFRESH_TOKEN_ON_LOGIN": False,
+# "AUTHTOKEN_SELECT_RELATED_LIST": ["user"],
+# "API_ACCESS_CLIENT_NAME": "User",
+# "API_ACCESS_EXCLUDE_FROM_SESSIONS": False,
+# "API_ACCESS_RESPONSE_INCLUDE_TOKEN": False,
+# }
+
+# Internationalization
+# https://docs.djangoproject.com/en/4.1/topics/i18n/
+
+LANGUAGE_CODE = 'en-us'
+
+TIME_ZONE = 'UTC'
+
+USE_I18N = True
+
+USE_TZ = True
+
+
+# Static files (CSS, JavaScript, Images)
+# https://docs.djangoproject.com/en/4.1/howto/static-files/
+STATIC_ROOT = os.path.join(BASE_DIR, 'static')
+STATIC_URL = '/static/'
+
+MEDIA_URL = '/media/'
+MEDIA_ROOT = os.path.join(BASE_DIR, 'media')
+
+# Default primary key field type
+# https://docs.djangoproject.com/en/4.1/ref/settings/#default-auto-field
+
+DEFAULT_AUTO_FIELD = 'django.db.models.BigAutoField'
diff --git a/ds_events/urls.py b/ds_events/urls.py
new file mode 100644
index 0000000..aa92a15
--- /dev/null
+++ b/ds_events/urls.py
@@ -0,0 +1,28 @@
+"""ds_events URL Configuration
+
+The `urlpatterns` list routes URLs to views. For more information please see:
+ https://docs.djangoproject.com/en/4.1/topics/http/urls/
+Examples:
+Function views
+ 1. Add an import: from my_app import views
+ 2. Add a URL to urlpatterns: path('', views.home, name='home')
+Class-based views
+ 1. Add an import: from other_app.views import Home
+ 2. Add a URL to urlpatterns: path('', Home.as_view(), name='home')
+Including another URLconf
+ 1. Import the include() function: from django.urls import include, path
+ 2. Add a URL to urlpatterns: path('blog/', include('blog.urls'))
+"""
+
+from django.conf import settings
+from django.conf.urls.static import static
+
+from django.contrib import admin
+from django.urls import path, include
+
+urlpatterns = [
+ path('socials/', include('socials.urls')),
+ path('events/', include('events.urls')),
+ path('digimon/', admin.site.urls),
+] + static (settings.MEDIA_URL, document_root = settings.MEDIA_ROOT)
+# + static(settings.STATIC_URL, document_root=settings.STATIC_ROOT)
diff --git a/ds_events/wsgi.py b/ds_events/wsgi.py
new file mode 100644
index 0000000..1e5b8f1
--- /dev/null
+++ b/ds_events/wsgi.py
@@ -0,0 +1,16 @@
+"""
+WSGI config for ds_events project.
+
+It exposes the WSGI callable as a module-level variable named ``application``.
+
+For more information on this file, see
+https://docs.djangoproject.com/en/4.1/howto/deployment/wsgi/
+"""
+
+import os
+
+from django.core.wsgi import get_wsgi_application
+
+os.environ.setdefault('DJANGO_SETTINGS_MODULE', 'ds_events.settings')
+
+application = get_wsgi_application()
diff --git a/event_scrapers/Templates/TemplateScraper.py b/event_scrapers/Templates/TemplateScraper.py
new file mode 100644
index 0000000..4c4aea3
--- /dev/null
+++ b/event_scrapers/Templates/TemplateScraper.py
@@ -0,0 +1,90 @@
+import os, sys
+from datetime import datetime
+from dateutil import relativedelta
+
+import django
+sys.path.append('../../../')
+os.environ['DJANGO_SETTINGS_MODULE'] = 'ds_events.settings'
+django.setup()
+
+from time import sleep
+from pprint import pprint as ppr
+import pytz
+
+from events.models import Organization, Scraper
+from events.digitools import getBrowser, createURL, createBasicEvent, getSource
+
+count = 0
+
+venue, created = Organization.objects.get_or_create(
+ name="Venue Name",
+ city="Minneapolis",
+ website="Event Website",
+ )
+
+try:
+ scraper, created = Scraper.objects.get_or_create(
+ name=venue.name,
+ website=venue.website,
+ items = 0,
+ last_ran = datetime.now(),
+ )
+except Exception as e:
+ print(e)
+ scraper = Scraper.objects.get(name=venue.name)
+ print("Scraper: ", scraper)
+
+event_type = ""
+
+# Time Signatures
+tz = pytz.timezone("US/Central")
+DATETIME_FORMAT = '%b %d %Y %I:%M %p'
+DATETIME_FORMAT_2 = '%A, %B %d @ %I%p %Y'
+
+def get_events(ps, event_type):
+ contents = ps.xpath('.//*/li[@class="event"]')
+ for c in contents:
+ try:
+ event = {}
+ day = c.xpath('.//*/span[@class="day"]/text()')[0]
+ month = c.xpath('.//*/span[@class="mth"]/text()')[0]
+ year = datetime.now().year
+ if month == "Jan":
+ year = int(year) + 1
+ event['calendar'] = venue.calendar
+ event['title'] = c.xpath('.//*/span[@class="event_title"]/a/text()')[0]
+ event['date'] = [month, day, str(year), c.xpath('.//*/span[@class="event_time"]/text()')[0].strip()]
+ event['date'] = " ".join(event['date'])
+ event['dateStamp'] = datetime.strptime(event['date'], DATETIME_FORMAT)
+ event['link'] = c.xpath('.//*/span[@class="event_title"]/a/@href')[0]
+ print("Event Dict Created")
+ createBasicEvent(event, event_type, venue)
+ scraper.items+=1
+ except Exception as e:
+ print(e)
+ ppr(event)
+ print("\n\n+++\n\n")
+
+if len(sys.argv) >= 2:
+ arg1 = sys.argv[1]
+ br = getBrowser(arg1)
+else:
+ print("No run_env")
+ quit()
+
+ps = getSource(br, venue.website)
+get_events(ps, "Ed")
+sleep(3)
+
+
+scraper.save()
+
+# Get Event Page Link(s)
+# links = createURL("https://acmecomedycompany.com/the-club/calendar/")
+
+# for link in links:
+# ps = getSource(br, link)
+# get_events(ps, "Ed")
+# sleep(3)
+
+br.close()
\ No newline at end of file
diff --git a/event_scrapers/Templates/TemplateScraper.py.bak b/event_scrapers/Templates/TemplateScraper.py.bak
new file mode 100644
index 0000000..31115d7
--- /dev/null
+++ b/event_scrapers/Templates/TemplateScraper.py.bak
@@ -0,0 +1,67 @@
+import os, sys
+from datetime import datetime
+from dateutil import relativedelta
+
+import django
+sys.path.append('../')
+os.environ['DJANGO_SETTINGS_MODULE'] = 'ds_events.settings'
+django.setup()
+
+from time import sleep
+from pprint import pprint as ppr
+import pytz
+
+from events.models import Organization
+from events.digitools import getBrowser, createURL, createBasicEvent, getSource
+
+venue, created = Organization.objects.get_or_create(
+ name="Venue Name",
+ city="Minneapolis",
+ website="Event Website",
+ )
+
+event_type = ""
+
+# Time Signatures
+tz = pytz.timezone("US/Central")
+DATETIME_FORMAT = '%b %d %Y %I:%M %p'
+DATETIME_FORMAT_2 = '%A, %B %d @ %I%p %Y'
+
+def get_events(ps, event_type):
+ contents = ps.xpath('.//*/li[@class="event"]')
+ for c in contents:
+ try:
+ event = {}
+ day = c.xpath('.//*/span[@class="day"]/text()')[0]
+ month = c.xpath('.//*/span[@class="mth"]/text()')[0]
+ year = datetime.now().year
+ if month == "Jan":
+ year = int(year) + 1
+ event['title'] = c.xpath('.//*/span[@class="event_title"]/a/text()')[0]
+ event['date'] = [month, day, str(year), c.xpath('.//*/span[@class="event_time"]/text()')[0].strip()]
+ event['date'] = " ".join(event['date'])
+ event['dateStamp'] = datetime.strptime(event['date'], DATETIME_FORMAT)
+ event['link'] = c.xpath('.//*/span[@class="event_title"]/a/@href')[0]
+ print("Event Dict Created")
+ createBasicEvent(event, event_type, venue)
+ except Exception as e:
+ print(e)
+ ppr(event)
+ print("\n\n+++\n\n")
+
+if len(sys.argv) >= 2:
+ arg1 = sys.argv[1]
+ br = getBrowser(arg1)
+else:
+ print("No run_env")
+ quit()
+
+# Get Event Page Link(s)
+links = createURL("https://acmecomedycompany.com/the-club/calendar/")
+
+for link in links:
+ ps = getSource(br, link)
+ get_events(ps, "Ed")
+ sleep(3)
+
+br.close()
\ No newline at end of file
diff --git a/event_scrapers/Templates/ical_run.py.template b/event_scrapers/Templates/ical_run.py.template
new file mode 100644
index 0000000..79d5f88
--- /dev/null
+++ b/event_scrapers/Templates/ical_run.py.template
@@ -0,0 +1,84 @@
+import requests, os, sys
+from icalendar import Calendar as iCalendar, Event
+
+from pprint import pprint as ppr
+import pytz
+
+import django
+sys.path.append('../')
+os.environ['DJANGO_SETTINGS_MODULE'] = 'ds_events.settings'
+django.setup()
+
+from events.models import Event as DSEvent, Organization
+
+venue, created = Organization.objects.get_or_create(
+ name="location",
+ city="Minneapolis",
+ website="",
+ )
+
+event_type = ""
+
+calendar_url = [
+ 'https://calendar.google.com/calendar/ical/js94epu90r2et31aopons1ifm8%40group.calendar.google.com/public/basic.ics',
+ 'https://calendar.google.com/calendar/ical/6rpooudjg01vc8bjek1snu2ro0%40group.calendar.google.com/public/basic.ics',
+ 'https://calendar.google.com/calendar/ical/teflgutelllvla7r6vfcmjdjjo%40group.calendar.google.com/public/basic.ics'
+]
+
+objIcalData = requests.get(calendar_url[1])
+
+gcal = iCalendar.from_ical(objIcalData.text)
+
+cfpa_events = []
+tz = pytz.timezone("US/Central")
+
+for component in gcal.walk():
+ event = {}
+ event['strSummary'] = f"{(component.get('SUMMARY'))}"
+ event['strDesc'] = component.get('DESCRIPTION')
+ event['strLocation'] = component.get('LOCATION')
+ event['dateStart'] = component.get('DTSTART')
+ event['dateStamp'] = component.get('DTSTAMP')
+ if event['dateStamp'] is not None:
+ event['dateStamp'] = event['dateStamp'].dt
+ if event['dateStart'] is not None:
+ try:
+ event['dateStart'] = event['dateStart'].dt.astimezone(pytz.utc)
+ except Exception as e:
+ event['dateStart'] = event['dateStart'].dt
+
+ event['dateEnd'] = (component.get('DTEND'))
+ if event['dateEnd'] is not None:
+ event['dateEnd'] = event['dateEnd'].dt
+ else:
+ event['dateEnd'] = event['dateStart']
+ if event['strSummary'] != 'None':
+ event['details'] = {
+ "description" : event['strDesc'],
+ "DateTime" : event['dateStart'],
+ "Location" : event['strLocation'],
+ }
+ cfpa_events.append(event)
+ new_event = DSEvent.objects.update_or_create(
+ event_type = event_type,
+ show_title = event['strSummary'],
+ show_link = event['link'],
+ show_date = event['dateStart'],
+ show_day = event['dateStart'].date(),
+ more_details = event["details"],
+ venue = venue
+ )
+
+
+
+# {'dateEnd': datetime.datetime(2022, 10, 22, 18, 30, tzinfo=),
+# 'dateStamp': datetime.datetime(2023, 3, 23, 1, 57, 45, tzinfo=),
+# 'dateStart': datetime.datetime(2022, 10, 22, 17, 30, tzinfo=),
+# 'details': {'DateTime': datetime.datetime(2022, 10, 22, 17, 30, tzinfo=),
+# 'Location': vText('b'''),
+# 'description': None},
+# 'strDesc': None,
+# 'strLocation': vText('b'''),
+# 'strSummary': 'Nia Class with Beth Giles'}
+
+
diff --git a/event_scrapers/Templates/ical_template.py b/event_scrapers/Templates/ical_template.py
new file mode 100644
index 0000000..79d5f88
--- /dev/null
+++ b/event_scrapers/Templates/ical_template.py
@@ -0,0 +1,84 @@
+import requests, os, sys
+from icalendar import Calendar as iCalendar, Event
+
+from pprint import pprint as ppr
+import pytz
+
+import django
+sys.path.append('../')
+os.environ['DJANGO_SETTINGS_MODULE'] = 'ds_events.settings'
+django.setup()
+
+from events.models import Event as DSEvent, Organization
+
+venue, created = Organization.objects.get_or_create(
+ name="location",
+ city="Minneapolis",
+ website="",
+ )
+
+event_type = ""
+
+calendar_url = [
+ 'https://calendar.google.com/calendar/ical/js94epu90r2et31aopons1ifm8%40group.calendar.google.com/public/basic.ics',
+ 'https://calendar.google.com/calendar/ical/6rpooudjg01vc8bjek1snu2ro0%40group.calendar.google.com/public/basic.ics',
+ 'https://calendar.google.com/calendar/ical/teflgutelllvla7r6vfcmjdjjo%40group.calendar.google.com/public/basic.ics'
+]
+
+objIcalData = requests.get(calendar_url[1])
+
+gcal = iCalendar.from_ical(objIcalData.text)
+
+cfpa_events = []
+tz = pytz.timezone("US/Central")
+
+for component in gcal.walk():
+ event = {}
+ event['strSummary'] = f"{(component.get('SUMMARY'))}"
+ event['strDesc'] = component.get('DESCRIPTION')
+ event['strLocation'] = component.get('LOCATION')
+ event['dateStart'] = component.get('DTSTART')
+ event['dateStamp'] = component.get('DTSTAMP')
+ if event['dateStamp'] is not None:
+ event['dateStamp'] = event['dateStamp'].dt
+ if event['dateStart'] is not None:
+ try:
+ event['dateStart'] = event['dateStart'].dt.astimezone(pytz.utc)
+ except Exception as e:
+ event['dateStart'] = event['dateStart'].dt
+
+ event['dateEnd'] = (component.get('DTEND'))
+ if event['dateEnd'] is not None:
+ event['dateEnd'] = event['dateEnd'].dt
+ else:
+ event['dateEnd'] = event['dateStart']
+ if event['strSummary'] != 'None':
+ event['details'] = {
+ "description" : event['strDesc'],
+ "DateTime" : event['dateStart'],
+ "Location" : event['strLocation'],
+ }
+ cfpa_events.append(event)
+ new_event = DSEvent.objects.update_or_create(
+ event_type = event_type,
+ show_title = event['strSummary'],
+ show_link = event['link'],
+ show_date = event['dateStart'],
+ show_day = event['dateStart'].date(),
+ more_details = event["details"],
+ venue = venue
+ )
+
+
+
+# {'dateEnd': datetime.datetime(2022, 10, 22, 18, 30, tzinfo=),
+# 'dateStamp': datetime.datetime(2023, 3, 23, 1, 57, 45, tzinfo=),
+# 'dateStart': datetime.datetime(2022, 10, 22, 17, 30, tzinfo=),
+# 'details': {'DateTime': datetime.datetime(2022, 10, 22, 17, 30, tzinfo=),
+# 'Location': vText('b'''),
+# 'description': None},
+# 'strDesc': None,
+# 'strLocation': vText('b'''),
+# 'strSummary': 'Nia Class with Beth Giles'}
+
+
diff --git a/event_scrapers/Working/cals/MplStpMag.mn.py b/event_scrapers/Working/cals/MplStpMag.mn.py
new file mode 100644
index 0000000..d3419f2
--- /dev/null
+++ b/event_scrapers/Working/cals/MplStpMag.mn.py
@@ -0,0 +1,102 @@
+import os, sys
+from datetime import datetime
+from dateutil import relativedelta
+
+import django
+sys.path.append('../../../')
+os.environ['DJANGO_SETTINGS_MODULE'] = 'ds_events.settings'
+django.setup()
+
+from time import sleep
+from pprint import pprint as ppr
+import pytz
+
+from events.models import Organization
+from events.digitools import getBrowser, createURL, createBasicEvent, getSource
+
+venue, created = Organization.objects.get_or_create(
+ name="Mpls Stp Mag",
+ city="Minneapolis",
+ website="https://calendar.mspmag.com/calendars/all-events/",
+ )
+
+event_type = ""
+
+# Time Signatures
+tz = pytz.timezone("US/Central")
+td = relativedelta.relativedelta(days=1)
+fortnight = relativedelta.relativedelta(days=14)
+odt = datetime.now() + fortnight
+
+# DATETIME_FORMAT = '%b %d %Y %I:%M %p'
+DATETIME_FORMAT = '%A, %B %d %Y %I:%M%p'
+DATETIME_FORMAT_ALT = '%A, %B %d %Y'
+
+def get_events(ps, event_type):
+ contents = ps.xpath('.//*/div[@class="css-card js-card day-card type-smad expandable"]')
+ for c in contents:
+ try:
+ event = {}
+ event['calendar'] = venue.calendar
+ event_block = c.xpath('.//*/li[@class="card-listings-item event-element"]')
+ date = c.xpath('.//div[@class="day-card__header day-card__header--daily"]/text()')[0].replace("\n", "").strip()
+ if date == "Today":
+ date = datetime.today()
+ elif date == "Tomorrow":
+ date = datetime.today() + td
+ # month = c.xpath('.//*/span[@class="mth"]/text()')[0]
+ year = datetime.now().year
+ # if month == "Jan":
+ # year = int(year) + 1
+ dateTime = datetime.strptime(date + " " + str(year), DATETIME_FORMAT_ALT)
+ if dateTime > odt:
+ print("DATE TIME ", dateTime)
+ break
+ for ev in event_block:
+ time = ev.xpath('.//*/span[@class="card-listing-item-time"]/text()')[0].replace("@", "").strip()
+ if time == "All day":
+ time = "12:00pm"
+ event['title'] = ev.xpath('.//*/div[@class="card-listing-item-title"]/text()')[0] + " (Check link for times.)"
+ elif "-" in time:
+ time = time.split("-")[0]
+ event['title'] = ev.xpath('.//*/div[@class="card-listing-item-title"]/text()')[0]
+ else:
+ event['title'] = ev.xpath('.//*/div[@class="card-listing-item-title"]/text()')[0]
+
+ event['location'] = ev.xpath('.//*/span[@class="card-listing-item-location"]/text()')[0]
+ if event['location'] == '7th St. Entry':
+ event['location'] = '7th St Entry'
+ elif event['location'] == '7th Street Entry':
+ event['location'] = '7th St Entry'
+ elif event['location'] == 'Amsterdam Bar and Hall':
+ event['location'] = 'Amsterdam Bar & Hall'
+ new_venue, created = Organization.objects.get_or_create(name=event['location'])
+ print("V: ", new_venue, created)
+
+ event['dateTime'] = date + " " + str(year) + " " + time
+ event['link'] = venue.website + c.xpath('.//@data-event')[0]
+ event['dateStamp'] = datetime.strptime(event['dateTime'], DATETIME_FORMAT)
+
+
+
+ createBasicEvent(event, event_type, new_venue)
+ except Exception as e:
+ print(e)
+ ppr(event)
+ print("\n\n+++\n\n")
+
+if len(sys.argv) >= 2:
+ arg1 = sys.argv[1]
+ br = getBrowser(arg1)
+else:
+ print("No run_env")
+ quit()
+
+# Get Event Page Link(s)
+# links = createURL("https://acmecomedycompany.com/the-club/calendar/")
+
+ps = getSource(br, venue.website)
+get_events(ps, "Ed")
+sleep(3)
+
+br.close()
\ No newline at end of file
diff --git a/event_scrapers/Working/cals/minnestar.py b/event_scrapers/Working/cals/minnestar.py
new file mode 100644
index 0000000..217292e
--- /dev/null
+++ b/event_scrapers/Working/cals/minnestar.py
@@ -0,0 +1,105 @@
+import os, sys
+from datetime import datetime
+from dateutil import relativedelta
+
+import django
+sys.path.append('../../../')
+os.environ['DJANGO_SETTINGS_MODULE'] = 'ds_events.settings'
+django.setup()
+
+from time import sleep
+from pprint import pprint as ppr
+import pytz
+
+from events.models import Organization, Scraper
+from events.digitools import getBrowser, createURL, createBasicEvent, getSource
+
+count = 0
+
+venue, created = Organization.objects.get_or_create(
+ name="Minnestar",
+ city="Minneapolis",
+ website="https://minnestar.org/community/calendar",
+ )
+
+try:
+ scraper, created = Scraper.objects.get_or_create(
+ name=venue.name,
+ website=venue.website,
+ items = 0,
+ last_ran = datetime.now(),
+ )
+except Exception as e:
+ print(e)
+ scraper = Scraper.objects.get(name=venue.name)
+ print("Scraper: ", scraper)
+
+event_type = ""
+
+# Time Signatures
+tz = pytz.timezone("US/Central")
+DATETIME_FORMAT = '%B %d, %Y %I:%M %p'
+DATETIME_FORMAT_2 = '%B %d %Y'
+
+def get_events(ps, event_type):
+ links = ps.xpath('.//*/div[@id="community-calendar-list-view-container"]/a/@href')
+ ppr(links)
+ for l in links:
+ pse = getSource(br, l)
+ sleep(1)
+ event = {}
+ event['calendar'] = venue.calendar
+ event['link'] = l
+ try:
+ starttime = pse.xpath('.//*/time/text()')[0]
+ endtime = pse.xpath('.//*/time/@datetime')[1]
+ event['dateStamp'] = datetime.strptime(starttime, DATETIME_FORMAT)
+ event['title'] = pse.xpath('.//*/h1[@class="heading-2"]/text()')[0]
+ # event['detail-headers'] = pse.xpath('.//*/ul[@class="eo-event-meta"]/li/strong/text()')
+ # event['details'] = pse.xpath('.//*/ul[@class="eo-event-meta"]/li/text()')
+
+ except:
+ try:
+ event['title'] = pse.xpath('.//*/h1[@class="heading-2"]/text()')[0]
+ starttime = pse.xpath('.//*/time/text()')[0]
+ event['dateStamp'] = datetime.strptime(starttime, DATETIME_FORMAT)
+ except Exception as e:
+ try:
+ print(e)
+ print('failed event: ', event)
+ starttime = pse.xpath('.//*/time/text()')[0]
+ event['dateStamp'] = datetime.strptime(starttime + ' 2025', DATETIME_FORMAT_2)
+ except Exception as e:
+ print(e)
+ print("failed event: ", event)
+ ppr(event)
+ try:
+ createBasicEvent(event, "Ot", venue)
+ scraper.items+=1
+ except Exception as e:
+ print(e)
+ print('failed to create: ', event)
+
+
+if len(sys.argv) >= 2:
+ arg1 = sys.argv[1]
+ br = getBrowser(arg1)
+else:
+ print("No run_env")
+ quit()
+
+ps = getSource(br, venue.website)
+get_events(ps, "Ot")
+sleep(3)
+
+scraper.save()
+
+# Get Event Page Link(s)
+# links = createURL("https://acmecomedycompany.com/the-club/calendar/")
+
+# for link in links:
+# ps = getSource(br, link)
+# get_events(ps, "Ed")
+# sleep(3)
+
+br.close()
\ No newline at end of file
diff --git a/event_scrapers/Working/govt/MNLeg.py b/event_scrapers/Working/govt/MNLeg.py
new file mode 100644
index 0000000..9e7097c
--- /dev/null
+++ b/event_scrapers/Working/govt/MNLeg.py
@@ -0,0 +1,147 @@
+# Install Chromedriver and Quarantine
+# xattr -d com.apple.quarantine
+
+import os, sys
+from datetime import datetime
+from dateutil import relativedelta
+
+import django
+sys.path.append('../../../')
+os.environ['DJANGO_SETTINGS_MODULE'] = 'ds_events.settings'
+django.setup()
+
+from time import sleep
+from pprint import pprint as ppr
+from selenium import webdriver as wd
+
+from xvfbwrapper import Xvfb
+from lxml import html
+import pytz
+
+from events.models import Event, Organization, Scraper
+from events.digitools import getBrowser, createURL, createBasicEvent, getSource
+
+try:
+ scraper, created = Scraper.objects.get_or_create(
+ name="MN Legislature",
+ website="https://www.leg.mn.gov/cal?type=all",
+ items = 0,
+ last_ran = datetime.now(),
+ )
+except Exception as e:
+ print(e)
+ scraper = Scraper.objects.get(name="MN Legislature")
+ print("Scraper: ", scraper)
+
+tz = pytz.timezone("US/Central")
+
+DATETIME_FORMAT = '%A, %B %d, %Y %I:%M %p'
+
+# Set initial variables for City, etc
+calendar_url = 'https://www.leg.mn.gov/cal?type=all'
+
+if len(sys.argv) >= 2:
+ arg1 = sys.argv[1]
+ br = getBrowser(arg1)
+else:
+ print("No run_env")
+ quit()
+
+br.get(calendar_url)
+sleep(60)
+ps = html.fromstring(br.page_source)
+
+commEvents = ps.xpath('.//*/div[@class="card border-dark comm_item cal_item ml-lg-3"]')
+senateEvents = ps.xpath('.//*/div[@class="card border-dark senate_item cal_item ml-lg-3"]')
+houseEvents = ps.xpath('.//*/div[@class="card border-dark house_item cal_item ml-lg-3"]')
+meetings = []
+
+for hE in houseEvents:
+ details = {}
+ dateTime = hE.xpath('.//*/b/text()')[0]
+ try:
+ title = hE.xpath('.//*/h3/a/text()')[0]
+ except:
+ title = hE.xpath('.//*/h3/text()')[0]
+ try:
+ link = "https://www.leg.mn.gov/" + hE.xpath('.//*/div[@class="float-right text-center mr-2 d-print-none"]/a/@href')[0]
+ except:
+ link = hE.xpath('.//*/h3/a/@href')[0]
+ details['location'] = hE.xpath('.//*/div[@class=""]/text()')[0]
+ # print(dateTime, title, link, details['location'])
+ venue, created = Organization.objects.get_or_create(name="MN House", city="St. Paul")
+ new_event, created = Event.objects.update_or_create(
+ calendar = 'msp'
+ event_type = 'Gv',
+ show_title = title,
+ show_link = link,
+ show_date = datetime.strptime(dateTime, DATETIME_FORMAT),
+ show_day = datetime.strptime(dateTime, DATETIME_FORMAT).date(),
+ more_details = details['location'],
+ venue = venue
+ )
+ scraper.items+=1
+
+
+for sE in senateEvents:
+ details = {}
+ dateTime = sE.xpath('.//*/b/text()')[0]
+ try:
+ title = sE.xpath('.//*/h3/a/text()')[0]
+ except:
+ title = sE.xpath('.//*/h3/text()')[0]
+ try:
+ link = "https://www.leg.mn.gov/" + sE.xpath('.//*/div[@class="float-right text-center mr-2"]/a/@href')[0]
+ except:
+ link = sE.xpath('.//*/h3/a/@href')[0]
+ location_list = sE.xpath('.//*/text()')
+ if 'Location: ' in location_list:
+ iN = location_list.index("Location: ")
+ details['location'] = location_list[iN + 1]
+ elif 'Senate Floor Session' in location_list:
+ details['location'] = 'Senate Floor Session'
+ venue, created = Organization.objects.get_or_create(name="MN Senate", city="St. Paul")
+ new_event = Event.objects.update_or_create(
+ event_type = 'Gv',
+ show_title = title,
+ show_link = link,
+ show_date = datetime.strptime(dateTime, DATETIME_FORMAT),
+ show_day = datetime.strptime(dateTime, DATETIME_FORMAT).date(),
+ more_details = details['location'],
+ venue = venue
+ )
+ scraper.items+=1
+
+for cE in commEvents:
+ details = {}
+ dateTime = cE.xpath('.//*/b/text()')[0]
+ try:
+ title = cE.xpath('.//*/h3/a/text()')[0]
+ except:
+ title = cE.xpath('.//*/h3/text()')[0]
+ try:
+ link = "https://www.leg.mn.gov/" + cE.xpath('.//*/div[@class="float-right text-center mr-2"]/a/@href')[0]
+ except:
+ link = cE.xpath('.//*/h3/a/@href')[0]
+ location_list = cE.xpath('.//*/text()')
+ if 'Room: ' in location_list:
+ iN = location_list.index("Room: ")
+ details['location'] = location_list[iN + 1]
+ # print(dateTime, title, link, details['location'])
+ venue, created = Organization.objects.get_or_create(name="MN Legislature", city="St. Paul")
+ new_event = Event.objects.update_or_create(
+ event_type = 'Gv',
+ show_title = title,
+ show_link = link,
+ show_date = datetime.strptime(dateTime, DATETIME_FORMAT),
+ show_day = datetime.strptime(dateTime, DATETIME_FORMAT).date(),
+ more_details = details['location'],
+ venue = venue
+ )
+ scraper.items+=1
+
+
+br.close()
+scraper.save()
+
+# br.find_element_by_class_name('fc-btn_allCalendars-button').click()
diff --git a/event_scrapers/Working/govt/MplsCityCouncil.py b/event_scrapers/Working/govt/MplsCityCouncil.py
new file mode 100644
index 0000000..09e0e89
--- /dev/null
+++ b/event_scrapers/Working/govt/MplsCityCouncil.py
@@ -0,0 +1,99 @@
+import re, os, sys
+from datetime import datetime
+
+import django
+sys.path.append('../../../')
+os.environ['DJANGO_SETTINGS_MODULE'] = 'ds_events.settings'
+django.setup()
+
+from events.models import Event, Organization, Scraper
+
+from time import sleep
+from pprint import pprint as ppr
+from selenium import webdriver as wd
+from selenium.webdriver.support.ui import Select
+from selenium.webdriver.common.by import By
+
+from xvfbwrapper import Xvfb
+from lxml import html
+import pytz
+from events.digitools import getBrowser, createURL, createBasicEvent, getSource
+
+try:
+ scraper, created = Scraper.objects.get_or_create(
+ name="Mpls City Council",
+ website="https://lims.minneapolismn.gov/Calendar/citycouncil/upcoming",
+ items = 0,
+ last_ran = datetime.now(),
+ )
+except Exception as e:
+ print(e)
+ scraper = Scraper.objects.get(name="Mpls City Council")
+ print("Scraper: ", scraper)
+
+tz = pytz.timezone("US/Central")
+
+DATETIME_FORMAT = '%A, %b %d, %Y %I:%M %p'
+
+calendar_url = 'https://lims.minneapolismn.gov/Calendar/citycouncil/upcoming'
+
+if len(sys.argv) >= 2:
+ arg1 = sys.argv[1]
+ br = getBrowser(arg1)
+else:
+ print("No run_env")
+ quit()
+
+br.get(calendar_url)
+sleep(25)
+# br.find_element(By.XPATH, '//*/li[@class="tab-header-small"]/a').click()
+# sleep(15)
+# all_entries = Select(br.find_element(By.XPATH, '//*/select'))
+# all_entries.select_by_value('50')
+# sleep(15)
+
+ps = html.fromstring(br.page_source)
+
+dayBlocks = ps.xpath('.//*/div[@class="ng-scope"]')
+meetings = []
+
+for dB in dayBlocks:
+ date = dB.xpath('.//div[@class="row"]/div/span[@class="ng-binding"]/text()')[0]
+ events = dB.xpath('.//div[@class="upcoming ng-scope"]/div')
+ for event in events:
+ time = event.xpath('.//div/text()')[0]
+ title = event.xpath('.//div/a/text()')[0].strip()
+ if not len(title) > 0:
+ title = event.xpath('.//div/span/a/text()')[0].strip()
+ link = event.xpath('.//div/a/@href')[0]
+ if link.startswith("/Download/"):
+ link = calendar_url
+ else:
+ link = "https://lims.minneapolismn.gov" + link
+ location = title.split(',')[-1].strip()
+ mtg_title = title.split(',')[:-1]
+ if len(mtg_title) > 1:
+ mtg_title = (' -').join(mtg_title).strip()
+ else:
+ mtg_title = mtg_title[0].strip()
+ dateTime = datetime.strptime(date + " " + time, DATETIME_FORMAT)
+ if location == "City Hall":
+ location = "Mpls City Hall"
+ print(dateTime, location, mtg_title, link)
+ print('\n\n++++\n\n')
+ venue, created = Organization.objects.get_or_create(name=location, city="Minneapolis")
+ new_event = Event.objects.update_or_create(
+ calendar = 'msp'
+ event_type = 'Gv',
+ show_title = mtg_title,
+ show_link = link,
+ show_date = dateTime,
+ show_day = dateTime,
+ venue = venue
+ )
+ scraper.items+=1
+
+
+br.close()
+scraper.save()
+# br.find_element_by_class_name('fc-btn_allCalendars-button').click()
diff --git a/event_scrapers/Working/govt/StPaulCityCouncil.py b/event_scrapers/Working/govt/StPaulCityCouncil.py
new file mode 100644
index 0000000..37105b4
--- /dev/null
+++ b/event_scrapers/Working/govt/StPaulCityCouncil.py
@@ -0,0 +1,73 @@
+import re, os, sys
+from datetime import datetime
+
+import django
+sys.path.append('../../../')
+os.environ['DJANGO_SETTINGS_MODULE'] = 'ds_events.settings'
+django.setup()
+
+from events.models import Event, Organization, Scraper
+
+from time import sleep
+from pprint import pprint as ppr
+from selenium import webdriver as wd
+from selenium.webdriver.common.by import By
+
+from xvfbwrapper import Xvfb
+from lxml import html
+import pytz
+from events.digitools import getBrowser, createURL, createBasicEvent, getSource
+
+scraper, created = Scraper.objects.get_or_create(
+ name="St Paul City Council",
+ website="https://www.stpaul.gov/calendar",
+ last_ran = datetime.now(),
+ )
+
+tz = pytz.timezone("US/Central")
+
+DATETIME_FORMAT = '%B %d, %Y at %I:%M %p'
+
+calendar_url = 'https://www.stpaul.gov/calendar'
+city_site = "https://www.stpaul.gov"
+
+if len(sys.argv) >= 2:
+ arg1 = sys.argv[1]
+ br = getBrowser(arg1)
+else:
+ print("No run_env")
+ quit()
+
+br.get(calendar_url)
+sleep(3)
+
+
+def getEvents(br):
+ ps = html.fromstring(br.page_source)
+ eventBlocks = ps.xpath('.//*/div[@class="calendar__item views-row"]')
+
+ for eB in eventBlocks:
+ title = eB.xpath('.//div/h3[@class="field-content calendar__title"]/text()')[0]
+ link = city_site + eB.xpath('.//div/span[@class="field-content calendar__link"]/a/@href')[0]
+ dateTime = eB.xpath('.//div[@class="views-field views-field-field-calendar-date-value"]/span/text()')[0]
+ print(dateTime, title, link)
+ print('\n\n++++\n\n')
+ venue, created = Organization.objects.get_or_create(name="Somewhere in St Paul", city="St. Paul")
+ new_event = Event.objects.update_or_create(
+ calendar = 'msp'
+ event_type = 'Gv',
+ show_title = title,
+ show_link = link,
+ show_date = datetime.strptime(dateTime, DATETIME_FORMAT),
+ show_day = datetime.strptime(dateTime, DATETIME_FORMAT),
+ venue = venue
+ )
+
+getEvents(br)
+sleep(5)
+br.get("https://www.stpaul.gov/calendar?page=1")
+getEvents(br)
+
+br.close()
+
+# br.find_element_by_class_name('fc-btn_allCalendars-button').click()
diff --git a/event_scrapers/Working/govt/mngov.py b/event_scrapers/Working/govt/mngov.py
new file mode 100644
index 0000000..e1cdd0c
--- /dev/null
+++ b/event_scrapers/Working/govt/mngov.py
@@ -0,0 +1,116 @@
+import requests, os, sys
+from icalendar import Calendar as iCalendar, Event
+from datetime import datetime
+from dateutil import relativedelta
+td = relativedelta.relativedelta(hours=5)
+
+from pprint import pprint as ppr
+import pytz
+
+import django
+sys.path.append('../../../')
+os.environ['DJANGO_SETTINGS_MODULE'] = 'ds_events.settings'
+django.setup()
+
+from events.models import Event as DSEvent, Organization, Scraper
+
+td = relativedelta.relativedelta(hours=5)
+odt = datetime.now() + td
+
+venue, created = Organization.objects.get_or_create(
+ name="MN Launch",
+ city="Minneapolis",
+ website="https://mn.gov/launchmn/calendar",
+ )
+
+try:
+ scraper, created = Scraper.objects.get_or_create(
+ name=venue.name,
+ website=venue.website,
+ items = 0,
+ last_ran = datetime.now(),
+ )
+except Exception as e:
+ print(e)
+ scraper = Scraper.objects.get(name=venue.name)
+ print("Scraper: ", scraper)
+
+event_type = "Ed"
+
+cal_url = "https://timelyapp.time.ly/api/calendars/54705514/export?format=ics&target=copy&start_date=2024-12-13"
+calendar_url = 'https://calendar.google.com/calendar/ical/uvkshlggh1h4ck08emab22btkum9hl94%40import.calendar.google.com/public/basic.ics'
+
+objIcalData = requests.get(cal_url)
+
+gcal = iCalendar.from_ical(objIcalData.text)
+
+cfpa_events = []
+tz = pytz.timezone("US/Central")
+
+for component in gcal.walk():
+ event = {}
+ event['strSummary'] = f"{(component.get('SUMMARY'))}"
+ event['strDesc'] = component.get('DESCRIPTION')
+ event['strLocation'] = component.get('LOCATION')
+ event['dateStart'] = component.get('DTSTART')
+ event['dateStamp'] = component.get('DTSTAMP')
+ if event['dateStamp'] is not None:
+ event['dateStamp'] = event['dateStart'].dt
+ if event['dateStart'] is not None:
+ try:
+ event['dateStart'] = event['dateStart'].dt
+ except Exception as e:
+ event['dateStart'] = event['dateStart'].dt
+
+ event['dateEnd'] = (component.get('DTEND'))
+ if event['dateEnd'] is not None:
+ event['dateEnd'] = event['dateEnd'].dt
+ else:
+ event['dateEnd'] = event['dateStart']
+ if event['strSummary'] != 'None':
+ event['details'] = {
+ "description" : event['strDesc'],
+ "Location" : event['strLocation'],
+ }
+ cfpa_events.append(event)
+ now_now = datetime.now().astimezone(tz)
+ try:
+ if event['dateStart'] > now_now:
+ print(event['strSummary'])
+ new_event, created = DSEvent.objects.update_or_create(
+ calendar = 'msp'
+ event_type = event_type,
+ show_title = event['strSummary'],
+ show_link = venue.website,
+ show_date = event['dateStart']-td,
+ show_day = event['dateStart']-td,
+ more_details = event["details"],
+ venue = venue
+ )
+ scraper.items+=1
+ if event['strLocation'] != None and event['strLocation'] != 'MN' and event['strLocation'] != 'Online':
+ loc = event['strLocation'].split('@')
+ new_venue_name = loc[0]
+ if len(loc) > 1:
+ address = loc[1].split(",")
+ city = address[1].strip()
+ new_venue, created = Organization.objects.get_or_create(
+ name=new_venue_name,
+ city=city,
+ website="https://mn.gov/launchmn/calendar",
+ )
+ new_event.venue = new_venue
+ new_event.save()
+ else:
+ new_event.venue = venue
+ new_event.save()
+ except Exception as e:
+ print(e)
+ print("Event: ", event['dateStart'], event['strSummary'])
+ print("Clock: ", now_now)
+ else:
+ print("Failed: ", component.get('DESCRIPTION'))
+
+scraper.save()
+
+
diff --git a/event_scrapers/Working/iCal/ical.CAFAC.mpls.py b/event_scrapers/Working/iCal/ical.CAFAC.mpls.py
new file mode 100644
index 0000000..ffc67c3
--- /dev/null
+++ b/event_scrapers/Working/iCal/ical.CAFAC.mpls.py
@@ -0,0 +1,50 @@
+import requests, os, sys
+from icalendar import Calendar as iCalendar, Event
+
+from datetime import datetime
+from dateutil import relativedelta
+td = relativedelta.relativedelta(hours=5)
+
+from pprint import pprint as ppr
+import pytz
+
+import django
+sys.path.append('../../../')
+os.environ['DJANGO_SETTINGS_MODULE'] = 'ds_events.settings'
+django.setup()
+
+from events.models import Event as DSEvent, Organization, Scraper, Calendar
+import events.digitools as digitools
+
+from dateutil import relativedelta
+td = relativedelta.relativedelta(hours=5)
+
+venue, created = Organization.objects.get_or_create(
+ name="Chicago Ave Fire Arts Center",
+ city="Minneapolis",
+ website="https://www.cafac.org/classes",
+ )
+event_type = "Ed"
+
+try:
+ scraper, created = Scraper.objects.get_or_create(
+ name="Chicago Ave Fire Arts Center",
+ website="https://calendar.google.com/calendar/ical/9qj2426rukra3jv933nslsf3r8%40group.calendar.google.com/public/basic.ics",
+ calendar = Calendar.objects.get(id=1),
+ items = 0,
+ new_items = 0,
+ last_ran = datetime.now(),
+ )
+except Exception as e:
+ print(e)
+ scraper = Scraper.objects.get(name=venue.name)
+
+item_count_start = scraper.items
+
+event_type = "Ed"
+
+objIcalData = requests.get(scraper.website)
+gcal = iCalendar.from_ical(objIcalData.text)
+tz = pytz.timezone("US/Central")
+digitools.getiCalEvents(gcal, scraper)
+digitools.updateScraper(scraper, item_count_start)
diff --git a/event_scrapers/Working/iCal/ical_run.KJHideaway.StPaul.py b/event_scrapers/Working/iCal/ical_run.KJHideaway.StPaul.py
new file mode 100644
index 0000000..6390dce
--- /dev/null
+++ b/event_scrapers/Working/iCal/ical_run.KJHideaway.StPaul.py
@@ -0,0 +1,44 @@
+import requests, os, sys
+from icalendar import Calendar as iCalendar, Event
+from datetime import datetime
+
+from pprint import pprint as ppr
+import pytz
+
+import django
+sys.path.append('../../../')
+os.environ['DJANGO_SETTINGS_MODULE'] = 'ds_events.settings'
+django.setup()
+
+from events.models import Event as DSEvent, Organization, Scraper, Calendar
+from dateutil import relativedelta
+td = relativedelta.relativedelta(hours=5)
+
+venue, created = Organization.objects.get_or_create(
+ name="KJ's Hideaway",
+ city="Minneapolis",
+ website="",
+ )
+
+try:
+ scraper, created = Scraper.objects.get_or_create(
+ name="KJ's Hideaway",
+ website="https://calendar.google.com/calendar/ical/sgmok5t13vspeoruhruh33dhj0hgc50q%40import.calendar.google.com/public/basic.ics",
+ calendar = Calendar.objects.get(id=1),
+ items = 0,
+ new_items = 0,
+ last_ran = datetime.now(),
+ )
+except Exception as e:
+ print(e)
+ scraper = Scraper.objects.get(name=venue.name)
+
+item_count_start = scraper.items
+
+event_type = "Mu"
+
+objIcalData = requests.get(scraper.website)
+gcal = iCalendar.from_ical(objIcalData.text)
+tz = pytz.timezone("US/Central")
+digitools.getiCalEvents(gcal, scraper)
+digitools.updateScraper(scraper, item_count_start)
\ No newline at end of file
diff --git a/event_scrapers/Working/iCal/ical_run.SocialableCider.mpls.py b/event_scrapers/Working/iCal/ical_run.SocialableCider.mpls.py
new file mode 100644
index 0000000..386453d
--- /dev/null
+++ b/event_scrapers/Working/iCal/ical_run.SocialableCider.mpls.py
@@ -0,0 +1,48 @@
+import requests, os, sys
+from icalendar import Calendar as iCalendar, Event
+
+from datetime import datetime
+from dateutil import relativedelta
+td = relativedelta.relativedelta(hours=5)
+
+from pprint import pprint as ppr
+import pytz
+
+import django
+sys.path.append('../../../')
+os.environ['DJANGO_SETTINGS_MODULE'] = 'ds_events.settings'
+django.setup()
+
+from events.models import Event as DSEvent, Organization, Scraper, Calendar
+import events.digitools as digitools
+from dateutil import relativedelta
+td = relativedelta.relativedelta(hours=5)
+
+
+venue, created = Organization.objects.get_or_create(
+ name="Sociable Ciderwerks",
+ city="Minneapolis",
+ website="https://sociablecider.com/events",
+ )
+event_type = "Mu"
+
+try:
+ scraper, created = Scraper.objects.get_or_create(
+ name="Sociable Ciderwerks",
+ website="https://calendar.google.com/calendar/ical/c_oa7uitvkn871o1ojl5e1os4ve8%40group.calendar.google.com/public/basic.ics",
+ calendar = Calendar.objects.get(id=1),
+ items = 0,
+ new_items = 0,
+ last_ran = datetime.now(),
+ )
+except Exception as e:
+ print(e)
+ scraper = Scraper.objects.get(name=venue.name)
+
+item_count_start = scraper.items
+
+objIcalData = requests.get(scraper.website)
+gcal = iCalendar.from_ical(objIcalData.text)
+tz = pytz.timezone("US/Central")
+digitools.getiCalEvents(gcal, scraper)
+digitools.updateScraper(scraper, item_count_start)
\ No newline at end of file
diff --git a/event_scrapers/Working/iCal/ical_run.bunkers.py b/event_scrapers/Working/iCal/ical_run.bunkers.py
new file mode 100644
index 0000000..05afd31
--- /dev/null
+++ b/event_scrapers/Working/iCal/ical_run.bunkers.py
@@ -0,0 +1,48 @@
+import requests, os, sys
+from icalendar import Calendar as iCalendar, Event
+
+from pprint import pprint as ppr
+import pytz
+
+import django
+sys.path.append('../../../')
+os.environ['DJANGO_SETTINGS_MODULE'] = 'ds_events.settings'
+django.setup()
+
+from events.models import Event as DSEvent, Organization, Scraper, Calendar
+
+import events.digitools as digitools
+
+from datetime import datetime
+from dateutil import relativedelta
+td = relativedelta.relativedelta(hours=5)
+
+venue, created = Organization.objects.get_or_create(
+ name="Bunkers",
+ city="Minneapolis",
+ website="https://bunkersmusic.com/calendar/",
+ is_venue = True
+ )
+
+try:
+ scraper, created = Scraper.objects.get_or_create(
+ name="Bunkers",
+ website="https://calendar.google.com/calendar/ical/js94epu90r2et31aopons1ifm8%40group.calendar.google.com/public/basic.ics",
+ calendar = Calendar.objects.get(id=1),
+ items = 0,
+ new_items = 0,
+ last_ran = datetime.now(),
+ )
+except Exception as e:
+ print(e)
+ scraper = Scraper.objects.get(name=venue.name)
+
+item_count_start = scraper.items
+
+event_type = "Mu"
+
+objIcalData = requests.get(scraper.website)
+gcal = iCalendar.from_ical(objIcalData.text)
+tz = pytz.timezone("US/Central")
+digitools.getiCalEvents(gcal, scraper)
+digitools.updateScraper(scraper, item_count_start)
diff --git a/event_scrapers/Working/iCal/ical_run.cfpa.py b/event_scrapers/Working/iCal/ical_run.cfpa.py
new file mode 100644
index 0000000..aba29e5
--- /dev/null
+++ b/event_scrapers/Working/iCal/ical_run.cfpa.py
@@ -0,0 +1,48 @@
+import requests, os, sys
+from icalendar import Calendar as iCalendar, Event
+
+from datetime import datetime
+from dateutil import relativedelta
+
+from pprint import pprint as ppr
+import pytz
+
+import django
+sys.path.append('../../../')
+os.environ['DJANGO_SETTINGS_MODULE'] = 'ds_events.settings'
+django.setup()
+
+from events.models import Event as DSEvent, Organization, Scraper, Calendar
+import events.digitools as digitools
+
+
+td = relativedelta.relativedelta(hours=5)
+
+venue, created = Organization.objects.get_or_create(
+ name="Center for Performing Arts",
+ city="Minneapolis",
+ website="https://www.cfpampls.com/events",
+ )
+
+try:
+ scraper, created = Scraper.objects.get_or_create(
+ name="Center for Performing Arts",
+ website="https://calendar.google.com/calendar/ical/6rpooudjg01vc8bjek1snu2ro0%40group.calendar.google.com/public/basic.ics",
+ calendar = Calendar.objects.get(id=1),
+ items = 0,
+ new_items = 0,
+ last_ran = datetime.now(),
+ )
+except Exception as e:
+ print(e)
+ scraper = Scraper.objects.get(name=venue.name)
+
+item_count_start = scraper.items
+
+event_type = "Ed"
+
+objIcalData = requests.get(scraper.website)
+gcal = iCalendar.from_ical(objIcalData.text)
+tz = pytz.timezone("US/Central")
+digitools.getiCalEvents(gcal, scraper)
+digitools.updateScraper(scraper, item_count_start)
\ No newline at end of file
diff --git a/event_scrapers/Working/iCal/ical_run.eagles.py b/event_scrapers/Working/iCal/ical_run.eagles.py
new file mode 100644
index 0000000..21003c6
--- /dev/null
+++ b/event_scrapers/Working/iCal/ical_run.eagles.py
@@ -0,0 +1,46 @@
+import requests, os, sys
+from icalendar import Calendar as iCalendar, Event
+from datetime import datetime
+
+from pprint import pprint as ppr
+import pytz
+
+import django
+sys.path.append('../../../')
+os.environ['DJANGO_SETTINGS_MODULE'] = 'ds_events.settings'
+django.setup()
+
+from events.models import Event as DSEvent, Organization, Scraper, Calendar
+import events.digitools as digitools
+
+from dateutil import relativedelta
+td = relativedelta.relativedelta(hours=5)
+
+venue, created = Organization.objects.get_or_create(
+ name="Eagles #34",
+ city="Minneapolis",
+ website="https://www.minneapoliseagles34.org/events-entertainment.html",
+ )
+
+try:
+ scraper, created = Scraper.objects.get_or_create(
+ name="Eagles #34",
+ website="https://calendar.google.com/calendar/ical/teflgutelllvla7r6vfcmjdjjo%40group.calendar.google.com/public/basic.ics",
+ calendar = Calendar.objects.get(id=1),
+ items = 0,
+ new_items = 0,
+ last_ran = datetime.now(),
+ )
+except Exception as e:
+ print(e)
+ scraper = Scraper.objects.get(name=venue.name)
+
+item_count_start = scraper.items
+
+event_type = "Mu"
+
+objIcalData = requests.get(scraper.website)
+gcal = iCalendar.from_ical(objIcalData.text)
+tz = pytz.timezone("US/Central")
+digitools.getiCalEvents(gcal, scraper)
+digitools.updateScraper(scraper, item_count_start)
\ No newline at end of file
diff --git a/event_scrapers/Working/iCal/ical_run.terminalbar-mpls.py b/event_scrapers/Working/iCal/ical_run.terminalbar-mpls.py
new file mode 100644
index 0000000..c8d9d35
--- /dev/null
+++ b/event_scrapers/Working/iCal/ical_run.terminalbar-mpls.py
@@ -0,0 +1,50 @@
+import requests, os, sys
+from icalendar import Calendar as iCalendar, Event
+from datetime import datetime
+from dateutil import relativedelta
+td = relativedelta.relativedelta(hours=5)
+
+from pprint import pprint as ppr
+import pytz
+
+import django
+sys.path.append('../../../')
+os.environ['DJANGO_SETTINGS_MODULE'] = 'ds_events.settings'
+django.setup()
+
+from events.models import Event as DSEvent, Organization, Scraper, Calendar
+
+import events.digitools as digitools
+
+td = relativedelta.relativedelta(hours=5)
+odt = datetime.now() + td
+
+venue, created = Organization.objects.get_or_create(
+ name="Terminal Bar",
+ city="Minneapolis",
+ website="https://terminalbarmn.com",
+ )
+event_type = "Mu"
+
+try:
+ scraper, created = Scraper.objects.get_or_create(
+ name="Terminal Bar",
+ website="https://calendar.google.com/calendar/ical/terminalbar32%40gmail.com/public/basic.ics",
+ calendar = Calendar.objects.get(id=1),
+ items = 0,
+ new_items = 0,
+ last_ran = datetime.now(),
+ )
+except Exception as e:
+ print(e)
+ scraper = Scraper.objects.get(name=venue.name)
+
+item_count_start = scraper.items
+
+event_type = "Mu"
+
+objIcalData = requests.get(scraper.website)
+gcal = iCalendar.from_ical(objIcalData.text)
+tz = pytz.timezone("US/Central")
+digitools.getiCalEvents(gcal, scraper)
+digitools.updateScraper(scraper, item_count_start)
\ No newline at end of file
diff --git a/event_scrapers/Working/news/minnpost.mn.py b/event_scrapers/Working/news/minnpost.mn.py
new file mode 100644
index 0000000..1a6be3f
--- /dev/null
+++ b/event_scrapers/Working/news/minnpost.mn.py
@@ -0,0 +1,78 @@
+import os, sys
+from datetime import datetime
+from dateutil import relativedelta
+
+import django
+sys.path.append('../../../')
+os.environ['DJANGO_SETTINGS_MODULE'] = 'ds_events.settings'
+django.setup()
+
+from time import sleep
+from pprint import pprint as ppr
+import pytz
+
+from events.models import Organization, Scraper
+from events.digitools import getBrowser, createURL, createBasicArticle, getSource
+
+
+org, created = Organization.objects.get_or_create(
+ name="MinnPost",
+ city="Minneapolis",
+ website="https://www.minnpost.com/",
+ is_venue=False,
+ )
+
+try:
+ scraper, created = Scraper.objects.get_or_create(
+ name=org.name,
+ website=org.website,
+ items = 0,
+ last_ran = datetime.now(),
+ )
+except Exception as e:
+ print(e)
+ scraper = Scraper.objects.get(name=org.name)
+ print("Scraper: ", scraper)
+
+event_type = "Ja"
+
+# Time Signatures
+tz = pytz.timezone("US/Central")
+DATETIME_FORMAT = '%b %d %Y %I:%M %p'
+DATETIME_FORMAT_2 = '%A, %B %d @ %I%p %Y'
+
+def get_events(ps, event_type):
+ contents = ps.xpath('.//*/article')
+ count = 0
+ ppr(contents)
+ for c in contents:
+ try:
+ if count > 10:
+ br.close()
+ quit()
+ article = {}
+ article['title'] = c.xpath('.//*/h2[@class="entry-title"]/a/text()')[0]
+ article['link'] = c.xpath('.//*/h2[@class="entry-title"]/a/@href')[0]
+ createBasicArticle(article, event_type, org)
+ ppr(article)
+ print("Success")
+ count+=1
+ except Exception as e:
+ print(e)
+ ppr(article)
+ print("\n\n+++\n\n")
+
+if len(sys.argv) >= 2:
+ arg1 = sys.argv[1]
+ br = getBrowser(arg1)
+else:
+ print("No run_env")
+ quit()
+
+
+ps = getSource(br, org.website)
+get_events(ps, "Ed")
+sleep(3)
+
+br.close()
+scraper.save()
\ No newline at end of file
diff --git a/event_scrapers/Working/news/racket.mn.py b/event_scrapers/Working/news/racket.mn.py
new file mode 100644
index 0000000..a48e072
--- /dev/null
+++ b/event_scrapers/Working/news/racket.mn.py
@@ -0,0 +1,68 @@
+import os, sys
+from datetime import datetime
+from dateutil import relativedelta
+
+import django
+sys.path.append('../../../')
+os.environ['DJANGO_SETTINGS_MODULE'] = 'ds_events.settings'
+django.setup()
+
+from time import sleep
+from pprint import pprint as ppr
+import pytz
+
+from events.models import Organization, Scraper
+from events.digitools import getBrowser, createURL, createBasicArticle, getSource
+
+scraper, created = Scraper.objects.get_or_create(
+ name="Racket MN",
+ website="https://racketmn.com",
+ last_ran = datetime.now(),
+ )
+
+org, created = Organization.objects.get_or_create(
+ name="Racket MN",
+ city="Minneapolis",
+ website="https://racketmn.com",
+ is_venue=False,
+ )
+
+event_type = "Ja"
+
+# Time Signatures
+tz = pytz.timezone("US/Central")
+DATETIME_FORMAT = '%b %d %Y %I:%M %p'
+DATETIME_FORMAT_2 = '%A, %B %d @ %I%p %Y'
+
+def get_events(ps, event_type):
+ count = 0
+ contents = ps.xpath('.//*/div[@class="PostCard_stackedWrapper__S21Fy"]') + ps.xpath('.//*/div[@class="PostCard_wrapper__uteO3"]')
+ for c in contents:
+ if count > 10:
+ br.close()
+ quit()
+ try:
+ article = {}
+ article['title'] = c.xpath('.//div/a/h3/text()')[0]
+ article['link'] = org.website + c.xpath('.//div/a/@href')[1]
+ createBasicArticle(article, event_type, org)
+ count+=1
+ except Exception as e:
+ print(e)
+ ppr(article)
+ print("\n+++\n")
+
+if len(sys.argv) >= 2:
+ arg1 = sys.argv[1]
+ br = getBrowser(arg1)
+else:
+ print("No run_env")
+ quit()
+
+
+ps = getSource(br, org.website)
+get_events(ps, "Ed")
+sleep(3)
+
+br.close()
+scraper.save()
\ No newline at end of file
diff --git a/event_scrapers/Working/news/sahan.mn.py b/event_scrapers/Working/news/sahan.mn.py
new file mode 100644
index 0000000..69e399a
--- /dev/null
+++ b/event_scrapers/Working/news/sahan.mn.py
@@ -0,0 +1,68 @@
+import os, sys
+from datetime import datetime
+from dateutil import relativedelta
+
+import django
+sys.path.append('../../../')
+os.environ['DJANGO_SETTINGS_MODULE'] = 'ds_events.settings'
+django.setup()
+
+from time import sleep
+from pprint import pprint as ppr
+import pytz
+
+from events.models import Organization, Scraper
+from events.digitools import getBrowser, createURL, createBasicArticle, getSource
+
+scraper, created = Scraper.objects.get_or_create(
+ name="Sahan Journal",
+ website="https://sahanjournal.com/",
+ last_ran = datetime.now(),
+ )
+
+org, created = Organization.objects.get_or_create(
+ name="Sahan Journal",
+ city="Minneapolis",
+ website="https://sahanjournal.com/",
+ is_venue=False,
+ )
+
+event_type = "Ja"
+
+# Time Signatures
+tz = pytz.timezone("US/Central")
+DATETIME_FORMAT = '%b %d %Y %I:%M %p'
+DATETIME_FORMAT_2 = '%A, %B %d @ %I%p %Y'
+
+def get_events(ps, event_type):
+ contents = ps.xpath('.//*/article')
+ count = 0
+ for c in contents:
+ try:
+ if count > 10:
+ br.close()
+ quit()
+ article = {}
+ article['title'] = c.xpath('.//*/h2[@class="entry-title"]/a/text()')[0]
+ article['link'] = c.xpath('.//*/h2[@class="entry-title"]/a/@href')[0]
+ createBasicArticle(article, event_type, org)
+ count+=1
+ except Exception as e:
+ print(e)
+ ppr(article)
+ print("\n+++\n")
+
+if len(sys.argv) >= 2:
+ arg1 = sys.argv[1]
+ br = getBrowser(arg1)
+else:
+ print("No run_env")
+ quit()
+
+
+ps = getSource(br, org.website)
+get_events(ps, "Ed")
+sleep(3)
+
+br.close()
+scraper.save()
\ No newline at end of file
diff --git a/event_scrapers/Working/news/unicornriot.py b/event_scrapers/Working/news/unicornriot.py
new file mode 100644
index 0000000..841d132
--- /dev/null
+++ b/event_scrapers/Working/news/unicornriot.py
@@ -0,0 +1,63 @@
+import os, sys
+from datetime import datetime
+from dateutil import relativedelta
+
+import django
+sys.path.append('../../../')
+os.environ['DJANGO_SETTINGS_MODULE'] = 'ds_events.settings'
+django.setup()
+
+from time import sleep
+from pprint import pprint as ppr
+import pytz
+
+from events.models import Organization, Scraper
+from events.digitools import getBrowser, createURL, createBasicArticle, getSource
+
+scraper, created = Scraper.objects.get_or_create(
+ name="Uniocorn Riot",
+ website="https://unicornriot.ninja/",
+ last_ran = datetime.now(),
+ )
+
+org, created = Organization.objects.get_or_create(
+ name="Uniocorn Riot",
+ city="Minneapolis",
+ website="https://unicornriot.ninja/",
+ is_venue=False,
+ )
+
+event_type = "Ja"
+
+# Time Signatures
+tz = pytz.timezone("US/Central")
+DATETIME_FORMAT = '%b %d %Y %I:%M %p'
+DATETIME_FORMAT_2 = '%A, %B %d @ %I%p %Y'
+
+def get_events(ps, event_type):
+ contents = ps.xpath('.//*/article')
+ for c in contents[:10]:
+ try:
+ article = {}
+ article['title'] = c.xpath('.//*/h3[@class="title entry-title is-3"]/a/text()')[0]
+ article['link'] = c.xpath('.//*/h3[@class="title entry-title is-3"]/a/@href')[0]
+ createBasicArticle(article, event_type, org)
+ except Exception as e:
+ print(e)
+ ppr(article)
+ print("\n+++\n")
+
+if len(sys.argv) >= 2:
+ arg1 = sys.argv[1]
+ br = getBrowser(arg1)
+else:
+ print("No run_env")
+ quit()
+
+
+ps = getSource(br, org.website)
+get_events(ps, "Ed")
+sleep(3)
+
+br.close()
+scraper.save()
\ No newline at end of file
diff --git a/event_scrapers/Working/smedia/bluesky.py b/event_scrapers/Working/smedia/bluesky.py
new file mode 100644
index 0000000..9c9b98e
--- /dev/null
+++ b/event_scrapers/Working/smedia/bluesky.py
@@ -0,0 +1,132 @@
+import os, sys
+from datetime import datetime
+from dateutil import relativedelta
+
+from atproto import Client
+
+import django
+sys.path.append('../../../')
+os.environ['DJANGO_SETTINGS_MODULE'] = 'ds_events.settings'
+django.setup()
+
+from time import sleep
+from pprint import pprint as ppr
+import pytz
+
+from socials.models import SocialLink, SocialPost
+# from digitools import getBrowser, createURL, createBasicEvent, getSource
+
+tz = pytz.timezone("US/Central")
+
+USERNAME = "dreamfreely.org"
+PASSWORD = "Futbol21!@"
+
+client = Client()
+client.login(USERNAME, PASSWORD)
+feed = client.get_author_feed(USERNAME, limit = 100)
+
+def createSocialLink(post):
+ new_post, created = SocialLink.objects.update_or_create(
+ uri = post['uri'],
+ text = post['text'],
+ link = post['link'],
+ handle = post['handle'],
+ likes = post['likes'],
+ reposts = post['reposts'],
+ quotes = post['quotes'],
+ replies = post['replies'],
+ created_at = post['created_at'],
+ platform = 'bluesky',
+ rt_uri = post['rt_uri'],
+ rt_text = post['rt_text'],
+ rt_link = post['rt_link'],
+ rt_handle = post['rt_handle'],
+ )
+ # print(created, new_post)
+ print("completed write")
+
+tweets = []
+
+print(len(feed.feed))
+
+for post in feed.feed:
+ post = post.post
+ print("\n\nNEW POST\n\n")
+ # try:
+ # ppr(post.embed.record.record.author.handle)
+ # ppr(post.embed.record.record.value.text.split("\n")[:2])
+ # ppr(post.embed.record.record.value.embed.external.uri.split("?")[0])
+ # ppr(post.embed.record.record.uri.split("feed.post/")[1])
+ # except:
+ # pass
+
+ if hasattr(post.record.embed, 'external'):
+ p = {}
+ try:
+ p['link'] = post.record.embed.external.uri.split("?")[0]
+ except:
+ pass
+ p['text'] = " ".join(post.record.text.split("\n")[:2])
+ p['handle'] = post.author.handle
+ p['uri'] = post.uri.split("feed.post/")[1]
+ p['likes'] = post.like_count
+ p['quotes'] = post.quote_count
+ p['replies'] = post.reply_count
+ p['reposts'] = post.repost_count
+ p['created_at'] = post.record.created_at
+
+ p['rt_handle'] = "blank"
+ p['rt_text'] = "blank"
+ p['rt_uri'] = "blank"
+ p['rt_link'] = "blank"
+
+ elif hasattr(post.embed, 'record'):
+ p = {}
+ p['text'] = " ".join(post.record.text.split("\n")[:2])
+ p['handle'] = post.author.handle
+ p['uri'] = post.uri.split("feed.post/")[1]
+ p['likes'] = post.like_count
+ p['quotes'] = post.quote_count
+ p['replies'] = post.reply_count
+ p['reposts'] = post.repost_count
+ p['created_at'] = post.record.created_at
+ p['link'] = "blank"
+
+ try:
+ p['rt_handle'] = post.embed.record.record.author.handle
+ p['rt_text'] = " ".join(post.embed.record.record.value.text.split("\n")[:2])
+ p['rt_uri'] = post.embed.record.record.uri.split("feed.post/")[1]
+ p['rt_link'] = post.embed.record.record.value.embed.external.uri.split("?")[0]
+ except:
+ p['rt_handle'] = "blank"
+ p['rt_text'] = "blank"
+ p['rt_uri'] = "blank"
+ p['rt_link'] = "blank"
+
+
+ else:
+ p = {}
+ p['text'] = " ".join(post.record.text.split("\n")[:2])
+ p['handle'] = post.author.handle
+ p['uri'] = post.uri.split("feed.post/")[1]
+ p['likes'] = post.like_count
+ p['quotes'] = post.quote_count
+ p['replies'] = post.reply_count
+ p['reposts'] = post.repost_count
+ p['created_at'] = post.record.created_at
+
+ p['rt_handle'] = "blank"
+ p['rt_text'] = "blank"
+ p['rt_uri'] = "blank"
+ p['rt_link'] = "blank"
+ p['link'] = "blank"
+
+ # ppr(p)
+ # tweets.append(p)
+
+ try:
+ print('writing file')
+ createSocialLink(p)
+ except Exception as e:
+ ppr(post.record.embed)
+ print(e, "\nthis\n\n")
\ No newline at end of file
diff --git a/event_scrapers/Working/smedia/bluesky_media.py b/event_scrapers/Working/smedia/bluesky_media.py
new file mode 100644
index 0000000..e230ac7
--- /dev/null
+++ b/event_scrapers/Working/smedia/bluesky_media.py
@@ -0,0 +1,72 @@
+import os, sys
+from datetime import datetime
+from dateutil import relativedelta
+
+from atproto import Client
+
+import django
+sys.path.append('../../../')
+os.environ['DJANGO_SETTINGS_MODULE'] = 'ds_events.settings'
+django.setup()
+
+from time import sleep
+from pprint import pprint as ppr
+import pytz
+
+from socials.models import SocialImg
+# from digitools import getBrowser, createURL, createBasicEvent, getSource
+
+tz = pytz.timezone("US/Central")
+
+USERNAME = "dreamfreely.org"
+PASSWORD = "Futbol21!@"
+
+client = Client()
+client.login(USERNAME, PASSWORD)
+feed = client.get_author_feed(USERNAME, limit = 100)
+
+def createSocialImg(post):
+ new_post, created = SocialImg.objects.update_or_create(
+ uri = post['uri'],
+ text = post['text'],
+ img_link = post['img_link'],
+ handle = post['handle'],
+ created_at = post['created_at'],
+ platform = 'bluesky',
+ )
+ print(created, new_post)
+
+tweets = []
+
+print(len(feed.feed))
+
+for post in feed.feed:
+ post = post.post
+
+ # print(post, "\n\n")
+
+ # try:
+ # ppr(post.embed.images[0].fullsize)
+ # # ppr(post.embed.record.record.value.text.split("\n")[:2])
+ # # ppr(post.embed.record.record.value.embed.external.uri.split("?")[0])
+ # # ppr(post.embed.record.record.uri.split("feed.post/")[1])
+ # except Exception as e:
+ # print("failed:", e)
+
+ if hasattr(post.embed, 'images'):
+ p = {}
+ p['img_link'] = post.embed.images[0].fullsize
+ p['text'] = " ".join(post.record.text.split("\n")[:2])
+ p['handle'] = post.author.handle
+ p['uri'] = post.uri.split("feed.post/")[1]
+ p['created_at'] = post.record.created_at
+
+ # ppr(p)
+ tweets.append(p)
+
+ try:
+ print('writing file')
+ createSocialImg(p)
+ except Exception as e:
+ ppr(post.embed)
+ print(e, "\nthis\n\n")
\ No newline at end of file
diff --git a/event_scrapers/Working/smedia/redsky.py b/event_scrapers/Working/smedia/redsky.py
new file mode 100644
index 0000000..d1219ca
--- /dev/null
+++ b/event_scrapers/Working/smedia/redsky.py
@@ -0,0 +1,72 @@
+import os, sys
+from datetime import datetime
+from dateutil import relativedelta
+
+import django
+sys.path.append('../../../')
+os.environ['DJANGO_SETTINGS_MODULE'] = 'ds_events.settings'
+django.setup()
+
+from time import sleep
+from pprint import pprint as ppr
+import pytz
+
+import praw
+
+from socials.models import SocialLink, SocialPost
+# from digitools import getBrowser, createURL, createBasicEvent, getSource
+
+tz = pytz.timezone("US/Central")
+
+
+# timestamp = 1729322547223
+# dt_object = datetime.datetime.fromtimestamp(timestamp)
+# print(dt_object)
+
+reddit = praw.Reddit(
+ client_id="rxW3Ywqke6FZDP7pIhYYuw",
+ client_secret="cg1VNl0I-RTuYUwgz16ryKh2wWKEcA",
+ password="7CTu4sGFi9E0",
+ user_agent="CultureClap",
+ username="cultureclap",
+)
+
+
+def createSocialLink(post):
+ new_post, created = SocialLink.objects.update_or_create(
+ text = post['text'],
+ link = post['link'],
+ handle = post['handle'],
+ likes = post['likes'],
+ replies = post['replies'],
+ platform = post['platform'],
+ created_at = post['created_at'],
+ rt_uri = 'blank',
+ rt_text = 'blank',
+ rt_link = 'blank',
+ rt_handle = 'blank',
+ )
+ print(created, new_post)
+
+count = 0
+
+for item in reddit.user.me().upvoted():
+ rdt = {}
+ rdt['text'] = item.title + " | " + item.selftext
+ rdt['handle'] = item.author.name
+ rdt['link'] = item.url
+ rdt['likes'] = item.ups
+ rdt['replies'] = len(item.comments.list())
+ rdt['created_at'] = datetime.fromtimestamp(item.created_utc)
+ rdt['platform'] = 'reddit'
+
+ try:
+ print('writing file')
+ createSocialLink(rdt)
+ count +=1
+ if count > 50:
+ quit()
+ except Exception as e:
+ ppr(item)
+ print(e, "\nthis\n\n")
+ # ppr(item)
\ No newline at end of file
diff --git a/event_scrapers/Working/venues/AcmeComedy.Mpls.py b/event_scrapers/Working/venues/AcmeComedy.Mpls.py
new file mode 100644
index 0000000..426faf9
--- /dev/null
+++ b/event_scrapers/Working/venues/AcmeComedy.Mpls.py
@@ -0,0 +1,71 @@
+import os, sys
+from datetime import datetime
+from dateutil import relativedelta
+
+import django
+sys.path.append('../../../')
+os.environ['DJANGO_SETTINGS_MODULE'] = 'ds_events.settings'
+django.setup()
+
+from time import sleep
+from pprint import pprint as ppr
+import pytz
+
+import events.digitools as digitools
+
+from events.models import Organization, Scraper, Calendar, Event
+
+venue, created = Organization.objects.get_or_create(
+ name="Acme Comedy Club",
+ city="Minneapolis",
+ website="https://acmecomedycompany.com/the-club/calendar/",
+ is_venue = True
+ )
+
+scraper,item_count_start = digitools.getScraper(venue)
+
+tz = pytz.timezone("US/Central")
+
+DATETIME_FORMAT = '%b %d %Y %I:%M %p'
+DATETIME_FORMAT_2 = '%A, %B %d @ %I%p %Y'
+
+def get_events(ps, event_type):
+ contents = ps.xpath('.//*/li[@class="event"]')
+ for c in contents:
+ try:
+ event = {}
+ day = c.xpath('.//*/span[@class="day"]/text()')[0]
+ month = c.xpath('.//*/span[@class="mth"]/text()')[0]
+ year = datetime.now().year
+ if month == "Jan":
+ year = int(year) + 1
+ event['scraper'] = scraper
+ event['calendar'] = scraper.calendar
+ event['title'] = c.xpath('.//*/span[@class="event_title"]/a/text()')[0]
+ event['date'] = [month, day, str(year), c.xpath('.//*/span[@class="event_time"]/text()')[0].strip()]
+ event['date'] = " ".join(event['date'])
+ event['dateStamp'] = datetime.strptime(event['date'], DATETIME_FORMAT)
+ event['link'] = c.xpath('.//*/span[@class="event_title"]/a/@href')[0]
+ digitools.createBasicEvent(event, "Co", venue)
+ scraper.items+=1
+ except Exception as e:
+ print(e)
+ ppr(event)
+ print("\n\n+++\n\n")
+
+if len(sys.argv) >= 2:
+ arg1 = sys.argv[1]
+ br = digitools.getBrowser(arg1)
+else:
+ print("No run_env")
+ br.close()
+ quit()
+
+links = digitools.createURL("https://acmecomedycompany.com/the-club/calendar/")
+
+for link in links:
+ ps = digitools.getSource(br, link)
+ get_events(ps, "Co")
+
+digitools.updateScraper(scraper, item_count_start)
+br.close()
\ No newline at end of file
diff --git a/event_scrapers/Working/venues/Amsterdam.StPaul.py b/event_scrapers/Working/venues/Amsterdam.StPaul.py
new file mode 100644
index 0000000..fe5156d
--- /dev/null
+++ b/event_scrapers/Working/venues/Amsterdam.StPaul.py
@@ -0,0 +1,67 @@
+import os, sys
+from datetime import datetime
+from dateutil import relativedelta
+
+import django
+sys.path.append('../../../')
+os.environ['DJANGO_SETTINGS_MODULE'] = 'ds_events.settings'
+django.setup()
+
+from time import sleep
+from pprint import pprint as ppr
+import pytz
+
+from events.models import Organization, Scraper, Calendar
+import events.digitools as digitools
+
+venue, created = Organization.objects.get_or_create(
+ name="Amsterdam Bar & Hall",
+ city="St. Paul",
+ website="https://www.amsterdambarandhall.com/events-new/",
+ is_venue=True
+ )
+
+scraper,item_count_start = digitools.getScraper(venue)
+
+DATETIME_FORMAT = '%B %d %Y %I:%M%p'
+DATETIME_FORMAT_2 = '%A, %B %d @ %I%p %Y'
+
+def get_events(ps):
+ contents = ps.xpath('.//*/ul[@class="events-list"]/li')
+ for c in contents:
+ try:
+ event = {}
+ day = c.xpath('.//*/div[@class="date-day"]/text()')[0]
+ month = c.xpath('.//*/div[@class="date-month"]/text()')[0]
+ year = datetime.now().year
+ event['scraper'] = scraper
+ event['calendar'] = scraper.calendar
+ event['title'] = c.xpath('.//div/h4/a/text()')[0]
+ event['date'] = [month, day, str(year), c.xpath('.//div[@class="event-info"]/p/text()')[0].split(" ")[0]]
+ event['date'] = " ".join(event['date'])
+ event['dateStamp'] =datetime.strptime(event['date'], DATETIME_FORMAT)
+ event['link'] = c.xpath('.//div[@class="event-info"]/h4/a/@href')[0]
+ if " presents" in event['title']:
+ event['title'] = event['title'].split("presents")[1][1:].strip()
+ if event['title'].startswith('.'):
+ print("BLAHH\n")
+ event['title'] = event['title'][1:].strip()
+ digitools.createBasicEvent(event, "Mu", venue)
+ scraper.items+=1
+ except Exception as e:
+ print(e)
+
+
+if len(sys.argv) >= 2:
+ arg1 = sys.argv[1]
+ br = digitools.getBrowser(arg1)
+else:
+ print("No run_env")
+ quit()
+
+ps = digitools.getSource(br, venue.website)
+get_events(ps)
+sleep(3)
+br.close()
+
+digitools.updateScraper(scraper, item_count_start)
\ No newline at end of file
diff --git a/event_scrapers/Working/venues/EastsideLibrary.py b/event_scrapers/Working/venues/EastsideLibrary.py
new file mode 100644
index 0000000..7604d5c
--- /dev/null
+++ b/event_scrapers/Working/venues/EastsideLibrary.py
@@ -0,0 +1,70 @@
+import os, sys
+from datetime import datetime
+from dateutil import relativedelta
+
+import django
+sys.path.append('../../../')
+os.environ['DJANGO_SETTINGS_MODULE'] = 'ds_events.settings'
+django.setup()
+
+from time import sleep
+from pprint import pprint as ppr
+import pytz
+
+from events.models import Organization, Scraper
+import events.digitools as digitools
+
+current_year = str(datetime.now().year)
+
+venue, created = Organization.objects.get_or_create(
+ name="Eastside Freedom Library",
+ city="Minneapolis",
+ website="https://eastsidefreedomlibrary.org/events/",
+ is_venue=True
+ )
+
+scraper,item_count_start = digitools.getScraper(venue)
+
+tz = pytz.timezone("US/Central")
+
+DATETIME_FORMAT = '%B %d @ %I:%M %p %Y'
+
+def get_events(ps):
+ contents = ps.xpath('.//*/article')
+ # ppr("contents:", contents)
+ for c in contents:
+ try:
+ event = {}
+ event['scraper'] = scraper
+ event['calendar'] = scraper.calendar
+ event['title'] = c.xpath('.//*/h3[@class="tribe-events-calendar-list__event-title tribe-common-h6 tribe-common-h4--min-medium"]/a/text()')[0].strip()
+ event['link'] = c.xpath('.//*/h3[@class="tribe-events-calendar-list__event-title tribe-common-h6 tribe-common-h4--min-medium"]/a/@href')[0]
+ event['date'] = c.xpath('.//*/span[@class="tribe-event-date-start"]/text()')[0].strip() + " " + current_year
+ event['dateStamp'] =datetime.strptime(event['date'], DATETIME_FORMAT)
+ try:
+ new_event = digitools.createBasicEvent(event, "Ed", venue)
+ scraper.items+=1
+ except Exception as e:
+ print(e)
+ ppr(event)
+ print("\n+++\n")
+ except Exception as e:
+ print(e)
+
+if len(sys.argv) >= 2:
+ arg1 = sys.argv[1]
+ br = digitools.getBrowser(arg1)
+else:
+ print("No run_env")
+ quit()
+
+calendar_url = 'https://eastsidefreedomlibrary.org/events/'
+
+ps = digitools.getSource(br, calendar_url)
+
+get_events(ps)
+
+# ppr(events)
+br.close()
+
+digitools.updateScraper(scraper, item_count_start)
\ No newline at end of file
diff --git a/event_scrapers/Working/venues/FirstAveScrape.py b/event_scrapers/Working/venues/FirstAveScrape.py
new file mode 100644
index 0000000..a130b98
--- /dev/null
+++ b/event_scrapers/Working/venues/FirstAveScrape.py
@@ -0,0 +1,178 @@
+import os, sys
+from datetime import datetime
+from dateutil import relativedelta
+
+import django
+sys.path.append('../../../')
+os.environ['DJANGO_SETTINGS_MODULE'] = 'ds_events.settings'
+django.setup()
+
+from time import sleep
+from pprint import pprint as ppr
+
+from lxml import html
+import pytz
+
+from events.models import Organization, Scraper, Event
+import events.digitools as digitools
+
+venue, created = Organization.objects.get_or_create(
+ name="First Avenue",
+ city="Minneapolis",
+ website="https://first-avenue.com",
+ is_venue = True
+ )
+
+scraper,item_count_start = digitools.getScraper(venue)
+
+tz = pytz.timezone("US/Central")
+
+DATETIME_FORMAT = '%b %d %Y %I%p'
+DATETIME_FORMAT_2 = '%b %d %Y %I:%M%p'
+DATETIME_FORMAT_3 = '%b %d %Y'
+
+# Set initial variables for City, etc
+month = int(datetime.now().month)
+day = int(datetime.now().day)
+
+if month == 12:
+ next_month = "01"
+else:
+ next_month = month + 1
+ if next_month < 10:
+ next_month = "0" + str(next_month)
+
+if month < 10:
+ month = "0" + str(month)
+
+year = int(datetime.now().year)
+
+calendar_url = 'https://first-avenue.com/shows/?start_date=' + str(year) + str(month) + str(day)
+
+next_month_string = str(next_month) + "01"
+
+if next_month == 1:
+ calendar_url_2 = 'https://first-avenue.com/shows/?start_date=' + str(year + 1) + next_month_string
+else:
+ if int(next_month) == 1:
+ calendar_url_2 = 'https://first-avenue.com/shows/?start_date=' + str(year + 1) + next_month_string
+ else:
+ calendar_url_2 = 'https://first-avenue.com/shows/?start_date=' + str(year) + next_month_string
+
+
+print("\n\n", calendar_url, calendar_url_2, "\n\n")
+
+if len(sys.argv) >= 2:
+ arg1 = sys.argv[1]
+ br = digitools.getBrowser(arg1)
+else:
+ print("No run_env")
+ quit()
+
+
+if datetime.now().day < 8:
+ ps = digitools.getSource(br, calendar_url)
+ shows = ps.xpath('.//*/div[@class="show_name content flex-fill"]/div/div/h4/a/@href')[:63]
+elif 7 < datetime.now().day < 15:
+ ps = digitools.getSource(br, calendar_url)
+ shows = ps.xpath('.//*/div[@class="show_name content flex-fill"]/div/div/h4/a/@href')
+elif 14 < datetime.now().day < 21:
+ ps = digitools.getSource(br, calendar_url)
+ shows = ps.xpath('.//*/div[@class="show_name content flex-fill"]/div/div/h4/a/@href')[:95]
+ ps = digitools.getSource(br, calendar_url_2)
+ shows = shows + ps.xpath('.//*/div[@class="show_name content flex-fill"]/div/div/h4/a/@href')[:31]
+else:
+ ps = digitools.getSource(br, calendar_url)
+ shows = ps.xpath('.//*/div[@class="show_name content flex-fill"]/div/div/h4/a/@href')
+
+ ps = digitools.getSource(br, calendar_url_2)
+ shows = shows + ps.xpath('.//*/div[@class="show_name content flex-fill"]/div/div/h4/a/@href')[:63]
+
+events = []
+
+def get_info(pse):
+ event = {}
+ event['scraper'] = scraper
+ event['calendar'] = scraper.calendar
+ event["venue"] = pse.xpath('.//*/div[@class="content"]/div/div[@class="venue_name"]/text()')[0].replace('\t', '').replace('\n', '').strip()
+ event["show_title"] = pse.xpath('.//*/span[@class="show_title"]/text()')[0].replace('\t', '').replace('\n', '')
+ if event["show_title"] == "":
+ event["show_title"] = pse.xpath('.//*/span[@class="show_title"]/text()')[2].replace('\t', '').replace('\n', '')
+ event["guests"] = pse.xpath('.//*/div[@class="feature_details_main d-flex align-items-center"]/div/h4/text()')
+ event["flyer"] = pse.xpath('.//*/img[@class="gig_poster lazy loaded"]/@src')
+ try:
+ event = get_date(pse, event)
+ except Exception as e:
+ print("date issue: ", e)
+ try:
+ event = get_details(pse, event)
+ except Exception as e:
+ print("details issue: ", e)
+ try:
+ event["date_time"] = datetime.strptime(" ".join(event["date"]) + " " + event["details"]["Doors Open"], DATETIME_FORMAT)
+ except Exception as e:
+ print("Using alt date format 2: ", e)
+ try:
+ event["date_time"] = datetime.strptime(" ".join(event["date"]) + " " + event["details"]["Doors Open"], DATETIME_FORMAT_2)
+ ppr(event)
+ except Exception as e:
+ print("Using alt date format 3: ", e)
+ print(event['date'])
+ event["date_time"] = datetime.strptime(" ".join(event["date"]), DATETIME_FORMAT_3)
+ return event
+
+def get_date(pse, event):
+ month = pse.xpath('.//*/div[@class="date_container"]/div/div[@class="month"]/text()')[0].replace('\t', '').replace('\n', '')
+ day = pse.xpath('.//*/div[@class="date_container"]/div/div[@class="day"]/text()')[0].replace('\t', '').replace('\n', '')
+ year = pse.xpath('.//*/div[@class="date_container"]/div/div[@class="year"]/text()')[0].replace('\t', '').replace('\n', '')
+ event["date"] = [month, day, year]
+ return event
+
+def get_details(pse, event):
+ try:
+ details = pse.xpath('.//*/div[@class="show_details text-center"]/div/div/h6/text()')
+ info = pse.xpath('.//*/div[@class="show_details text-center"]/div/div/h2/text()')
+ di = zip(details, info)
+ details = {}
+ for d,i in di:
+ details[d] = i
+ event["details"] = details
+ return event
+ except Exception as e:
+ print("details issue: ", e)
+
+for show in shows:
+ br.get(show)
+ sleep(2)
+ try:
+ pse = html.fromstring(br.page_source)
+ except Exception as e:
+ print(show)
+ pass
+ try:
+ event = get_info(pse)
+ except Exception as e:
+ print("get_info error: ", e)
+ try:
+ event["link"] = show
+ if event["venue"] in ["Palace Theater", "Turf Club", "The Fitzgerald Theater", "Amsterdam Bar & Hall"]:
+ venue, created = Organization.objects.get_or_create(name=event["venue"], is_venue=True, city="St. Paul")
+ else:
+ venue, created = Organization.objects.get_or_create(name=event["venue"], is_venue=True, city="Minneapolis")
+ except Exception as e:
+ print("Venue creation error: ", e, "\n", event, "\n", event["venue"])
+ try:
+ event['dateStamp'] = event['date_time']
+ event['scraper'] = scraper
+ new_event, created = digitools.createDetailedEvent(event, "Mu", venue)
+ scraper.items+=1
+ except Exception as e:
+ print("event creation error: ", e, "\n\n", event, "\n\n", created)
+ quit()
+
+ppr(events)
+br.close()
+
+digitools.updateScraper(scraper, item_count_start)
+
+# br.find_element_by_class_name('fc-btn_allCalendars-button').click()
diff --git a/event_scrapers/Working/venues/GinkgoCoffee.stp.py b/event_scrapers/Working/venues/GinkgoCoffee.stp.py
new file mode 100644
index 0000000..3750377
--- /dev/null
+++ b/event_scrapers/Working/venues/GinkgoCoffee.stp.py
@@ -0,0 +1,68 @@
+import os, sys
+from datetime import datetime
+from dateutil import relativedelta
+
+import django
+sys.path.append('../../../')
+os.environ['DJANGO_SETTINGS_MODULE'] = 'ds_events.settings'
+django.setup()
+
+from time import sleep
+from pprint import pprint as ppr
+import pytz
+
+from events.models import Organization, Scraper
+import events.digitools as digitools
+
+venue, created = Organization.objects.get_or_create(
+ name="Ginkgo Coffee",
+ city="Saint Paul",
+ website="https://ginkgocoffee.com/events/",
+ is_venue = True
+ )
+
+scraper,item_count_start = digitools.getScraper(venue)
+
+event_type = ""
+
+# Time Signatures
+tz = pytz.timezone("US/Central")
+DATETIME_FORMAT_2 = '%b %d %Y %I:%M %p'
+DATETIME_FORMAT = '%B %d @ %I:%M %p %Y'
+
+def get_events(ps, event_type):
+ contents = ps.xpath('.//*/article')
+ for c in contents:
+ try:
+ event = {}
+ dateTime = c.xpath('.//*/span[@class="tribe-event-date-start"]/text()')[0]
+ month = c.xpath('.//*/span[@class="tribe-event-date-start"]/text()')[0].split(' ')[0]
+ year = datetime.now().year
+ if month == "January":
+ year = int(year) + 1
+ event['scraper'] = scraper
+ event['calendar'] = scraper.calendar
+ event['title'] = c.xpath('.//*/h3/a/text()')[0].replace("\n", "").replace("\t", "")
+ event['date'] = " ".join([ dateTime, str(year)])
+ event['dateStamp'] = datetime.strptime(event['date'], DATETIME_FORMAT)
+ event['link'] = c.xpath('.//*/h3/a/@href')[0]
+ digitools.createBasicEvent(event, event_type, venue)
+ except Exception as e:
+ print(e)
+ ppr(event)
+ print("\n\n+++\n\n")
+
+if len(sys.argv) >= 2:
+ arg1 = sys.argv[1]
+ br = digitools.getBrowser(arg1)
+else:
+ print("No run_env")
+ quit()
+
+ps = digitools.getSource(br, venue.website)
+get_events(ps, "Mu")
+sleep(3)
+
+br.close()
+
+digitools.updateScraper(scraper, item_count_start)
\ No newline at end of file
diff --git a/event_scrapers/Working/venues/GreenRoom.Mpls.py b/event_scrapers/Working/venues/GreenRoom.Mpls.py
new file mode 100644
index 0000000..fd89394
--- /dev/null
+++ b/event_scrapers/Working/venues/GreenRoom.Mpls.py
@@ -0,0 +1,71 @@
+import os, sys
+from datetime import datetime
+from dateutil import relativedelta
+
+import django
+sys.path.append('../../../')
+os.environ['DJANGO_SETTINGS_MODULE'] = 'ds_events.settings'
+django.setup()
+
+from time import sleep
+from pprint import pprint as ppr
+import pytz
+
+from events.models import Organization, Scraper
+import events.digitools as digitools
+
+
+venue, created = Organization.objects.get_or_create(
+ name="Green Room",
+ city="Minneapolis",
+ website="https://www.greenroommn.com/events",
+ is_venue = True
+ )
+
+scraper,item_count_start = digitools.getScraper(venue)
+
+event_type = "Mu"
+
+# Time Signatures
+tz = pytz.timezone("US/Central")
+DATETIME_FORMAT = '%a %b %d %Y %I:%M %p'
+DATETIME_FORMAT_2 = '%A, %B %d @ %I%p %Y'
+
+def get_events(ps, event_type):
+ contents = ps.xpath('.//*/div[@class="vp-event-card vp-venue-greenroom vp-col"]')
+ for c in contents:
+ try:
+ event = {}
+ time = c.xpath('.//*/span[@class="vp-time"]/text()')[0].strip()
+ date = c.xpath('.//*/span[@class="vp-date"]/text()')[0].strip()
+ month = date.split(" ")[1]
+ year = datetime.now().year
+ # if month == "Jan":
+ # year = int(year) + 1
+ event['scraper'] = scraper
+ event['calendar'] = scraper.calendar
+ event['title'] = c.xpath('.//*/div[@class="vp-event-name"]/text()')[0]
+ event['datetime'] = date + " " + str(year) + " " + time
+ event['dateStamp'] = datetime.strptime(event['datetime'], DATETIME_FORMAT)
+ event['link'] = venue.website + c.xpath('.//a[@class="vp-event-link"]/@href')[0]
+ digitools.createBasicEvent(event, event_type, venue)
+ scraper.items+=1
+ except Exception as e:
+ print(e)
+ ppr(event)
+ print("\n+++\n")
+
+if len(sys.argv) >= 2:
+ arg1 = sys.argv[1]
+ br = digitools.getBrowser(arg1)
+else:
+ print("No run_env")
+ quit()
+
+ps = digitools.getSource(br, venue.website)
+get_events(ps, event_type)
+sleep(3)
+
+br.close()
+
+digitools.updateScraper(scraper, item_count_start)
\ No newline at end of file
diff --git a/event_scrapers/Working/venues/HookLadderScrape.py b/event_scrapers/Working/venues/HookLadderScrape.py
new file mode 100644
index 0000000..e99686d
--- /dev/null
+++ b/event_scrapers/Working/venues/HookLadderScrape.py
@@ -0,0 +1,96 @@
+import os, sys
+from datetime import datetime
+from dateutil import relativedelta
+
+import django
+sys.path.append('../../../')
+os.environ['DJANGO_SETTINGS_MODULE'] = 'ds_events.settings'
+django.setup()
+
+from time import sleep
+from pprint import pprint as ppr
+import pytz
+
+from events.models import Organization, Scraper, Event
+import events.digitools as digitools
+
+
+from lxml import html
+
+count = 0
+
+venue, created = Organization.objects.get_or_create(
+ name="Hook & Ladder",
+ city="Minneapolis",
+ website="https://thehookmpls.com",
+ is_venue=True,
+ )
+
+scraper,item_count_start = digitools.getScraper(venue)
+ppr(scraper)
+
+tz = pytz.timezone("US/Central")
+DATETIME_FORMAT = '%a, %b %d, %Y @ %I:%M %p'
+
+# Set initial variables for City, etc
+calendar_url = [
+ "https://thehookmpls.com/events/list/page/1",
+ "https://thehookmpls.com/events/list/page/2",
+ "https://thehookmpls.com/events/list/page/3"
+]
+
+if len(sys.argv) >= 2:
+ arg1 = sys.argv[1]
+ br = digitools.getBrowser(arg1)
+else:
+ print("No run_env")
+ quit()
+
+
+def get_listings(pse, events):
+ nevents = pse.xpath('.//*/article')
+ for event in nevents:
+ e = {}
+ e['datetime'] = event.xpath('.//*/span[@class="tribe-event-date-start"]/text()')[0]
+ e['show_title'] = event.xpath('.//*/header/h2/a/@title')[0]
+ e['link'] = event.xpath('.//*/header/h2/a/@href')[0]
+ try:
+ e['subtitle'] = event.xpath('.//*/header/div[@class="eventSubHead"]/text()')[0]
+ except:
+ continue
+ try:
+ e['price'] = event.xpath('.//*/span[@class="tribe-events-c-small-cta__price"]/strong/text()')[0].replace("Tickets ", "")
+ except:
+ e['price'] = "See Link"
+ e['image'] = event.xpath('.//*/img/@data-src')[0]
+ e["date_time"] = datetime.strptime(e['datetime'], DATETIME_FORMAT)
+ e['scraper'] = scraper
+ e['calendar'] = scraper.calendar
+ events.append(e)
+
+events = []
+
+for cal in calendar_url:
+ br.get(cal)
+ sleep(3)
+ pse = html.fromstring(br.page_source)
+ get_listings(pse, events)
+
+for event in events:
+ try:
+ new_event = Event.objects.update_or_create(
+ calendar = event['calendar'],
+ scraper = event['scraper'],
+ event_type = 'Mu',
+ show_title = event["show_title"],
+ show_link = event["link"],
+ show_date = event["date_time"],
+ show_day = event["date_time"],
+ guests = " ".join(event["subtitle"]),
+ venue = venue
+ )
+ except Exception as e:
+ print("oops ", e, "\n\n", "Scraper:", scraper)
+
+br.close()
+digitools.updateScraper(scraper, item_count_start)
diff --git a/event_scrapers/Working/venues/MagersQuinn.py b/event_scrapers/Working/venues/MagersQuinn.py
new file mode 100644
index 0000000..85023bf
--- /dev/null
+++ b/event_scrapers/Working/venues/MagersQuinn.py
@@ -0,0 +1,70 @@
+import os, sys
+from datetime import datetime
+from dateutil import relativedelta
+
+import django
+sys.path.append('../../../')
+os.environ['DJANGO_SETTINGS_MODULE'] = 'ds_events.settings'
+django.setup()
+
+from time import sleep
+from pprint import pprint as ppr
+import pytz
+
+from events.models import Organization, Scraper
+import events.digitools as digitools
+
+venue, created = Organization.objects.get_or_create(
+ name="Magers & Quinn",
+ city="Minneapolis",
+ website="https://www.magersandquinn.com/events",
+ is_venue=False
+ )
+
+scraper,item_count_start = digitools.getScraper(venue)
+
+DATETIME_FORMAT = '%A, %B %d , %Y %I:%M %p'
+DATETIME_FORMAT_2 = '%A, %B %d @ %I%p %Y'
+
+def get_events(ps, event_type):
+ contents = ps.xpath('.//*/div[@class="day has-event"]')
+ for c in contents:
+ try:
+ event = {}
+ day = c.xpath('.//*/div[@class="dd"]/text()')[0]
+ month = c.xpath('.//*/div[@class="month"]/text()')[0]
+ year = c.xpath('.//*/div[@class="year"]/text()')[0]
+ event['scraper'] = scraper
+ event['calendar'] = scraper.calendar
+ event['title'] = c.xpath('.//*/h3/text()')[0]
+ event['date'] = [month, day, year, c.xpath('.//*/p[@class="time"]/text()')[0]]
+ event['date'] = " ".join(event['date'])
+ event['dateStamp'] =datetime.strptime(event['date'], DATETIME_FORMAT)
+ event['link'] = "https://www.magersandquinn.com" + c.xpath('.//a[@class="event in-store"]/@href')[0]
+ digitools.createBasicEvent(event, "Ed", venue)
+ scraper.items+=1
+ except Exception as e:
+ event['link'] = "https://www.magersandquinn.com" + c.xpath('.//a[@class="event off-site"]/@href')[0]
+ print(e)
+ ppr(event)
+ digitools.createBasicEvent(event, "Ed", venue)
+ print("\n\n+++\n\n")
+
+
+links = digitools.createBasicURL("https://www.magersandquinn.com/events/")
+
+if len(sys.argv) >= 2:
+ arg1 = sys.argv[1]
+ br = digitools.getBrowser(arg1)
+else:
+ print("No run_env")
+ quit()
+
+for link in links:
+ ps = digitools.getSource(br, link)
+ get_events(ps, "Ed")
+ sleep(3)
+# ppr(events)
+br.close()
+
+digitools.updateScraper(scraper, item_count_start)
diff --git a/event_scrapers/Working/venues/MplsVFW.py b/event_scrapers/Working/venues/MplsVFW.py
new file mode 100644
index 0000000..96fcef2
--- /dev/null
+++ b/event_scrapers/Working/venues/MplsVFW.py
@@ -0,0 +1,80 @@
+import os, sys
+from datetime import datetime
+from dateutil import relativedelta
+
+import django
+sys.path.append('../../../')
+os.environ['DJANGO_SETTINGS_MODULE'] = 'ds_events.settings'
+django.setup()
+
+from time import sleep
+from pprint import pprint as ppr
+import pytz
+
+from events.models import Organization, Scraper, Event
+import events.digitools as digitools
+
+
+from selenium.webdriver.common.by import By
+from lxml import html
+
+venue, created = Organization.objects.get_or_create(
+ name="Uptown VFW",
+ city="Minneapolis",
+ website="https://noboolpresents.com/venues/uptown-vfw/",
+ is_venue = True
+ )
+
+scraper,item_count_start = digitools.getScraper(venue)
+
+tz = pytz.timezone("US/Central")
+
+DATETIME_FORMAT = '%a %B %d @ %I:%M %p %Y'
+DATETIME_FORMAT_2 = '%b %d %I:%M%p %Y'
+DATETIME_FORMAT_3 = '%b %d %Y'
+# Set initial variables for City, etc
+calendar_url = 'https://noboolpresents.com/venues/uptown-vfw/'
+current_year = str(datetime.now().year)
+
+if len(sys.argv) >= 2:
+ arg1 = sys.argv[1]
+ br = digitools.getBrowser(arg1)
+else:
+ print("No run_env")
+ quit()
+
+br.get(calendar_url)
+sleep(30)
+
+def getEvents(br):
+ ps = html.fromstring(br.page_source)
+ events = ps.xpath('.//*/article')
+ for event in events:
+ deets = {}
+ dateTime = event.xpath('.//*/span[@class="tribe-event-date-start"]/text()')[0].replace("•", "").strip() + " " + current_year
+ title = event.xpath('.//*/h2[@class="alt-font"]/a/text()')[0].replace("\n", "").replace("\t", "")
+ link = event.xpath('.//*/h2[@class="alt-font"]/a/@href')[0]
+ deets["tickets"] = event.xpath('.//*/span[@class="tribe-events-c-small-cta__price"]/strong/text()')[0]
+ try:
+ new_event = Event.objects.update_or_create(
+ calendar = scraper.calendar,
+ scraper = scraper,
+ event_type = 'Mu',
+ show_title = title,
+ show_link = link,
+ show_date = datetime.strptime(dateTime, DATETIME_FORMAT),
+ show_day = datetime.strptime(dateTime, DATETIME_FORMAT).date(),
+ more_details = deets["tickets"],
+ venue = venue
+ )
+ scraper.items+=1
+ except Exception as e:
+ print("oops", e)
+
+getEvents(br)
+br.find_element(By.XPATH, './/*/li[@class="tribe-events-c-nav__list-item tribe-events-c-nav__list-item--next"]/a').click()
+sleep(5)
+getEvents(br)
+br.close()
+
+digitools.updateScraper(scraper, item_count_start)
diff --git a/event_scrapers/Working/venues/ParkwayTheater.py b/event_scrapers/Working/venues/ParkwayTheater.py
new file mode 100644
index 0000000..a45c0dc
--- /dev/null
+++ b/event_scrapers/Working/venues/ParkwayTheater.py
@@ -0,0 +1,106 @@
+import os, sys
+from datetime import datetime
+from dateutil import relativedelta
+
+import django
+sys.path.append('../../../')
+os.environ['DJANGO_SETTINGS_MODULE'] = 'ds_events.settings'
+django.setup()
+
+from time import sleep
+from pprint import pprint as ppr
+import pytz
+
+from events.models import Organization, Scraper, Event as DSEvent
+import events.digitools as digitools
+
+
+try:
+ venue, created = Organization.objects.get_or_create(
+ name="Parkway Theater",
+ city="Minneapolis",
+ website="https://theparkwaytheater.com",
+ is_venue = True
+ )
+except Exception as e:
+ venue = Organization.objects.get(name="Parkway Theater")
+
+scraper,item_count_start = digitools.getScraper(venue)
+
+tz = pytz.timezone("US/Central")
+
+DATETIME_FORMAT = '%b %d, %Y %I:%M %p'
+
+def get_events(ps, event_type):
+ contents = ps.xpath('.//*/div[@class="summary-content sqs-gallery-meta-container"]')
+ img_etc = ps.xpath('.//*/div[@class="summary-thumbnail-outer-container"]/a/div/img/@src')
+ ps.xpath('.//*/span[@class="event-time-12hr"]/text()')
+ for c,i in zip(contents,img_etc):
+ try:
+ event = {}
+ event['calendar'] = scraper.calendar
+ event['title'] = c.xpath('.//*/a[@class="summary-title-link"]/text()')[0]
+ event['link'] = "https://theparkwaytheater.com" + c.xpath('.//*/a[@class="summary-title-link"]/@href')[0]
+ event['date'] = c.xpath('.//div/div/time/text()')[0] + " " + c.xpath('.//*/span[@class="event-time-12hr"]/text()')[0].split("–")[0].strip()
+ event['dateStamp'] = datetime.strptime(event['date'], DATETIME_FORMAT)
+ event['desc'] = c.xpath('.//*/p/text()')[0]
+ event['img_link'] = i
+ event['details'] = {
+ 'description': event['desc'],
+ 'img_link': event['img_link'],
+ }
+
+ try:
+ new_event = DSEvent.objects.update_or_create(
+ calendar = scraper.calendar,
+ scraper = scraper,
+ event_type = event_type,
+ show_title = event['title'],
+ show_link = event['link'],
+ show_date = datetime.strptime(event['date'], DATETIME_FORMAT),
+ show_day = datetime.strptime(event['date'], DATETIME_FORMAT),
+ more_details = event["details"],
+ venue = venue
+ )
+ scraper.items+=1
+ except Exception as e:
+ try:
+ event['date'] = c.xpath('.//div/div/time/text()')[0].split("–")[0] + " " + c.xpath('.//*/span[@class="event-time-12hr"]/text()')[0].split("–")[0].strip()
+ event['dateStamp'] = datetime.strptime(event['date'], DATETIME_FORMAT)
+ new_event = DSEvent.objects.update_or_create(
+ calendar = scraper.calendar,
+ scraper = scraper,
+ event_type = event_type,
+ show_title = event['title'],
+ show_link = event['link'],
+ show_date = datetime.strptime(event['date'], DATETIME_FORMAT),
+ show_day = datetime.strptime(event['date'], DATETIME_FORMAT),
+ more_details = event["details"],
+ venue = venue
+ )
+ scraper.items+=1
+ except Exception as e:
+ print(e)
+ print("\n\n+++\n\n")
+ except Exception as e:
+ continue
+
+if len(sys.argv) >= 2:
+ arg1 = sys.argv[1]
+ br = digitools.getBrowser(arg1)
+else:
+ print("No run_env")
+ quit()
+
+calendar_url = 'https://theparkwaytheater.com/live-events'
+ps = digitools.getSource(br, calendar_url)
+get_events(ps, "Mu")
+
+calendar_url = "https://theparkwaytheater.com/movies"
+ps = digitools.getSource(br, calendar_url)
+get_events(ps, "Th")
+
+# ppr(events)
+br.close()
+
+digitools.updateScraper(scraper, item_count_start)
\ No newline at end of file
diff --git a/event_scrapers/Working/venues/SPCO.stp.py b/event_scrapers/Working/venues/SPCO.stp.py
new file mode 100644
index 0000000..6b5732f
--- /dev/null
+++ b/event_scrapers/Working/venues/SPCO.stp.py
@@ -0,0 +1,98 @@
+import os, sys
+from datetime import datetime
+from dateutil import relativedelta
+
+import django
+sys.path.append('../../../')
+os.environ['DJANGO_SETTINGS_MODULE'] = 'ds_events.settings'
+django.setup()
+
+from time import sleep
+from pprint import pprint as ppr
+import pytz
+
+from events.models import Organization, Scraper
+
+import events.digitools as digitools
+
+venue, created = Organization.objects.get_or_create(
+ name="St Paul Chamber Orchestra",
+ city="St Paul",
+ website="https://thespco.org",
+ is_venue = False
+ )
+
+scraper,item_count_start = digitools.getScraper(venue)
+
+# Time Signatures
+tz = pytz.timezone("US/Central")
+DATETIME_FORMAT = '%A, %B %d, %Y – %I:%M %p'
+
+def get_events(ps, event_type):
+ contents = ps.xpath('.//*/div[@class="event-title"]/a/@href')
+ for c in set(contents):
+ try:
+ link = 'https://content.thespco.org' + c
+ ps = digitools.getSource(br, link)
+ ntitle = ps.xpath('.//*/article/h1/text()')
+ subtitle = ps.xpath('.//*/article/h1/em/text()')
+ event = {}
+ event['scraper'] = scraper
+ event['calendar'] = scraper.calendar
+ if len(subtitle) == 1:
+ if len(ntitle) == 2:
+ title = ntitle[0] + subtitle[0] + ntitle[1]
+ elif ntitle[0].startswith(" "):
+ title = subtitle[0] + ntitle[0]
+ else:
+ title = ntitle[0] + subtitle[0]
+ else:
+ title = ntitle[0]
+
+ events = ps.xpath('.//*/div[@class="day"]')
+ for e in events:
+ new_venue = e.xpath('.//*/strong[@class="venue"]/text()')[0].strip()
+ location = e.xpath('.//*/span[@class="location"]/text()')[0].strip()
+ if 'Minneapolis' in location:
+ location = 'Minneapolis'
+ elif 'St. Paul' in location:
+ location = 'St. Paul'
+ else:
+ location = location
+
+ venue, created = Organization.objects.get_or_create(
+ name=new_venue,
+ city=location,
+ is_venue = True
+ )
+
+ dateTime = e.xpath('.//*/h3[@class="date"]/text()')[0].replace("\n", "").replace("\t", "").strip()
+ event['dateStamp'] = datetime.strptime(dateTime, DATETIME_FORMAT)
+ event['venue'] = venue
+ event['location'] = location
+ event['title'] = "SPCO: " + title
+ event['link'] = link
+ event_type = "Mu"
+ digitools.createBasicEvent(event, event_type, venue)
+ scraper.items+=1
+ except Exception as e:
+ print("ERROR: ", e)
+ print("\n\n+++\n\n")
+
+if len(sys.argv) >= 2:
+ arg1 = sys.argv[1]
+ br = digitools.getBrowser(arg1)
+else:
+ print("No run_env")
+ quit()
+
+# Get Event Page Link(s)
+links = digitools.createURLNoZero("https://content.thespco.org/events/calendar/")
+
+for link in links:
+ ps = digitools.getSource(br, link)
+ get_events(ps, "Mu")
+ sleep(3)
+
+br.close()
+digitools.updateScraper(scraper, item_count_start)
diff --git a/event_scrapers/Working/venues/WhiteSquirrelScrape.py b/event_scrapers/Working/venues/WhiteSquirrelScrape.py
new file mode 100644
index 0000000..34d49fe
--- /dev/null
+++ b/event_scrapers/Working/venues/WhiteSquirrelScrape.py
@@ -0,0 +1,71 @@
+import os, sys
+from datetime import datetime
+from dateutil import relativedelta
+
+import django
+sys.path.append('../../../')
+os.environ['DJANGO_SETTINGS_MODULE'] = 'ds_events.settings'
+django.setup()
+
+from time import sleep
+from pprint import pprint as ppr
+import pytz
+
+from events.models import Organization, Scraper
+import events.digitools as digitools
+
+tz = pytz.timezone("US/Central")
+DATETIME_FORMAT = '%Y-%m-%d %I:%M %p'
+
+venue, created = Organization.objects.get_or_create(
+ name="White Squirrel",
+ city="St. Paul",
+ website="https://whitesquirrelbar.com",
+ is_venue = True
+ )
+
+scraper,item_count_start = digitools.getScraper(venue)
+
+
+# Set initial variables for City, etc
+calendar_url = [
+ 'https://whitesquirrelbar.com/calendar/list/page/1/',
+ 'https://whitesquirrelbar.com/calendar/list/page/2/',
+ 'https://whitesquirrelbar.com/calendar/list/page/3/'
+]
+
+if len(sys.argv) >= 2:
+ arg1 = sys.argv[1]
+ br = digitools.getBrowser(arg1)
+else:
+ print("No run_env")
+ quit()
+
+def get_listings(pse, events):
+ listings = pse.xpath('.//*/div[@class="tribe-common-g-row tribe-events-calendar-list__event-row"]')
+ for l in listings:
+ event = {}
+ event['scraper'] = scraper
+ event['calendar'] = scraper.calendar
+ try:
+ event["image"] = l.xpath('.//*/img/@src')[0]
+ except:
+ event["image"] = "none"
+ event["date"] = l.xpath('.//time/@datetime')[0]
+ event["time"] = l.xpath('.//*/span[@class="tribe-event-date-start"]/text()')[0].split("@")[1]
+ event["title"] = l.xpath('.//*/h3/a/text()')[0].replace("\t", "").replace("\n", "")
+ event["link"] = l.xpath('.//*/h3/a/@href')[0]
+ event['datetime'] = event['date'] + " " + event['time']
+ event["dateStamp"] = datetime.strptime(event['datetime'] , DATETIME_FORMAT)
+ events.append(event)
+ digitools.createBasicEvent(event, "Mu", venue)
+ scraper.items+=1
+
+events = []
+
+for cal in calendar_url:
+ ps = digitools.getSource(br, cal)
+ get_listings(ps, events)
+
+br.close()
+digitools.updateScraper(scraper, item_count_start)
diff --git a/event_scrapers/Working/venues/cedar.mpls.py b/event_scrapers/Working/venues/cedar.mpls.py
new file mode 100644
index 0000000..28d1cee
--- /dev/null
+++ b/event_scrapers/Working/venues/cedar.mpls.py
@@ -0,0 +1,74 @@
+import os, sys
+from datetime import datetime
+from dateutil import relativedelta
+
+import django
+sys.path.append('../../../')
+os.environ['DJANGO_SETTINGS_MODULE'] = 'ds_events.settings'
+django.setup()
+
+from time import sleep
+from pprint import pprint as ppr
+import pytz
+
+from events.models import Organization, Scraper
+import events.digitools as digitools
+
+venue, created = Organization.objects.get_or_create(
+ name="Cedar Cultural Center",
+ city="Minneapolis",
+ website="https://www.thecedar.org",
+ is_venue=True
+ )
+
+scraper,item_count_start = digitools.getScraper(venue)
+
+tz = pytz.timezone("US/Central")
+
+DATETIME_FORMAT = '%A, %B %d, %Y %I:%M %p'
+DATETIME_FORMAT_2 = '%A, %B %d @ %I%p %Y'
+DATETIME_FORMAT_3 = '%A, %B %d at %I:%M%p %Y'
+DATETIME_FORMAT_4 = '%A, %B %d at %I%p %Y'
+DATETIME_FORMAT_5 = '%A, %B %d @%I%p %Y'
+
+def get_events(ps):
+ links = ps.xpath('.//*/div[@class="summary-title"]/a/@href')
+ for l in links:
+ if "cedar-news-blog" in l:
+ continue
+ pse = digitools.getSource(br, "https://www.thecedar.org" + l)
+ event = {}
+ event['scraper'] = scraper
+ event['calendar'] = scraper.calendar
+ event['link'] = "https://www.thecedar.org" + l
+ try:
+ time = pse.xpath('.//*/time[@class="event-time-localized-start"]/text()')[0]
+ date = pse.xpath('.//*/time[@class="event-date"]/text()')[0]
+ event['title'] = pse.xpath('.//*/h1[@class="eventitem-title"]/text()')[0]
+ except:
+ try:
+ time = pse.xpath('.//*/time[@class="event-time-localized"]/text()')[0]
+ date = pse.xpath('.//*/time[@class="event-date"]/text()')[0]
+ event['title'] = pse.xpath('.//*/h1[@class="eventitem-title"]/text()')[0]
+ except Exception as e:
+ print(e)
+ print("failed event: ", event)
+ dateStamp = date + " " + time
+ event['dateStamp'] = datetime.strptime(dateStamp, DATETIME_FORMAT)
+ digitools.createBasicEvent(event, "Mu", venue)
+ scraper.items+=1
+
+if len(sys.argv) >= 2:
+ arg1 = sys.argv[1]
+ br = digitools.getBrowser(arg1)
+else:
+ print("No run_env")
+ quit()
+
+
+calendar_url = 'https://www.thecedar.org/listing'
+ps = digitools.getSource(br, calendar_url)
+get_events(ps)
+br.close()
+
+digitools.updateScraper(scraper, item_count_start)
\ No newline at end of file
diff --git a/event_scrapers/Working/venues/club331Scrape.py b/event_scrapers/Working/venues/club331Scrape.py
new file mode 100644
index 0000000..47e1228
--- /dev/null
+++ b/event_scrapers/Working/venues/club331Scrape.py
@@ -0,0 +1,105 @@
+import os, sys
+from datetime import datetime
+from dateutil import relativedelta
+
+import django
+sys.path.append('../../../')
+os.environ['DJANGO_SETTINGS_MODULE'] = 'ds_events.settings'
+django.setup()
+
+from time import sleep
+from pprint import pprint as ppr
+import pytz
+
+from selenium.webdriver.common.by import By
+from lxml import html
+
+from events.models import Organization, Scraper, Event
+import events.digitools as digitools
+
+venue, created = Organization.objects.get_or_create(
+ name="Club 331",
+ city="Minneapolis",
+ website="https://331club.com",
+ is_venue=True,
+ )
+
+scraper,item_count_start = digitools.getScraper(venue)
+
+tz = pytz.timezone("US/Central")
+
+DATETIME_FORMAT = '%b %d %I%p %Y'
+DATETIME_FORMAT_2 = '%b %d %I:%M%p %Y'
+DATETIME_FORMAT_3 = '%b %d %Y'
+# Set initial variables for City, etc
+calendar_url = 'https://331club.com/#calendar'
+current_year = str(datetime.now().year)
+
+if len(sys.argv) >= 2:
+ arg1 = sys.argv[1]
+ br = digitools.getBrowser(arg1)
+else:
+ print("No run_env")
+ quit()
+
+br.get(calendar_url)
+sleep(3)
+
+br.find_element(By.CLASS_NAME, 'more_events').click()
+sleep(2)
+ps = html.fromstring(br.page_source)
+sleep(3)
+
+dates = ps.xpath('.//*/div[@class="event"]')
+dates = dates + ps.xpath('.//*/div[@class="event hidden"]')
+
+def process_times(times):
+ # print("Times: ", times)
+ time = []
+ for t in times:
+ t = t.replace("\n", "").replace("TBA", "")
+ if len(t) > 0 and t.endswith("pm"):
+ if "-" in t:
+ t = t.split("-")[0] + "pm"
+ time.append(t)
+ return time
+
+events = []
+
+for d in dates:
+ event_date = d.xpath('.//div[@class="event-date"]/span/text()')[:2]
+ cols = d.xpath('.//div[@class="column"]')
+ for c in cols:
+ bands = c.xpath('.//p/a/text()')
+ links = c.xpath('.//p/a/@href')
+ time = process_times(c.xpath('.//p/text()'))
+ event = {}
+ event["datetime"] = event_date + time + [current_year]
+ try:
+ event["date_time"] = datetime.strptime(" ".join(event["datetime"]), DATETIME_FORMAT)
+ except:
+ try:
+ event["date_time"] = datetime.strptime(" ".join(event["datetime"]), DATETIME_FORMAT_2)
+ except:
+ try:
+ event["date_time"] = datetime.strptime(" ".join(event["datetime"]), DATETIME_FORMAT_3)
+ except:
+ event["date_time"] = "Invalid"
+ event["bands"] = (", ").join(bands)
+ if len(bands) > 0:
+ event['scraper'] = scraper
+ event['calendar'] = scraper.calendar
+ event['title'] = event["bands"]
+ event['date'] = event["date_time"]
+ event['dateStamp'] = event["date_time"]
+ event['link'] = "https://331club.com/#calendar"
+
+ try:
+ digitools.createBasicEvent(event, "Mu", venue)
+ except Exception as e:
+ print('oops', e)
+ events.append(event)
+
+br.close()
+
+digitools.updateScraper(scraper, item_count_start)
\ No newline at end of file
diff --git a/event_scrapers/Working/workshop/ComedyUnderground.py b/event_scrapers/Working/workshop/ComedyUnderground.py
new file mode 100644
index 0000000..69bb340
--- /dev/null
+++ b/event_scrapers/Working/workshop/ComedyUnderground.py
@@ -0,0 +1,64 @@
+import os, sys
+from datetime import datetime
+from dateutil import relativedelta
+
+import django
+sys.path.append('../')
+os.environ['DJANGO_SETTINGS_MODULE'] = 'ds_events.settings'
+django.setup()
+
+from time import sleep
+from pprint import pprint as ppr
+
+from events.models import Event as DSEvent, Organization
+from digitools import getBrowser, createDashURL, createBasicEvent, getSource
+
+venue, created = Organization.objects.get_or_create(
+ name="Comedy Corner",
+ city="Minneapolis",
+ website="https://comedycornerunderground.com/calendar",
+ )
+
+calendar_url = "https://comedycornerunderground.com/calendar"
+
+DATETIME_FORMAT = '%m %d %I%p %Y'
+
+def get_events(ps, link):
+ contents = ps.xpath('.//*/td')
+ for c in contents:
+ try:
+ day_num = c.xpath('.//*/div[@class="marker-daynum"]/text()')[0]
+ events = c.xpath('.//*/li')
+ # print(events)
+ for e in events:
+ event = {}
+ print(link)
+ month = link.split("month=")[1].split("-")[0]
+ year = link.split("month=")[1].split("-")[1]
+ event['title'] = e.xpath('.//*/span[@class="item-title"]/text()')[0]
+ event['time'] = e.xpath('.//*/span[@class="item-time item-time--12hr"]/text()')[0].replace("\xa0", "")
+ event['link'] = "https://comedycornerunderground.com" + e.xpath('.//a/@href')[0]
+ event['date'] = str(day_num) + ' ' + event['time'] + 'm'
+ dateStamp = month + ' ' + event['date'] + ' ' + year
+ event['dateStamp'] = datetime.strptime(dateStamp, DATETIME_FORMAT)
+ createBasicEvent(event, 'Co')
+ print('\n\n++\n\n')
+ except Exception as e:
+ continue
+
+if len(sys.argv) >= 2:
+ arg1 = sys.argv[1]
+ br = getBrowser(arg1)
+else:
+ print("No run_env")
+ quit()
+
+links = createDashURL("https://comedycornerunderground.com/calendar?view=calendar&month=")
+
+for link in links:
+ ps = getSource(br, link)
+ get_events(ps, link)
+ sleep(5)
+
+# ppr(events)
+br.close()
\ No newline at end of file
diff --git a/event_scrapers/Working/workshop/cabooze.mn.py b/event_scrapers/Working/workshop/cabooze.mn.py
new file mode 100644
index 0000000..e9d9146
--- /dev/null
+++ b/event_scrapers/Working/workshop/cabooze.mn.py
@@ -0,0 +1,74 @@
+import os, sys
+from datetime import datetime
+from dateutil import relativedelta
+
+import django
+sys.path.append('../../../')
+os.environ['DJANGO_SETTINGS_MODULE'] = 'ds_events.settings'
+django.setup()
+
+from time import sleep
+from pprint import pprint as ppr
+import pytz
+
+from events.models import Organization, Scraper
+import events.digitools as digitools
+
+venue, created = Organization.objects.get_or_create(
+ name="Cabooze",
+ city="Minneapolis",
+ website="https://www.cabooze.com/#/events",
+ is_venue=True
+ )
+
+scraper,item_count_start = digitools.getScraper(venue)
+
+event_type = ""
+
+# Time Signatures
+tz = pytz.timezone("US/Central")
+DATETIME_FORMAT = '%b %d %I:%M %p %Y'
+DATETIME_FORMAT_2 = '%A, %B %d @ %I%p %Y'
+
+def get_events(ps, event_type):
+ print("Getting events ...")
+ contents = ps.xpath('.//*/div[@class="vp-event-row vp-widget-reset vp-venue-thecabooze"]')
+ ppr(contents)
+ for c in contents:
+ try:
+ event = {}
+ date = c.xpath('.//*/span[@class="vp-month-n-day"]/text()')[0]
+ print(date)
+ month = date.split(" ")[0]
+ time = c.xpath('.//*/span[@class="vp-time"]/text()')[0]
+ year = datetime.now().year
+ if month == "Jan":
+ year = int(year) + 1
+ event['calendar'] = scraper.calendar
+ event['title'] = c.xpath('.//*/div[@class="vp-event-name"]/text()')[0]
+ event['date'] = [date, time, str(year)]
+ event['date'] = " ".join(event['date'])
+ event['dateStamp'] = datetime.strptime(event['date'], DATETIME_FORMAT)
+ event['link'] = "https://www.cabooze.com/" + c.xpath('.//a[@class="vp-event-link"]/@href')[0]
+ print("Event Dict Created")
+ ppr(event)
+ digitools.createBasicEvent(event, event_type, venue)
+ scraper.items+=1
+ except Exception as e:
+ print(e)
+ ppr(event)
+ print("\n\n+++\n\n")
+
+if len(sys.argv) >= 2:
+ arg1 = sys.argv[1]
+ br = digitools.getBrowser(arg1)
+else:
+ print("No run_env")
+ quit()
+
+ps = digitools.getSource(br, venue.website)
+get_events(ps, "Mu")
+sleep(3)
+
+digitools.updateScraper(scraper, item_count_start)
+br.close()
\ No newline at end of file
diff --git a/event_scrapers/Working/workshop/dakota.mpls.py b/event_scrapers/Working/workshop/dakota.mpls.py
new file mode 100644
index 0000000..f276d99
--- /dev/null
+++ b/event_scrapers/Working/workshop/dakota.mpls.py
@@ -0,0 +1,82 @@
+import os, sys
+from datetime import datetime
+from dateutil import relativedelta
+
+import django
+sys.path.append('../../../')
+os.environ['DJANGO_SETTINGS_MODULE'] = 'ds_events.settings'
+django.setup()
+
+from time import sleep
+from pprint import pprint as ppr
+import pytz
+
+from events.models import Organization, Scraper
+import events.digitools as digitools
+
+count = 0
+
+venue, created = Organization.objects.get_or_create(
+ name="Dakota",
+ city="Minneapolis",
+ website="https://www.dakotacooks.com/events/",
+ is_venue=True
+ )
+
+scraper,item_count_start = digitools.getScraper(venue)
+
+event_type = ""
+
+# Time Signatures
+tz = pytz.timezone("US/Central")
+DATETIME_FORMAT = '%a %b %d, %Y • %I:%M%p'
+DATETIME_FORMAT_2 = '%a %b %d, %Y • %I%p'
+
+def get_events(ps, event_type):
+ links = ps.xpath('.//*/div[@class="wicked-event-title tooltipstered"]/a/@href')
+ links = set(links)
+ for l in links:
+ pse = getSource(br, l)
+ event = {}
+ event['scraper'] = scraper
+ event['calendar'] = scraper.calendar
+ event['link'] = l
+ try:
+ event['time'] = pse.xpath('.//*/span[@class="text-uppercase"]/text()')[0].strip()
+ event['dateStamp'] = datetime.strptime(event['time'], DATETIME_FORMAT)
+ event['title'] = pse.xpath('.//*/div[@class="sidebar-group"]/h1/text()')[0]
+ # event['detail-headers'] = pse.xpath('.//*/ul[@class="eo-event-meta"]/li/strong/text()')
+ # event['details'] = pse.xpath('.//*/ul[@class="eo-event-meta"]/li/text()')
+
+ except:
+ try:
+ event['title'] = pse.xpath('.//*/div[@class="sidebar-group"]/h1/text()')[0]
+ event['dateStamp'] = datetime.strptime(event['time'], DATETIME_FORMAT_2)
+ event['time'] = pse.xpath('.//*/span[@class="text-uppercase"]/text()')[0]
+ except Exception as e:
+ print(e)
+ print("failed event: ", event)
+ ppr(event)
+ try:
+ digitools.createBasicEvent(event, "Mu", venue)
+ scraper.items+=1
+ except Exception as e:
+ print(e)
+ print('failed to create: ', event)
+
+if len(sys.argv) >= 2:
+ arg1 = sys.argv[1]
+ br = digitools.getBrowser(arg1)
+else:
+ print("No run_env")
+ quit()
+
+
+ps = digitools.getSource(br, venue.website + '?wicked_month=04&wicked_year=2025&wicked_view=month')
+get_events(ps, "Mu")
+sleep(1)
+
+
+digitools.updateScraper(scraper, item_count_start)
+
+br.close()
\ No newline at end of file
diff --git a/event_scrapers/Working/workshop/icehouse.mpls.py b/event_scrapers/Working/workshop/icehouse.mpls.py
new file mode 100644
index 0000000..36143b5
--- /dev/null
+++ b/event_scrapers/Working/workshop/icehouse.mpls.py
@@ -0,0 +1,78 @@
+import os, sys
+from datetime import datetime
+from dateutil import relativedelta
+
+import django
+sys.path.append('../../../')
+os.environ['DJANGO_SETTINGS_MODULE'] = 'ds_events.settings'
+django.setup()
+
+from time import sleep
+from pprint import pprint as ppr
+import pytz
+
+from events.models import Organization, Scraper
+import events.digitools as digitools
+
+count = 0
+tz = pytz.timezone("US/Central")
+DATETIME_FORMAT = '%a, %b %d %Y %I:%M %p SHOW'
+DATETIME_FORMAT_2 = '%a, %b %d %Y %I:%M %p SHOW'
+
+venue, created = Organization.objects.get_or_create(
+ name="Icehouse",
+ city="Minneapolis",
+ website = "https://icehouse.turntabletickets.com",
+ is_venue = True
+ )
+
+scraper,item_count_start = digitools.getScraper(venue)
+
+def get_events(ps, event_type):
+ contents = ps.xpath('.//*/div[@class="performances whitespace-pre-line w-full md:w-3/4"]')
+ for c in contents:
+ try:
+ event = {}
+ event['scraper'] = scraper
+ event['calendar'] = scraper.calendar
+ event['title'] = c.xpath('.//*/h3[@class="text-3xl font-semibold font-heading mr-auto"]/text()')[0]
+ event['link'] = venue.website + c.xpath('.//*/a[@class="show-link"]/@href')[0]
+ event['date'] = c.xpath('.//*/h4[@class="day-of-week"]/text()')[0]
+ year = datetime.now().year
+ if "Brunch" in event['title']:
+ event['time'] = "11:00 AM SHOW"
+ else:
+ event['time'] = c.xpath('.//*/div[@class="performance-btn"]/button/text()')[0]
+
+ event['datetime'] = event['date'] + " " + str(year) + " " + event['time']
+ try:
+ event['dateStamp'] =datetime.strptime(event['datetime'], DATETIME_FORMAT)
+ except:
+ event['datetime'] = event['date'] + " " + str(year) + " " + "07:00 PM SHOW"
+ event['dateStamp'] =datetime.strptime(event['datetime'], DATETIME_FORMAT)
+ event['title'] = event['title'] + " (Time Estimated)"
+ try:
+ digitools.createBasicEvent(event, event_type, venue)
+ scraper.items+=1
+ except Exception as e:
+ print(e)
+ quit()
+
+ except Exception as e:
+ ppr(event)
+ print(e)
+ quit()
+
+if len(sys.argv) >= 2:
+ arg1 = sys.argv[1]
+ br = digitools.getBrowser(arg1)
+else:
+ print("No run_env")
+ quit()
+
+ps = digitools.getSource(br, venue.website)
+get_events(ps, "Mu")
+
+# ppr(events)
+br.close()
+digitools.updateScraper(scraper, item_count_start)
diff --git a/event_scrapers/Working/workshop/pillarforum.mpls.py b/event_scrapers/Working/workshop/pillarforum.mpls.py
new file mode 100644
index 0000000..ba15abd
--- /dev/null
+++ b/event_scrapers/Working/workshop/pillarforum.mpls.py
@@ -0,0 +1,86 @@
+import os, sys
+from datetime import datetime
+from dateutil import relativedelta
+
+import django
+sys.path.append('../../../')
+os.environ['DJANGO_SETTINGS_MODULE'] = 'ds_events.settings'
+django.setup()
+
+from time import sleep
+from pprint import pprint as ppr
+import pytz
+
+from events.models import Organization, Scraper
+import events.digitools as digitools
+
+
+current_year = str(datetime.now().year)
+
+venue, created = Organization.objects.get_or_create(
+ name="Piller Forum",
+ city="Minneapolis",
+ website="https://www.pilllar.com/pages/events",
+ is_venue = True
+ )
+
+scraper,item_count_start = digitools.getScraper(venue)
+
+event_type = "Mu"
+
+# Time Signatures
+tz = pytz.timezone("US/Central")
+DATETIME_FORMAT = '%b. %d %Y %I:%M %p'
+DATETIME_FORMAT_night = '%b. %d %Y %I:%M %p'
+DATETIME_FORMAT_2 = '%b. %d %Y %I:%Mam'
+
+def get_events(ps, event_type):
+ contents = ps.xpath('.//*/div[@class="sse-column sse-half sse-center"]')
+ for c in contents:
+ try:
+ event = {}
+ event['scraper'] = scraper
+ event['calendar'] = scraper.calendar
+ event['link'] = venue.website
+ # time = c.xpath('.//*/span[@class="vp-time"]/text()')[0].strip()
+ date = c.xpath('.//h1[@class="sse-size-64"]/text()')[0]
+ if len(date) > 1:
+ print(date)
+ year = datetime.now().year
+ event_date = date + " " + str(year)
+ event['title'] = c.xpath('.//p/span/b/text()')[0]
+ details = c.xpath('.//p/text()')
+ if 'Music' in details[-1]:
+ event_time = c.xpath('.//p/text()')[-1].split("Music")[1].strip()
+ event_type = "Mu"
+ event_dt = event_date + " " + event_time + " PM"
+ event['dateStamp'] = datetime.strptime(event_dt, DATETIME_FORMAT_night)
+ elif len(details) == 1:
+ try:
+ event_time = details[0].split("-")[0].strip()
+ event_dt = event_date + " " + event_time + ' PM'
+ event['dateStamp'] = datetime.strptime(event_dt, DATETIME_FORMAT_night)
+ event_type = "Ot"
+ except Exception as e:
+ event_time = details[0].split("-")[0].strip()
+ event_dt = event_date + " " + event_time
+ event['dateStamp'] = datetime.strptime(event_dt, DATETIME_FORMAT_2)
+ event_type = "Ot"
+ digitools.createBasicEvent(event, event_type, venue)
+ except Exception as e:
+ print(e)
+
+if len(sys.argv) >= 2:
+ arg1 = sys.argv[1]
+ br = digitools.getBrowser(arg1)
+else:
+ print("No run_env")
+ quit()
+
+ps = digitools.getSource(br, venue.website)
+get_events(ps, event_type)
+sleep(3)
+
+br.close()
+
+digitools.updateScraper(scraper, item_count_start)
diff --git a/event_scrapers/clean_up.py b/event_scrapers/clean_up.py
new file mode 100644
index 0000000..3ef6fa7
--- /dev/null
+++ b/event_scrapers/clean_up.py
@@ -0,0 +1,30 @@
+import re, os, sys
+from datetime import datetime, timedelta
+
+from django.db.models import Count
+
+import django
+sys.path.append('../')
+os.environ['DJANGO_SETTINGS_MODULE'] = 'ds_events.settings'
+django.setup()
+
+from events.models import Event, Organization
+
+new_time = datetime.now() - timedelta(days=1)
+right_bound_time = datetime.now() + timedelta(days=45)
+events = Event.objects.filter(show_date__lte=new_time)
+events1 = Event.objects.filter(show_date__gte=right_bound_time)
+
+for e in events:
+ e.delete()
+
+for e in events1:
+ e.delete()
+
+org_sin_events = Organization.objects.annotate(num_events = Count('event')).filter(num_events__lt=1).filter(is_501c=False)
+
+for org in org_sin_events:
+ print(org)
+ org.delete()
+
+print("completed and cleaned scrapes")
\ No newline at end of file
diff --git a/event_scrapers/run_govt.sh b/event_scrapers/run_govt.sh
new file mode 100644
index 0000000..3b4115b
--- /dev/null
+++ b/event_scrapers/run_govt.sh
@@ -0,0 +1,16 @@
+#!/bin/bash
+
+BASEDIR=/home/canin/Downloads/DigiSnaxxEvents
+DJANGODIR=/home/canin/Downloads/DigiSnaxxEvents/ds_events
+EVENTDIR=/home/canin/Downloads/DigiSnaxxEvents/ds_events/event_scrapers
+GOVTDIR=/home/canin/Downloads/DigiSnaxxEvents/ds_events/event_scrapers/Working/govt
+
+cd $GOVTDIR
+for file in *
+do
+ python "$file" $1
+ echo "SCRIPT COMPLETE"
+done
+
+cd $EVENTDIR
+python clean_up.py
\ No newline at end of file
diff --git a/event_scrapers/run_ical.sh b/event_scrapers/run_ical.sh
new file mode 100644
index 0000000..6a4839c
--- /dev/null
+++ b/event_scrapers/run_ical.sh
@@ -0,0 +1,16 @@
+#!/bin/bash
+
+BASEDIR=/home/canin/Downloads/DigiSnaxxEvents
+DJANGODIR=/home/canin/Downloads/DigiSnaxxEvents/ds_events
+EVENTDIR=/home/canin/Downloads/DigiSnaxxEvents/ds_events/event_scrapers
+ICALDIR=/home/canin/Downloads/DigiSnaxxEvents/ds_events/event_scrapers/Working/iCal
+
+cd $ICALDIR
+for file in *
+do
+ python "$file"
+ echo "SCRIPT COMPLETE"
+done
+
+cd $EVENTDIR
+python clean_up.py
\ No newline at end of file
diff --git a/event_scrapers/run_media_update.sh b/event_scrapers/run_media_update.sh
new file mode 100644
index 0000000..6f2a12b
--- /dev/null
+++ b/event_scrapers/run_media_update.sh
@@ -0,0 +1,21 @@
+#!/bin/bash
+
+# BASEDIR=/var/www/digisnaxx.com/
+# DJANGODIR=/var/www/digisnaxx.com/ds_events
+# EVENTDIR=/var/www/digisnaxx.com/ds_events/event_scrapers
+
+ENVDIR=/home/canin/Downloads/DigiSnaxxEvents
+DJANGODIR=/home/canin/Documents/repos/digisnaxx/ds_events
+WORKMEDIADIR=/home/canin/Documents/repos/digisnaxx/ds_events/event_scrapers/Working/smedia
+
+cd $ENVDIR
+pwd
+source venv/bin/activate
+
+cd $WORKMEDIADIR
+
+python bluesky.py
+python bluesky_media.py
+python redsky.py
+
+deactivate
diff --git a/event_scrapers/run_news.sh b/event_scrapers/run_news.sh
new file mode 100644
index 0000000..f31de03
--- /dev/null
+++ b/event_scrapers/run_news.sh
@@ -0,0 +1,16 @@
+#!/bin/bash
+
+BASEDIR=/home/canin/Downloads/DigiSnaxxEvents
+DJANGODIR=/home/canin/Downloads/DigiSnaxxEvents/ds_events
+EVENTDIR=/home/canin/Downloads/DigiSnaxxEvents/ds_events/event_scrapers
+NEWSDIR=/home/canin/Downloads/DigiSnaxxEvents/ds_events/event_scrapers/Working/news
+
+cd $NEWSDIR
+for file in *
+do
+ python "$file" $1
+ echo "SCRIPT COMPLETE"
+done
+
+cd $EVENTDIR
+python clean_up.py
\ No newline at end of file
diff --git a/event_scrapers/run_scrapers.sh b/event_scrapers/run_scrapers.sh
new file mode 100644
index 0000000..4f81f5e
--- /dev/null
+++ b/event_scrapers/run_scrapers.sh
@@ -0,0 +1,50 @@
+#!/bin/bash
+
+# BASEDIR=/var/www/digisnaxx.com/
+# DJANGODIR=/var/www/digisnaxx.com/ds_events
+# EVENTDIR=/var/www/digisnaxx.com/ds_events/event_scrapers
+
+BASEDIR=/home/canin/Downloads/DigiSnaxxEvents
+DJANGODIR=/home/canin/Downloads/DigiSnaxxEvents/ds_events
+EVENTDIR=/home/canin/Downloads/DigiSnaxxEvents/ds_events/event_scrapers
+VENUESDIR=/home/canin/Downloads/DigiSnaxxEvents/ds_events/event_scrapers/Working/venues
+ICALDIR=/home/canin/Downloads/DigiSnaxxEvents/ds_events/event_scrapers/Working/iCal
+GOVTDIR=/home/canin/Downloads/DigiSnaxxEvents/ds_events/event_scrapers/Working/govt
+
+export DJANGO_SUPERUSER_EMAIL=canin@dreamfreely.org
+export DJANGO_SUPERUSER_USERNAME=canin
+export DJANGO_SUPERUSER_PASSWORD='hello123'
+
+cd $BASEDIR
+pwd
+source venv/bin/activate
+
+cd $DJANGODIR
+pwd
+mv db.sqlite3 db.sqlite3.bak
+# rm ../db.sqlite3
+touch db.sqlite3
+python manage.py migrate
+python manage.py createsuperuser --noinput
+python manage.py loaddata events/fixtures/organizations.json
+python manage.py loaddata events/fixtures/promo.json
+
+cd $EVENTDIR
+python start_up.py
+
+bash run_venues.sh $1
+bash run_ical.sh
+bash run_govt.sh $1
+bash run_news.sh $1
+
+python Working/bluesky.py
+python Working/redsky.py
+
+cd $EVENTDIR
+python clean_up.py
+
+deactivate
+bash run_media_update.sh
+
+rm -rf ../*/__pycache__
+rm -rf ../*/*/__pycache__
\ No newline at end of file
diff --git a/event_scrapers/run_venues.sh b/event_scrapers/run_venues.sh
new file mode 100644
index 0000000..e8d0a0d
--- /dev/null
+++ b/event_scrapers/run_venues.sh
@@ -0,0 +1,16 @@
+#!/bin/bash
+
+BASEDIR=/home/canin/Downloads/DigiSnaxxEvents
+DJANGODIR=/home/canin/Downloads/DigiSnaxxEvents/ds_events
+EVENTDIR=/home/canin/Downloads/DigiSnaxxEvents/ds_events/event_scrapers
+VENUESDIR=/home/canin/Downloads/DigiSnaxxEvents/ds_events/event_scrapers/Working/venues
+
+cd $VENUESDIR
+for file in *
+do
+ python "$file" $1
+ echo "SCRIPT COMPLETE"
+done
+
+cd $EVENTDIR
+python clean_up.py
\ No newline at end of file
diff --git a/event_scrapers/start_up.py b/event_scrapers/start_up.py
new file mode 100644
index 0000000..cd94b9d
--- /dev/null
+++ b/event_scrapers/start_up.py
@@ -0,0 +1,23 @@
+import re, os, sys
+from datetime import datetime, timedelta
+
+import django
+sys.path.append('../')
+os.environ['DJANGO_SETTINGS_MODULE'] = 'ds_events.settings'
+django.setup()
+
+from events.models import Organization, Promo, Calendar
+
+venue, created = Organization.objects.get_or_create(name="DreamFreely",
+ website="https://www.dreamfreely.org",
+ city="St Paul",
+ contact_name="Canin Carlos",
+ contact_email="canin@dreamfreely.org",
+ phone_number="6124054535")
+
+print("Created DreamFreely:", created, venue)
+
+calendar, created = Calendar.objects.get_or_create(name='Mpls-StP', shortcode='msp', desc='none')
+calendar, created = Calendar.objects.get_or_create(name='Medellin', shortcode='mde', desc='none')
+calendar, created = Calendar.objects.get_or_create(name='Global', shortcode='000', desc='none')
+calendar, created = Calendar.objects.get_or_create(name='Online', shortcode='111', desc='none')
diff --git a/event_scrapers/zArchive/FaceBook/BillPull.py b/event_scrapers/zArchive/FaceBook/BillPull.py
new file mode 100644
index 0000000..e754f75
--- /dev/null
+++ b/event_scrapers/zArchive/FaceBook/BillPull.py
@@ -0,0 +1,30 @@
+for sE in senateEvents[:5]:
+ bills = sE.xpath('.//*/div[@class="mb-1"]/a/text()')
+ bill_link = sE.xpath('.//*/div[@class="mb-1"]/a/@href')
+ bill_items = zip(bills, bill_link)
+ print(bills)
+ for b,i in bill_items:
+ if b.startswith("S.F."):
+ print(b, i, "\n\n")
+
+
+
+
+import os
+from twilio.rest import Client
+
+
+# Find your Account SID and Auth Token at twilio.com/console
+# and set the environment variables. See http://twil.io/secure
+account_sid = os.environ['ACb416a0b2ed0a1be44c107b8bc1f683c5']
+auth_token = os.environ['33cae777f215a003deea6d4a0d5027c2']
+client = Client(account_sid, auth_token)
+
+message = client.messages \
+ .create(
+ body="Join Earth's mightiest heroes. Like Kevin Bacon.",
+ from_='+15017122661',
+ to='+15558675310'
+ )
+
+print(message.sid)
diff --git a/event_scrapers/zArchive/FaceBook/Mortimers.mpls.py b/event_scrapers/zArchive/FaceBook/Mortimers.mpls.py
new file mode 100644
index 0000000..7b4f54c
--- /dev/null
+++ b/event_scrapers/zArchive/FaceBook/Mortimers.mpls.py
@@ -0,0 +1,63 @@
+import re, os, sys
+from datetime import datetime
+
+import django
+sys.path.append('../')
+os.environ['DJANGO_SETTINGS_MODULE'] = 'ds_events.settings'
+django.setup()
+
+from events.models import Event, Organization
+
+from pprint import pprint as ppr
+
+from time import sleep
+from pprint import pprint as ppr
+from selenium import webdriver as wd
+from selenium.webdriver.common.by import By
+
+from xvfbwrapper import Xvfb
+from lxml import html
+import pytz
+
+tz = pytz.timezone("US/Central")
+
+DATETIME_FORMAT = '%a, %b %d %Y'
+calendar_url = "https://www.facebook.com/mortimersmpls/events/"
+current_year = str(datetime.now().year)
+
+# Initiate and start the Browser
+br = wd.Firefox()
+
+
+
+br.get(calendar_url)
+sleep(10)
+br.find_element(By.XPATH, '//*/div[@class="x1i10hfl xjbqb8w x6umtig x1b1mbwd xaqea5y xav7gou x1ypdohk xe8uvvx xdj266r x11i5rnm xat24cr x1mh8g0r xexx8yu x4uap5 x18d9i69 xkhd6sd x16tdsg8 x1hl2dhg xggy1nq x1o1ewxj x3x9cwd x1e5q0jg x13rtm0m x87ps6o x1lku1pv x1a2a7pz x9f619 x3nfvp2 xdt5ytf xl56j7k x1n2onr6 xh8yej3"]').click()
+print("Input Login Info")
+sleep(30)
+
+ps = html.fromstring(br.page_source)
+
+listings = ps.xpath('.//*/div[@class="x9f619 x1n2onr6 x1ja2u2z x78zum5 x2lah0s x1qughib x6s0dn4 xozqiw3 x1q0g3np x1pi30zi x1swvt13 xsag5q8 xz9dl7a x1n0m28w xp7jhwk x1wsgfga x9otpla"]')
+
+for l in listings:
+ gT = l.xpath('.//*/span/text()')
+ dateTime = gT[0]
+ show_title = gT[1]
+ link = l.xpath('.//*/a/@href')[0].split("?")[0] + " " + current_year
+ print(show_title, dateTime, link)
+ venue, created = Organization.objects.get_or_create(name="Mortimer's")
+ try:
+ new_event = Event.objects.update_or_create(
+ event_type = 'Mu',
+ show_title = show_title,
+ show_link = link,
+ show_date = datetime.strptime(dateTime.split(" AT")[0].strip(), DATETIME_FORMAT),
+ venue = venue
+ )
+ except Exception as e:
+ print(e, "\n\n++++\n\n")
+ continue
+
+
+br.close()
\ No newline at end of file
diff --git a/event_scrapers/zArchive/FaceBook/Mortimers.py b/event_scrapers/zArchive/FaceBook/Mortimers.py
new file mode 100644
index 0000000..2fd3155
--- /dev/null
+++ b/event_scrapers/zArchive/FaceBook/Mortimers.py
@@ -0,0 +1,69 @@
+import re, os, sys
+from datetime import datetime
+
+import django
+sys.path.append('../')
+os.environ['DJANGO_SETTINGS_MODULE'] = 'ds_events.settings'
+django.setup()
+
+from events.models import Event, Organization
+
+from pprint import pprint as ppr
+
+from time import sleep
+from pprint import pprint as ppr
+from selenium import webdriver as wd
+from selenium.common.exceptions import TimeoutException
+from selenium.webdriver.support.ui import Select
+from selenium.webdriver.common.by import By
+
+from xvfbwrapper import Xvfb
+
+import requests
+from lxml import html
+
+import pytz
+
+tz = pytz.timezone("US/Central")
+
+DATETIME_FORMAT = '%a, %b %d %Y'
+# Set initial variables for City, etc
+calendar_url = "https://www.facebook.com/mortimersmpls/events/"
+current_year = str(datetime.now().year)
+
+# Initiate and start the Browser
+br = wd.Firefox()
+
+br.get(calendar_url)
+sleep(10)
+br.find_element(By.XPATH, '//*/div[@class="x1i10hfl xjbqb8w x6umtig x1b1mbwd xaqea5y xav7gou x1ypdohk xe8uvvx xdj266r x11i5rnm xat24cr x1mh8g0r xexx8yu x4uap5 x18d9i69 xkhd6sd x16tdsg8 x1hl2dhg xggy1nq x1o1ewxj x3x9cwd x1e5q0jg x13rtm0m x87ps6o x1lku1pv x1a2a7pz x9f619 x3nfvp2 xdt5ytf xl56j7k x1n2onr6 xh8yej3"]').click()
+print("Input Login Info")
+sleep(30)
+
+ps = html.fromstring(br.page_source)
+
+listings = ps.xpath('.//*/div[@class="x9f619 x1n2onr6 x1ja2u2z x78zum5 x2lah0s x1qughib x6s0dn4 xozqiw3 x1q0g3np x1pi30zi x1swvt13 xsag5q8 xz9dl7a x1n0m28w xp7jhwk x1wsgfga x9otpla"]')
+
+for l in listings:
+ gT = l.xpath('.//*/span/text()')
+ dateTime = gT[0]
+ show_title = gT[1]
+ link = l.xpath('.//*/a/@href')[0].split("?")[0] + " " + current_year
+ print(show_title, dateTime, link)
+ venue, created = Organization.objects.get_or_create(name="Mortimer's")
+ try:
+ new_event = Event.objects.update_or_create(
+ event_type = 'Mu',
+ show_title = show_title,
+ show_link = link,
+ show_date = datetime.strptime(dateTime.split(" AT")[0].strip(), DATETIME_FORMAT),
+ venue = venue
+ )
+ except Exception as e:
+ print(e, "\n\n++++\n\n")
+ continue
+
+
+br.close()
+
+
diff --git a/event_scrapers/zArchive/FaceBook/pillarforum.mpls.py b/event_scrapers/zArchive/FaceBook/pillarforum.mpls.py
new file mode 100644
index 0000000..1c83d0b
--- /dev/null
+++ b/event_scrapers/zArchive/FaceBook/pillarforum.mpls.py
@@ -0,0 +1,85 @@
+import os, sys
+from datetime import datetime
+from dateutil import relativedelta
+
+import django
+sys.path.append('../')
+os.environ['DJANGO_SETTINGS_MODULE'] = 'ds_events.settings'
+django.setup()
+
+from time import sleep
+from pprint import pprint as ppr
+from selenium import webdriver as wd
+from selenium.webdriver.common.by import By
+
+from xvfbwrapper import Xvfb
+from lxml import html
+import pytz
+
+from events.models import Event as DSEvent, Organization
+from digitools import getBrowser, createURL, createBasicEvent, getSource
+
+
+exit()
+
+current_year = str(datetime.now().year)
+venue, created = Organization.objects.get_or_create(
+ name="Piller Forum",
+ city="Minneapolis",
+ website="https://www.pilllar.com/pages/events",
+ )
+
+tz = pytz.timezone("US/Central")
+
+DATETIME_FORMAT = '%B %d %I:%M%p %Y'
+DATETIME_FORMAT = '%B %A %d %I:%M-%I:%M%p'
+
+if len(sys.argv) >= 2:
+ arg1 = sys.argv[1]
+ br = getBrowser(arg1)
+ br.get(venue.website)
+else:
+ print("No run_env")
+ quit()
+
+try:
+ br.find_element(By.XPATH, '//*[@class="privy-dismiss-content"]').click()
+except Exception as e:
+ print(e)
+ pass
+
+months = br.find_elements(By.XPATH, '//*[@class="sse-display"]')
+
+for month in months:
+ month_name = month.find_element(By.XPATH, './/*[@class="sse-size-28"]/u').text.capitalize()
+ events = month.find_elements(By.XPATH, './/p')
+ for event in events:
+ e = {}
+ eventTitle = event.text
+ try:
+ e['title'] = " ".join(eventTitle.split("-")[1].split(" ")[1:-2])
+ if 'Music' in eventTitle:
+ e['event_type'] = "Mu"
+ elif 'The Growth Arc' in eventTitle:
+ e['event_type'] = "Ot"
+ e['dateTime'] = " ".join([month_name, date, "7:00pm", current_year])
+ e['dateStamp'] = datetime.strptime(e['dateTime'], DATETIME_FORMAT)
+ e['title'] = "The Growth Arc - Relationship Support Space"
+ e['link'] = venue.website
+ elif 'Event' in eventTitle:
+ e['event_type'] = "Mu"
+ else:
+ e['event_type'] = "Ot"
+ date = eventTitle.split(":")[0].split(" ")[1].replace("th", "").replace("nd", "").replace("rd", "").replace("st", "")
+ time = eventTitle.split("-")[1].split(" ")[-2:][0]
+ e['dateTime'] = " ".join([month_name, date, time, current_year])
+ e['dateStamp'] = datetime.strptime(e['dateTime'], DATETIME_FORMAT)
+ e['link'] = venue.website
+ createBasicEvent(e, venue)
+ except Exception as e:
+ print("error ", eventTitle)
+ print(e)
+
+sleep(3)
+# ppr(events)
+br.close()
\ No newline at end of file
diff --git a/event_scrapers/zArchive/bluesky_scrape_old.py b/event_scrapers/zArchive/bluesky_scrape_old.py
new file mode 100644
index 0000000..7bd11d6
--- /dev/null
+++ b/event_scrapers/zArchive/bluesky_scrape_old.py
@@ -0,0 +1,61 @@
+import os, sys
+from datetime import datetime
+from dateutil import relativedelta
+
+from atproto import Client
+
+import django
+sys.path.append('../')
+os.environ['DJANGO_SETTINGS_MODULE'] = 'ds_events.settings'
+django.setup()
+
+from time import sleep
+from pprint import pprint as ppr
+import pytz
+
+from socials.models import SocialLink
+# from digitools import getBrowser, createURL, createBasicEvent, getSource
+
+tz = pytz.timezone("US/Central")
+
+USERNAME = "dreamfreely.org"
+PASSWORD = "Futbol21!@"
+
+client = Client()
+client.login(USERNAME, PASSWORD)
+feed = client.get_author_feed(USERNAME, limit = 100)
+
+def createSocialLink(post):
+ new_post, created = SocialLink.objects.update_or_create(
+ cid = post['link_id'],
+ uri = post['uri'],
+ text = post['text'],
+ link = post['link'],
+ handle = post['handle'],
+ likes = post['likes'],
+ reposts = post['reposts'],
+ quotes = post['quotes'],
+ replies = post['replies'],
+ created_at = post['created_at']
+ )
+ print(created, new_post)
+
+for post in feed.feed:
+ post = post.post
+ if hasattr(post.record.embed, 'external'):
+ p = {}
+ p['link'] = post.record.embed.external.uri.split("?")[0]
+ p['text'] = " ".join(post.record.text.split("\n")[:2])
+ p['handle'] = post.author.handle
+ p['link_id'] = post.uri.split("feed.post/")[-1]
+ p['uri'] = post.uri
+ p['likes'] = post.like_count
+ p['quotes'] = post.quote_count
+ p['replies'] = post.reply_count
+ p['reposts'] = post.repost_count
+ p['created_at'] = post.record.created_at
+
+ try:
+ createSocialLink(p)
+ except Exception as e:
+ print(e)
\ No newline at end of file
diff --git a/event_scrapers/zArchive/broken/BirchbarkBooks.py b/event_scrapers/zArchive/broken/BirchbarkBooks.py
new file mode 100644
index 0000000..485d2ea
--- /dev/null
+++ b/event_scrapers/zArchive/broken/BirchbarkBooks.py
@@ -0,0 +1,82 @@
+import os, sys
+from datetime import datetime
+from dateutil import relativedelta
+
+import django
+sys.path.append('../')
+os.environ['DJANGO_SETTINGS_MODULE'] = 'ds_events.settings'
+django.setup()
+
+from time import sleep
+from pprint import pprint as ppr
+
+from events.models import Event as DSEvent, Organization
+from digitools import getBrowser, createURL, createBasicEvent, getSource
+
+current_year = str(datetime.now().year)
+
+venue, created = Organization.objects.get_or_create(
+ name="Birchbark Books",
+ city="Minneapolis",
+ website="https://birchbarkbooks.com/pages/events",
+ )
+
+DATETIME_FORMAT = '%A, %B %d @ %I:%M%p %Y'
+DATETIME_FORMAT_2 = '%A, %B %d @ %I%p %Y'
+DATETIME_FORMAT_3 = '%A, %B %d at %I:%M%p %Y'
+DATETIME_FORMAT_4 = '%A, %B %d at %I%p %Y'
+DATETIME_FORMAT_5 = '%A, %B %d @%I%p %Y'
+
+def get_events(ps):
+ contents = ps.xpath('.//*/div[@class="feature-row"]')
+ # ppr("contents:", contents)
+ for c in contents:
+ try:
+ event = {}
+ event['title'] = c.xpath('.//*/p[@class="h3"]/text()')[0].strip()
+ event['link'] = "https://birchbarkbooks.com/pages/events"
+ event['date'] = c.xpath('.//*/p[@class="accent-subtitle"]/text()')[0].replace("Central", "") + " " + current_year
+ event['date_num'] = event['date'].split(" ")[2].replace("th", "").replace("st", "").replace("rd", "").replace("nd", "")
+ event['date'] = event['date'].split(" ")
+ event['date'][2] = event['date_num']
+ event['date'] = " ".join(event['date'])
+ event['dateStamp'] =datetime.strptime(event['date'], DATETIME_FORMAT)
+ createBasicEvent(event, "Ed", venue)
+ except Exception as e:
+ try:
+ print(e)
+ event['dateStamp'] =datetime.strptime(event['date'], DATETIME_FORMAT_2)
+ createBasicEvent(event, "Ed", venue)
+ print("\n\n+++\n\n")
+ except Exception as e:
+ try:
+ print(e)
+ event['dateStamp'] =datetime.strptime(event['date'], DATETIME_FORMAT_3)
+ createBasicEvent(event, "Ed", venue)
+ print("\n\n+++\n\n")
+ except Exception as e:
+ try:
+ print(e)
+ event['dateStamp'] =datetime.strptime(event['date'], DATETIME_FORMAT_4)
+ createBasicEvent(event, "Ed", venue)
+ print("\n\n+++\n\n")
+ except Exception as e:
+ print(e)
+ event['dateStamp'] =datetime.strptime(event['date'], DATETIME_FORMAT_5)
+ createBasicEvent(event, "Ed", venue)
+ print("\n\n+++\n\n")
+
+if len(sys.argv) >= 2:
+ arg1 = sys.argv[1]
+ br = getBrowser(arg1)
+else:
+ print("No run_env")
+ quit()
+
+calendar_url = 'https://birchbarkbooks.com/pages/events'
+
+ps = getSource(br, calendar_url)
+get_events(ps)
+
+# ppr(events)
+br.close()
\ No newline at end of file
diff --git a/event_scrapers/zArchive/broken/FaceBook/BillPull.py b/event_scrapers/zArchive/broken/FaceBook/BillPull.py
new file mode 100644
index 0000000..e754f75
--- /dev/null
+++ b/event_scrapers/zArchive/broken/FaceBook/BillPull.py
@@ -0,0 +1,30 @@
+for sE in senateEvents[:5]:
+ bills = sE.xpath('.//*/div[@class="mb-1"]/a/text()')
+ bill_link = sE.xpath('.//*/div[@class="mb-1"]/a/@href')
+ bill_items = zip(bills, bill_link)
+ print(bills)
+ for b,i in bill_items:
+ if b.startswith("S.F."):
+ print(b, i, "\n\n")
+
+
+
+
+import os
+from twilio.rest import Client
+
+
+# Find your Account SID and Auth Token at twilio.com/console
+# and set the environment variables. See http://twil.io/secure
+account_sid = os.environ['ACb416a0b2ed0a1be44c107b8bc1f683c5']
+auth_token = os.environ['33cae777f215a003deea6d4a0d5027c2']
+client = Client(account_sid, auth_token)
+
+message = client.messages \
+ .create(
+ body="Join Earth's mightiest heroes. Like Kevin Bacon.",
+ from_='+15017122661',
+ to='+15558675310'
+ )
+
+print(message.sid)
diff --git a/event_scrapers/zArchive/broken/FaceBook/Mortimers.mpls.py b/event_scrapers/zArchive/broken/FaceBook/Mortimers.mpls.py
new file mode 100644
index 0000000..7b4f54c
--- /dev/null
+++ b/event_scrapers/zArchive/broken/FaceBook/Mortimers.mpls.py
@@ -0,0 +1,63 @@
+import re, os, sys
+from datetime import datetime
+
+import django
+sys.path.append('../')
+os.environ['DJANGO_SETTINGS_MODULE'] = 'ds_events.settings'
+django.setup()
+
+from events.models import Event, Organization
+
+from pprint import pprint as ppr
+
+from time import sleep
+from pprint import pprint as ppr
+from selenium import webdriver as wd
+from selenium.webdriver.common.by import By
+
+from xvfbwrapper import Xvfb
+from lxml import html
+import pytz
+
+tz = pytz.timezone("US/Central")
+
+DATETIME_FORMAT = '%a, %b %d %Y'
+calendar_url = "https://www.facebook.com/mortimersmpls/events/"
+current_year = str(datetime.now().year)
+
+# Initiate and start the Browser
+br = wd.Firefox()
+
+
+
+br.get(calendar_url)
+sleep(10)
+br.find_element(By.XPATH, '//*/div[@class="x1i10hfl xjbqb8w x6umtig x1b1mbwd xaqea5y xav7gou x1ypdohk xe8uvvx xdj266r x11i5rnm xat24cr x1mh8g0r xexx8yu x4uap5 x18d9i69 xkhd6sd x16tdsg8 x1hl2dhg xggy1nq x1o1ewxj x3x9cwd x1e5q0jg x13rtm0m x87ps6o x1lku1pv x1a2a7pz x9f619 x3nfvp2 xdt5ytf xl56j7k x1n2onr6 xh8yej3"]').click()
+print("Input Login Info")
+sleep(30)
+
+ps = html.fromstring(br.page_source)
+
+listings = ps.xpath('.//*/div[@class="x9f619 x1n2onr6 x1ja2u2z x78zum5 x2lah0s x1qughib x6s0dn4 xozqiw3 x1q0g3np x1pi30zi x1swvt13 xsag5q8 xz9dl7a x1n0m28w xp7jhwk x1wsgfga x9otpla"]')
+
+for l in listings:
+ gT = l.xpath('.//*/span/text()')
+ dateTime = gT[0]
+ show_title = gT[1]
+ link = l.xpath('.//*/a/@href')[0].split("?")[0] + " " + current_year
+ print(show_title, dateTime, link)
+ venue, created = Organization.objects.get_or_create(name="Mortimer's")
+ try:
+ new_event = Event.objects.update_or_create(
+ event_type = 'Mu',
+ show_title = show_title,
+ show_link = link,
+ show_date = datetime.strptime(dateTime.split(" AT")[0].strip(), DATETIME_FORMAT),
+ venue = venue
+ )
+ except Exception as e:
+ print(e, "\n\n++++\n\n")
+ continue
+
+
+br.close()
\ No newline at end of file
diff --git a/event_scrapers/zArchive/broken/FaceBook/Mortimers.py b/event_scrapers/zArchive/broken/FaceBook/Mortimers.py
new file mode 100644
index 0000000..2fd3155
--- /dev/null
+++ b/event_scrapers/zArchive/broken/FaceBook/Mortimers.py
@@ -0,0 +1,69 @@
+import re, os, sys
+from datetime import datetime
+
+import django
+sys.path.append('../')
+os.environ['DJANGO_SETTINGS_MODULE'] = 'ds_events.settings'
+django.setup()
+
+from events.models import Event, Organization
+
+from pprint import pprint as ppr
+
+from time import sleep
+from pprint import pprint as ppr
+from selenium import webdriver as wd
+from selenium.common.exceptions import TimeoutException
+from selenium.webdriver.support.ui import Select
+from selenium.webdriver.common.by import By
+
+from xvfbwrapper import Xvfb
+
+import requests
+from lxml import html
+
+import pytz
+
+tz = pytz.timezone("US/Central")
+
+DATETIME_FORMAT = '%a, %b %d %Y'
+# Set initial variables for City, etc
+calendar_url = "https://www.facebook.com/mortimersmpls/events/"
+current_year = str(datetime.now().year)
+
+# Initiate and start the Browser
+br = wd.Firefox()
+
+br.get(calendar_url)
+sleep(10)
+br.find_element(By.XPATH, '//*/div[@class="x1i10hfl xjbqb8w x6umtig x1b1mbwd xaqea5y xav7gou x1ypdohk xe8uvvx xdj266r x11i5rnm xat24cr x1mh8g0r xexx8yu x4uap5 x18d9i69 xkhd6sd x16tdsg8 x1hl2dhg xggy1nq x1o1ewxj x3x9cwd x1e5q0jg x13rtm0m x87ps6o x1lku1pv x1a2a7pz x9f619 x3nfvp2 xdt5ytf xl56j7k x1n2onr6 xh8yej3"]').click()
+print("Input Login Info")
+sleep(30)
+
+ps = html.fromstring(br.page_source)
+
+listings = ps.xpath('.//*/div[@class="x9f619 x1n2onr6 x1ja2u2z x78zum5 x2lah0s x1qughib x6s0dn4 xozqiw3 x1q0g3np x1pi30zi x1swvt13 xsag5q8 xz9dl7a x1n0m28w xp7jhwk x1wsgfga x9otpla"]')
+
+for l in listings:
+ gT = l.xpath('.//*/span/text()')
+ dateTime = gT[0]
+ show_title = gT[1]
+ link = l.xpath('.//*/a/@href')[0].split("?")[0] + " " + current_year
+ print(show_title, dateTime, link)
+ venue, created = Organization.objects.get_or_create(name="Mortimer's")
+ try:
+ new_event = Event.objects.update_or_create(
+ event_type = 'Mu',
+ show_title = show_title,
+ show_link = link,
+ show_date = datetime.strptime(dateTime.split(" AT")[0].strip(), DATETIME_FORMAT),
+ venue = venue
+ )
+ except Exception as e:
+ print(e, "\n\n++++\n\n")
+ continue
+
+
+br.close()
+
+
diff --git a/event_scrapers/zArchive/broken/__pycache__/digitools.cpython-312.pyc b/event_scrapers/zArchive/broken/__pycache__/digitools.cpython-312.pyc
new file mode 100644
index 0000000..59ecbf1
Binary files /dev/null and b/event_scrapers/zArchive/broken/__pycache__/digitools.cpython-312.pyc differ
diff --git a/event_scrapers/zArchive/broken/acadia.py b/event_scrapers/zArchive/broken/acadia.py
new file mode 100644
index 0000000..19d5395
--- /dev/null
+++ b/event_scrapers/zArchive/broken/acadia.py
@@ -0,0 +1,72 @@
+import os, sys
+from datetime import datetime
+from dateutil import relativedelta
+
+import django
+sys.path.append('../../')
+os.environ['DJANGO_SETTINGS_MODULE'] = 'ds_events.settings'
+django.setup()
+
+from time import sleep
+from pprint import pprint as ppr
+
+from events.models import Event as DSEvent, Organization
+from digitools import getBrowser, createDashURL, createBasicEvent, getSource
+
+venue, created = Organization.objects.get_or_create(
+ name="Acadia Cafe",
+ city="Minneapolis",
+ website="https://acadiacafe.com",
+ )
+
+calendar_url = "https://www.acadiacafe.com/events"
+
+DATETIME_FORMAT = '%d %m %Y %I:%M%p'
+
+def get_events(ps, link):
+ contents = ps.xpath('.//*/div[@class="cl-view-month__day__event__title"]')
+ print(contents)
+ quit()
+
+ for c in contents:
+ try:
+ day_num = c.xpath('.//*/div[@class="marker-daynum"]/text()')[0]
+ events = c.xpath('.//*/li')
+ # print(events)
+ for e in events:
+ event = {}
+ event['month'] = link.split("month=")[1].split("-")[0]
+ event['year'] = link.split("month=")[1].split("-")[1]
+ event['title'] = e.xpath('.//h1/a[@class="flyoutitem-link"]/text()')
+ event['time'] = e.xpath('.//div[@class="flyoutitem-datetime flyoutitem-datetime--12hr"]/text()')
+ event['link'] = e.xpath('.//a/@href')[0]
+ event['date'] = str(day_num) + ' ' + 'time'
+ # event['dateStamp'] = datetime.strptime(dateStamp, DATETIME_FORMAT)
+ if len(event['title']):
+ nevent = {}
+ nevent['title'] = "".join(event['title']).strip()
+ event['time'] = event['time'][0].strip().split(" –")[0]
+ nevent['link'] = "https://palmers-bar.com" + e.xpath('.//a/@href')[0]
+ event['dateStamp'] = str(day_num) + ' ' + event['month'] + ' ' + event['year'] + ' ' + event['time']
+ nevent['dateStamp'] = datetime.strptime(event['dateStamp'], DATETIME_FORMAT)
+ createBasicEvent(nevent, 'Mu', venue)
+ except Exception as e:
+ continue
+
+if len(sys.argv) >= 2:
+ arg1 = sys.argv[1]
+ br = getBrowser(arg1)
+else:
+ print("No run_env")
+ quit()
+
+
+
+
+ps = getSource(br, calendar_url)
+sleep(5)
+get_events(ps, calendar_url)
+sleep(5)
+
+# ppr(events)
+br.close()
\ No newline at end of file
diff --git a/event_scrapers/zArchive/broken/cedar.mpls.py b/event_scrapers/zArchive/broken/cedar.mpls.py
new file mode 100644
index 0000000..94ea33f
--- /dev/null
+++ b/event_scrapers/zArchive/broken/cedar.mpls.py
@@ -0,0 +1,64 @@
+import os, sys
+from datetime import datetime
+from dateutil import relativedelta
+
+import django
+sys.path.append('../')
+os.environ['DJANGO_SETTINGS_MODULE'] = 'ds_events.settings'
+django.setup()
+
+from time import sleep
+from pprint import pprint as ppr
+from selenium import webdriver as wd
+
+from xvfbwrapper import Xvfb
+from lxml import html
+import pytz
+
+from events.models import Event as DSEvent, Organization
+from digitools import getBrowser, createBasicEvent, getSource
+
+venue, created = Organization.objects.get_or_create(
+ name="Cedar Cultural Center",
+ city="Minneapolis",
+ website="https://www.thecedar.org/listing",
+ )
+
+tz = pytz.timezone("US/Central")
+
+DATETIME_FORMAT = '%A, %B %d, %Y %I:%M %p'
+DATETIME_FORMAT_2 = '%A, %B %d @ %I%p %Y'
+DATETIME_FORMAT_3 = '%A, %B %d at %I:%M%p %Y'
+DATETIME_FORMAT_4 = '%A, %B %d at %I%p %Y'
+DATETIME_FORMAT_5 = '%A, %B %d @%I%p %Y'
+
+def get_events(ps):
+ links = ps.xpath('.//*/div[@class="summary-title"]/a/@href')
+ # ppr("contents:", contents)
+ for l in links:
+ br.get("https://www.thecedar.org" + l)
+ sleep(3)
+ pse = html.fromstring(br.page_source)
+ event = {}
+ time = pse.xpath('.//*/time[@class="event-time-12hr-start"]/text()')[0]
+ date = pse.xpath('.//*/time[@class="event-date"]/text()')[0]
+ event['title'] = pse.xpath('.//*/h1[@class="eventitem-title"]/text()')[0]
+ dateStamp = date + " " + time
+ event['dateStamp'] = datetime.strptime(dateStamp, DATETIME_FORMAT)
+ event['link'] = "https://www.thecedar.org" + l
+ createBasicEvent(event, "Mu", venue)
+
+if len(sys.argv) >= 2:
+ arg1 = sys.argv[1]
+ br = getBrowser(arg1)
+else:
+ print("No run_env")
+ quit()
+
+
+
+calendar_url = 'https://www.thecedar.org/listing'
+ps = getSource(br, calendar_url)
+get_events(ps)
+# ppr(events)
+br.close()
\ No newline at end of file
diff --git a/event_scrapers/zArchive/broken/digitools.py b/event_scrapers/zArchive/broken/digitools.py
new file mode 100644
index 0000000..6da1a5a
--- /dev/null
+++ b/event_scrapers/zArchive/broken/digitools.py
@@ -0,0 +1,117 @@
+import os, sys
+from datetime import datetime
+from dateutil import relativedelta
+from time import sleep
+import pytz
+from lxml import html
+
+import django
+sys.path.append('../')
+os.environ['DJANGO_SETTINGS_MODULE'] = 'ds_events.settings'
+django.setup()
+
+from xvfbwrapper import Xvfb
+from selenium import webdriver as wd
+
+from events.models import Event as DSEvent, Organization
+
+tz = pytz.timezone("US/Central")
+td = relativedelta.relativedelta(months=1)
+odt = datetime.now() + td
+
+
+def getSource(browser, link):
+ browser.get(link)
+ sleep(5)
+ ps = html.fromstring(browser.page_source)
+ return ps
+
+def getBrowser(run_env):
+ if run_env == 'dev':
+ print("Chrome is a go!")
+ # chromeOptions = wd.ChromeOptions()
+ # chromeOptions.binary_location = "/Application/Google\ Chrome.app"
+ # chromeDriver = "/opt/homebrew/bin/chromedriver"
+ # br = wd.Chrome(chromeDriver, options=chromeOptions)
+ br = wd.Chrome()
+ return br
+ elif run_env == "def":
+ print("Firefox go vroom")
+ br = wd.Firefox()
+ return br
+ elif run_env == "prod":
+ start_cmd = "Xvfb :91 && export DISPLAY=:91 &"
+ xvfb = Xvfb()
+ os.system(start_cmd)
+ xvfb.start()
+ print("started Xvfb")
+ br = wd.Firefox()
+ return br
+ else:
+ print("Failed", sys.argv, arg1)
+ quit()
+
+def createBasicURL(site_url):
+ month = datetime.now().month
+ next_month = odt.month
+ year = datetime.now().year
+ print(month, next_month, year)
+ links = [
+ site_url + str(month) + "/" + str(year),
+ site_url + str(next_month) + "/" + str(year)
+ ]
+ print(links)
+ return links
+
+def createURL(site_url):
+ month = datetime.now().month
+ if month < 10:
+ month = "0" + str(month)
+ else:
+ month = str(month)
+ next_month = odt.month
+ if next_month < 10:
+ next_month = "0" + str(next_month)
+ else:
+ next_month = str(next_month)
+ year = datetime.now().year
+ links = [
+ site_url + str(year) + "/" + month,
+ ]
+ if next_month == "01":
+ links.append(site_url + str(int(year)+1) + "/" + next_month)
+ else:
+ links.append(site_url + str(year) + "/" + next_month)
+ print(links)
+ return links
+
+def createDashURL(site_url):
+ month = datetime.now().month
+ if month < 10:
+ month = "0" + str(month)
+ else:
+ month = str(month)
+ next_month = odt.month
+ if next_month < 10:
+ next_month = "0" + str(next_month)
+ else:
+ next_month = str(next_month)
+ year = datetime.now().year
+ print(month, next_month, year)
+ links = [
+ site_url + month + "-" + str(year),
+ site_url + next_month + "-" + str(year)
+ ]
+ print(links)
+ return links
+
+def createBasicEvent(event, event_type, venue):
+ new_event, created = DSEvent.objects.update_or_create(
+ event_type = event_type,
+ show_title = event['title'],
+ show_link = event['link'],
+ show_date = event['dateStamp'],
+ show_day = event['dateStamp'],
+ venue = venue
+ )
+ print("New Event: ", new_event)
diff --git a/event_scrapers/zArchive/broken/ical.TriviaMafia.py.bak b/event_scrapers/zArchive/broken/ical.TriviaMafia.py.bak
new file mode 100644
index 0000000..a2ba345
--- /dev/null
+++ b/event_scrapers/zArchive/broken/ical.TriviaMafia.py.bak
@@ -0,0 +1,139 @@
+import requests, os, sys
+from icalendar import Calendar as iCalendar, Event
+
+from datetime import datetime
+from dateutil import relativedelta
+td = relativedelta.relativedelta(hours=5)
+
+from pprint import pprint as ppr
+import pytz
+
+import django
+sys.path.append('../')
+os.environ['DJANGO_SETTINGS_MODULE'] = 'ds_events.settings'
+django.setup()
+
+from events.models import Event as DSEvent, Organization
+from dateutil import relativedelta
+
+
+def createEvent(event, Organization, event_type):
+ new_event, created = DSEvent.objects.update_or_create(
+ event_type = event_type,
+ show_title = event['strSummary'],
+ show_link = venue.website,
+ show_date = event['dateStart']-td,
+ show_day = event['dateStart']-td,
+ more_details = event["details"],
+ venue = venue
+ )
+ return new_event, created
+
+
+def createVenue(event):
+ venue, created = Organization.objects.get_or_create(
+ name = event['venue'],
+ address = event['address'],
+ city = event['city'],
+ )
+ return venue, created
+
+td = relativedelta.relativedelta(hours=5)
+
+
+event_type = "Ot"
+
+calendar_url = 'https://calendar.google.com/calendar/ical/c_g1i6cbb3glhu6or0hu8kemah7k%40group.calendar.google.com/public/basic.ics'
+
+objIcalData = requests.get(calendar_url)
+
+gcal = iCalendar.from_ical(objIcalData.text)
+
+cfpa_events = []
+tz = pytz.timezone("US/Central")
+
+for component in gcal.walk():
+ event = {}
+ event['strSummary'] = f"{(component.get('SUMMARY'))}"
+ event['strDesc'] = component.get('DESCRIPTION')
+ event['strLocation'] = component.get('LOCATION')
+ event['dateStart'] = component.get('DTSTART')
+ event['dateStamp'] = component.get('DTSTAMP')
+ event['RepeatRule'] = component.get('RRULE')
+ if event['dateStamp'] is not None:
+ event['dateStamp'] = event['dateStamp'].dt
+ if event['dateStart'] is not None:
+ try:
+ event['dateStart'] = event['dateStart'].dt
+ except Exception as e:
+ event['dateStart'] = event['dateStart'].dt
+ event['dateEnd'] = (component.get('DTEND'))
+ if event['dateEnd'] is not None:
+ event['dateEnd'] = event['dateEnd'].dt
+ else:
+ event['dateEnd'] = event['dateStart']
+ if event['strSummary'] != 'None':
+ event['details'] = {
+ "description" : event['strDesc'],
+ "Location" : event['strLocation'],
+ }
+ try:
+ event['venue'] = event['strLocation'].split(",")[0].strip()
+ event['address'] = event['strLocation'].split(",")[1].strip()
+ event['city'] = event['strLocation'].split(",")[2].strip()
+ try:
+ event['state'] = event['strLocation'].split(",")[3].split(' ')[1]
+ event['zip'] = event['strLocation'].split(",")[3].split(' ')[2]
+ except Exception as error:
+ pass
+ except Exception as error:
+ pass
+ cfpa_events.append(event)
+ # print(event)
+ now_now = datetime.now().astimezone(pytz.utc)
+ try:
+ if event['dateStart'] > now_now:
+ if not event['address'][0].isdigit():
+ continue
+ venue, created = createVenue(event)
+ new_event, created = createEvent(event, venue, event_type)
+ print(new_event)
+ except Exception as e:
+ try:
+ if event['dateStart'] > now_now.date():
+ if not event['address'][0].isdigit():
+ continue
+ venue, created = createVenue(event)
+ new_event, created = createEvent(event, venue, event_type)
+ print(new_event)
+ except Exception as e:
+ ppr(event)
+ print(e)
+
+
+# new_events = []
+# for event in cfpa_events:
+# now_now = datetime.now().astimezone(pytz.utc)
+# try:
+# if event['dateStart'] > now_now:
+# new_events.append(event)
+# except Exception as e:
+# try:
+# if event['dateStart'] > now_now.date():
+# new_events.append(event)
+# except Exception as e:
+# print(e)
+# ppr(event)
+
+
+# {'dateEnd': datetime.datetime(2022, 10, 22, 18, 30, tzinfo=),
+# 'dateStamp': datetime.datetime(2023, 3, 23, 1, 57, 45, tzinfo=),
+# 'dateStart': datetime.datetime(2022, 10, 22, 17, 30, tzinfo=),
+# 'details': {'DateTime': datetime.datetime(2022, 10, 22, 17, 30, tzinfo=),
+# 'Location': vText('b'''),
+# 'description': None},
+# 'strDesc': None,
+# 'strLocation': vText('b'''),
+# 'strSummary': 'Nia Class with Beth Giles'}
+
+
diff --git a/event_scrapers/zArchive/broken/palmers.mpls.py b/event_scrapers/zArchive/broken/palmers.mpls.py
new file mode 100644
index 0000000..def9a5f
--- /dev/null
+++ b/event_scrapers/zArchive/broken/palmers.mpls.py
@@ -0,0 +1,77 @@
+import os, sys
+from datetime import datetime
+from dateutil import relativedelta
+
+import django
+sys.path.append('../../')
+os.environ['DJANGO_SETTINGS_MODULE'] = 'ds_events.settings'
+django.setup()
+
+from time import sleep
+from pprint import pprint as ppr
+
+from events.models import Event as DSEvent, Organization
+from digitools import getBrowser, createDashURL, createBasicEvent, getSource
+
+venue, created = Organization.objects.get_or_create(
+ name="Palmer's Bar",
+ city="Minneapolis",
+ website="https://palmers-bar.com",
+ )
+
+calendar_url = "https://palmers-bar.com"
+
+DATETIME_FORMAT = '%d %m %Y %I:%M%p'
+
+def get_events(ps, link):
+ contents = ps.xpath('.//*/td')
+ for c in contents:
+ try:
+ # day_num = c.xpath('.//*/div[@class="marker-daynum"]/text()')[0]
+ events = c.xpath('.//*/li')
+ # print(events)
+ for e in events:
+ event = {}
+ event_link = calendar_url + e.xpath('.//a/@href')[0]
+ ps = getSource(br, event_link)
+ new_event = ps.xpath('.//*/h1[@class="eventitem-column-meta"]')
+ event['title'] = new_event.xpath('.//*/h1[@class="event-title"]')
+ event['date'] = new_event.xpath('.//*/time[@class="event-date"]')
+ event['time'] = new_event.xpath('.//*/time[@class="event-time-12hr-start"]')
+ event['link'] = event_link
+
+ # event['month'] = link.split("month=")[1].split("-")[0]
+ # event['year'] = link.split("month=")[1].split("-")[1]
+ # event['title'] = e.xpath('.//h1/a[@class="flyoutitem-link"]/text()')
+ # event['time'] = e.xpath('.//div[@class="flyoutitem-datetime flyoutitem-datetime--12hr"]/text()')
+ # event['date'] = str(day_num) + ' ' + 'time'
+ # event['dateStamp'] = datetime.strptime(dateStamp, DATETIME_FORMAT)
+ ppr(event)
+ if len(event['title']):
+ nevent = {}
+ nevent['title'] = "".join(event['title']).strip()
+ event['time'] = event['time'][0].strip().split(" –")[0]
+ nevent['link'] = "https://palmers-bar.com" + e.xpath('.//a/@href')[0]
+ event['dateStamp'] = str(day_num) + ' ' + event['month'] + ' ' + event['year'] + ' ' + event['time']
+ nevent['dateStamp'] = datetime.strptime(event['dateStamp'], DATETIME_FORMAT)
+ ppr(nevent)
+ # createBasicEvent(nevent, 'Mu', venue)
+ except Exception as e:
+ continue
+
+if len(sys.argv) >= 2:
+ arg1 = sys.argv[1]
+ br = getBrowser(arg1)
+else:
+ print("No run_env")
+ quit()
+
+links = createDashURL("https://palmers-bar.com/?view=calendar&month=")
+
+for link in links:
+ ps = getSource(br, link)
+ get_events(ps, link)
+ sleep(5)
+
+# ppr(events)
+br.close()
\ No newline at end of file
diff --git a/event_scrapers/zArchive/digitools_old.py b/event_scrapers/zArchive/digitools_old.py
new file mode 100644
index 0000000..75913a2
--- /dev/null
+++ b/event_scrapers/zArchive/digitools_old.py
@@ -0,0 +1,132 @@
+import os, sys
+from datetime import datetime
+from dateutil import relativedelta
+from time import sleep
+import pytz
+from lxml import html
+
+import django
+sys.path.append('../')
+os.environ['DJANGO_SETTINGS_MODULE'] = 'ds_events.settings'
+django.setup()
+
+from xvfbwrapper import Xvfb
+from selenium import webdriver as wd
+
+from events.models import Event as DSEvent, Organization
+
+tz = pytz.timezone("US/Central")
+td = relativedelta.relativedelta(months=1)
+odt = datetime.now() + td
+
+
+def getSource(browser, link):
+ browser.get(link)
+ sleep(3)
+ ps = html.fromstring(browser.page_source)
+ return ps
+
+def getBrowser(run_env):
+ if run_env == 'dev':
+ print("Chrome is a go!")
+ # chromeOptions = wd.ChromeOptions()
+ # chromeOptions.binary_location = "/Application/Google\ Chrome.app"
+ # chromeDriver = "/opt/homebrew/bin/chromedriver"
+ # br = wd.Chrome(chromeDriver, options=chromeOptions)
+ br = wd.Chrome()
+ return br
+ elif run_env == "def":
+ print("Firefox go vroom")
+ br = wd.Firefox()
+ return br
+ elif run_env == "prod":
+ start_cmd = "Xvfb :91 && export DISPLAY=:91 &"
+ xvfb = Xvfb()
+ os.system(start_cmd)
+ xvfb.start()
+ print("started Xvfb")
+ br = wd.Firefox()
+ return br
+ else:
+ print("Failed", sys.argv, arg1)
+ quit()
+
+def createBasicURL(site_url):
+ month = datetime.now().month
+ next_month = odt.month
+ year = datetime.now().year
+ print(month, next_month, year)
+ links = [
+ site_url + str(month) + "/" + str(year),
+ site_url + str(next_month) + "/" + str(year)
+ ]
+ print(links)
+ return links
+
+def createURLNoZero(site_url):
+ month = datetime.now().month
+ next_month = odt.month
+ year = datetime.now().year
+ links = [
+ site_url + str(year) + "/" + month,
+ ]
+ if next_month == "1":
+ links.append(site_url + str(int(year)+1) + "/" + next_month)
+ else:
+ links.append(site_url + str(year) + "/" + next_month)
+ print(links)
+ return links
+
+def createURL(site_url):
+ month = datetime.now().month
+ if month < 10:
+ month = "0" + str(month)
+ else:
+ month = str(month)
+ next_month = odt.month
+ if next_month < 10:
+ next_month = "0" + str(next_month)
+ else:
+ next_month = str(next_month)
+ year = datetime.now().year
+ links = [
+ site_url + str(year) + "/" + month,
+ ]
+ if next_month == "01":
+ links.append(site_url + str(int(year)+1) + "/" + next_month)
+ else:
+ links.append(site_url + str(year) + "/" + next_month)
+ print(links)
+ return links
+
+def createDashURL(site_url):
+ month = datetime.now().month
+ if month < 10:
+ month = "0" + str(month)
+ else:
+ month = str(month)
+ next_month = odt.month
+ if next_month < 10:
+ next_month = "0" + str(next_month)
+ else:
+ next_month = str(next_month)
+ year = datetime.now().year
+ print(month, next_month, year)
+ links = [
+ site_url + month + "-" + str(year),
+ site_url + next_month + "-" + str(year)
+ ]
+ print(links)
+ return links
+
+def createBasicEvent(event, event_type, venue):
+ new_event, created = DSEvent.objects.update_or_create(
+ calendar = event['calendar'],
+ event_type = event_type,
+ show_title = event['title'],
+ show_link = event['link'],
+ show_date = event['dateStamp'],
+ show_day = event['dateStamp'],
+ venue = venue
+ )
+ print("New Event: ", new_event)
diff --git a/events/__init__.py b/events/__init__.py
new file mode 100644
index 0000000..e69de29
diff --git a/events/admin.py b/events/admin.py
new file mode 100644
index 0000000..ccdb6a4
--- /dev/null
+++ b/events/admin.py
@@ -0,0 +1,30 @@
+from django.contrib import admin
+from .models import *
+
+
+class ScraperAdmin(admin.ModelAdmin):
+# prepopulated_fields = {"slug": ("shortname",)}
+ list_display = ("name", "items", "new_items", "last_ran")
+
+class OrganizationAdmin(admin.ModelAdmin):
+# prepopulated_fields = {"slug": ("shortname",)}
+ list_display = ( "name", "city",)
+ # list_filter = ("promo_type",)
+
+class EventAdmin(admin.ModelAdmin):
+# prepopulated_fields = {"slug": ("shortname",)}
+ list_display = ( "show_title", "event_type", "show_date",)
+ list_filter = ("venue", "event_type")
+
+class PromoAdmin(admin.ModelAdmin):
+# prepopulated_fields = {"slug": ("shortname",)}
+ list_display = ("title", "organization", "promo_type", "published")
+ list_filter = ("promo_type",)
+
+
+# Register your models here.
+admin.site.register(Scraper, ScraperAdmin)
+admin.site.register(Event, EventAdmin)
+admin.site.register(Organization, OrganizationAdmin)
+admin.site.register(Promo, PromoAdmin)
+admin.site.register(Calendar)
\ No newline at end of file
diff --git a/events/apps.py b/events/apps.py
new file mode 100644
index 0000000..20f48f2
--- /dev/null
+++ b/events/apps.py
@@ -0,0 +1,6 @@
+from django.apps import AppConfig
+
+
+class EventsConfig(AppConfig):
+ default_auto_field = 'django.db.models.BigAutoField'
+ name = 'events'
diff --git a/events/digitools.py b/events/digitools.py
new file mode 100644
index 0000000..9bf6938
--- /dev/null
+++ b/events/digitools.py
@@ -0,0 +1,258 @@
+import os, sys
+from datetime import datetime
+from dateutil import relativedelta
+from time import sleep
+import pytz
+from lxml import html
+from pprint import pprint as ppr
+
+import django
+sys.path.append('../')
+os.environ['DJANGO_SETTINGS_MODULE'] = 'ds_events.settings'
+django.setup()
+
+from xvfbwrapper import Xvfb
+from selenium import webdriver as wd
+
+from events.models import Event as DSEvent, Organization, Promo, Scraper, Calendar
+
+tz = pytz.timezone("US/Central")
+td = relativedelta.relativedelta(months=1)
+odt = datetime.now() + td
+
+
+def getScraper(venue):
+ try:
+ scraper, created = Scraper.objects.get_or_create(
+ name=venue.name,
+ website=venue.website,
+ calendar = Calendar.objects.get(id=1),
+ items = 0,
+ new_items = 0,
+ last_ran = datetime.now(),
+ )
+ except Exception as e:
+ print(e)
+ scraper = Scraper.objects.get(name=venue.name)
+ num_of_events = DSEvent.objects.filter(scraper=scraper)
+ scraper.items = len(num_of_events)
+ scraper.save()
+ print("Scraper: ", scraper)
+ pass
+ return scraper, scraper.items
+
+def updateScraper(scraper, item_count_start):
+ num_of_events = DSEvent.objects.filter(scraper=scraper)
+ scraper.items = len(num_of_events)
+ scraper.new_items = len(num_of_events) - item_count_start
+ scraper.last_ran = datetime.now()
+ scraper.save()
+ return
+
+def getSource(browser, link):
+ browser.get(link)
+ sleep(5)
+ ps = html.fromstring(browser.page_source)
+ return ps
+
+def getBrowser(run_env):
+ if run_env == 'dev':
+ print("Chrome is a go!")
+ # chromeOptions = wd.ChromeOptions()
+ # chromeOptions.binary_location = "/Application/Google\ Chrome.app"
+ # chromeDriver = "/opt/homebrew/bin/chromedriver"
+ # br = wd.Chrome(chromeDriver, options=chromeOptions)
+ br = wd.Chrome()
+ return br
+ elif run_env == "def":
+ print("Firefox go vroom")
+ br = wd.Firefox()
+ return br
+ elif run_env == "prod":
+ start_cmd = "Xvfb :91 && export DISPLAY=:91 &"
+ xvfb = Xvfb()
+ os.system(start_cmd)
+ xvfb.start()
+ print("started Xvfb")
+ br = wd.Firefox()
+ return br
+ else:
+ print("Failed", sys.argv, arg1)
+ quit()
+
+def createBasicURL(site_url):
+ month = datetime.now().month
+ next_month = odt.month
+ year = datetime.now().year
+ links = [
+ site_url + str(month) + "/" + str(year),
+ site_url + str(next_month) + "/" + str(year)
+ ]
+ return links
+
+def createURLNoZero(site_url):
+ month = datetime.now().month
+ next_month = odt.month
+ year = datetime.now().year
+ links = [
+ site_url + str(year) + "/" + str(month),
+ ]
+ if next_month == "1":
+ links.append(site_url + str(int(year)+1) + "/" + str(next_month))
+ else:
+ links.append(site_url + str(year) + "/" + str(next_month))
+ return links
+
+def createURL(site_url):
+ month = datetime.now().month
+ if month < 10:
+ month = "0" + str(month)
+ else:
+ month = str(month)
+ next_month = odt.month
+ if next_month < 10:
+ next_month = "0" + str(next_month)
+ else:
+ next_month = str(next_month)
+ year = datetime.now().year
+ links = [
+ site_url + str(year) + "/" + month,
+ ]
+ if next_month == "01":
+ links.append(site_url + str(int(year)+1) + "/" + next_month)
+ else:
+ links.append(site_url + str(year) + "/" + next_month)
+ return links
+
+def createDashURL(site_url):
+ month = datetime.now().month
+ if month < 10:
+ month = "0" + str(month)
+ else:
+ month = str(month)
+ next_month = odt.month
+ if next_month < 10:
+ next_month = "0" + str(next_month)
+ else:
+ next_month = str(next_month)
+ year = datetime.now().year
+ links = [
+ site_url + month + "-" + str(year),
+ site_url + next_month + "-" + str(year)
+ ]
+ print(links)
+ return links
+
+def createBasicEvent(event, event_type, venue):
+ new_event, created = DSEvent.objects.update_or_create(
+ event_type = event_type,
+ show_title = event['title'],
+ show_link = event['link'],
+ show_date = event['dateStamp'],
+ show_day = event['dateStamp'],
+ calendar = event['calendar'],
+ scraper = event['scraper'],
+ venue = venue
+ )
+ return new_event, created
+
+def createBasiciCalEvent(event, event_type, venue):
+ print("starting create")
+ ppr(event)
+ new_event, created = DSEvent.objects.update_or_create(
+ event_type = event_type,
+ show_title = event['title'][0],
+ show_link = event['link'],
+ show_date = datetime.strptime(str(event['dateStamp'][0]), '%Y-%m-%d %H:%M:%S'),
+ show_day = datetime.strptime(str(event['dateStamp'][0]), '%Y-%m-%d %H:%M:%S'),
+ calendar = event['calendar'],
+ scraper = event['scraper'],
+ venue = venue
+ )
+ print("created")
+ return new_event, created
+
+def createDetailedEvent(event, event_type, venue, scraper):
+ new_event, created = DSEvent.objects.update_or_create(
+ event_type = event_type,
+ show_title = event["show_title"],
+ show_link = event["link"],
+ show_date = event["dateStamp"],
+ show_day = event["dateStamp"],
+ guests = " ".join(event["guests"]),
+ more_details = event["details"],
+ calendar = event['calendar'],
+ scraper = event['scraper'],
+ venue = venue
+ )
+ return new_event, created
+
+def createBasicArticle(article, event_type, organization):
+ new_article, created = Promo.objects.update_or_create(
+ promo_type = 'Ja',
+ title = article['title'],
+ target_link = article['link'],
+ published = True,
+ organization = organization
+ )
+ return new_article, created
+
+def getiCalEvents(gcal, scraper):
+ for component in gcal.walk():
+ event = {}
+ event['scraper'] = scraper
+ event['calendar'] = scraper.calendar
+ event['strSummary'] = f"{(component.get('SUMMARY'))}"
+ event['strDesc'] = component.get('DESCRIPTION')
+ event['strLocation'] = component.get('LOCATION')
+ event['dateStart'] = component.get('DTSTART')
+ event['dateStamp'] = component.get('DTSTAMP')
+ if event['dateStamp'] is not None:
+ event['dateStamp'] = event['dateStamp'].dt
+ if event['dateStart'] is not None:
+ try:
+ event['dateStart'] = event['dateStart'].dt
+ except Exception as e:
+ event['dateStart'] = event['dateStart'].dt
+
+ event['dateEnd'] = (component.get('DTEND'))
+ if event['dateEnd'] is not None:
+ event['dateEnd'] = event['dateEnd'].dt
+ else:
+ event['dateEnd'] = event['dateStart']
+ if event['strSummary'] != 'None':
+ event['details'] = {
+ "description" : event['strDesc'],
+ "Location" : event['strLocation'],
+ }
+ now_now = datetime.today().date()
+ try:
+ print("1Event: ", event['dateStart'])
+ if event['dateStart'] > now_now:
+ new_date = event['dateStart']-td
+ new_event = {}
+ new_event['scraper'] = scraper
+ new_event['calendar'] = scraper.calendar
+ new_event['title'] = event['strSummary'],
+ new_event['date'] = str(new_date),
+ new_event['dateStamp'] = str(new_date),
+ new_event['link'] = venue.website
+ createBasiciCalEvent(new_event, "Mu", venue)
+ except Exception as e:
+ try:
+ event['dateStart'] = event['dateStart'].date()
+ print("1Event: ", event['dateStart'])
+ if event['dateStart'] > now_now:
+ new_date = event['dateStart']-td
+ print("The new Date: ", new_date, type(new_date))
+ new_event = {}
+ new_event['scraper'] = scraper
+ new_event['calendar'] = scraper.calendar
+ new_event['title'] = event['strSummary'],
+ new_event['date'] = new_date,
+ new_event['dateStamp'] = new_date,
+ new_event['link'] = venue.website
+ createBasiciCalEvent(new_event, "Mu", venue)
+ except Exception as e:
+ print("The Error: ", e)
+ pass
\ No newline at end of file
diff --git a/events/fixtures/organizations.json b/events/fixtures/organizations.json
new file mode 100644
index 0000000..504082b
--- /dev/null
+++ b/events/fixtures/organizations.json
@@ -0,0 +1,1118 @@
+[
+{
+ "model": "events.organization",
+ "pk": 1,
+ "fields": {
+ "name": "DreamFreely",
+ "website": "https://www.dreamfreely.org",
+ "membership": "0",
+ "is_venue": false,
+ "is_501c": false,
+ "contact_name": "Canin Carlos",
+ "contact_email": "canin@dreamfreely.org",
+ "phone_number": "6124054535",
+ "address": null,
+ "city": "St Paul",
+ "state": null,
+ "zip_code": null
+ }
+},
+{
+ "model": "events.organization",
+ "pk": 2,
+ "fields": {
+ "name": "Acme Comedy Club",
+ "website": "https://acmecomedycompany.com/the-club/calendar/",
+ "membership": "0",
+ "is_venue": false,
+ "is_501c": false,
+ "contact_name": null,
+ "contact_email": null,
+ "phone_number": null,
+ "address": null,
+ "city": "Minneapolis",
+ "state": null,
+ "zip_code": null
+ }
+},
+{
+ "model": "events.organization",
+ "pk": 3,
+ "fields": {
+ "name": "Amsterdam Bar & Hall",
+ "website": "https://www.amsterdambarandhall.com/events-new/",
+ "membership": "0",
+ "is_venue": true,
+ "is_501c": false,
+ "contact_name": null,
+ "contact_email": null,
+ "phone_number": null,
+ "address": null,
+ "city": "St. Paul",
+ "state": null,
+ "zip_code": null
+ }
+},
+{
+ "model": "events.organization",
+ "pk": 4,
+ "fields": {
+ "name": "The Cedar Cultural Center",
+ "website": "https://www.thecedar.org/listing",
+ "membership": "0",
+ "is_venue": true,
+ "is_501c": false,
+ "contact_name": null,
+ "contact_email": null,
+ "phone_number": null,
+ "address": null,
+ "city": "Minneapolis",
+ "state": null,
+ "zip_code": null
+ }
+},
+{
+ "model": "events.organization",
+ "pk": 5,
+ "fields": {
+ "name": "Club 331",
+ "website": "https://331club.com",
+ "membership": "0",
+ "is_venue": true,
+ "is_501c": false,
+ "contact_name": null,
+ "contact_email": null,
+ "phone_number": null,
+ "address": null,
+ "city": "Minneapolis",
+ "state": null,
+ "zip_code": null
+ }
+},
+{
+ "model": "events.organization",
+ "pk": 6,
+ "fields": {
+ "name": "Eastside Freedom Library",
+ "website": "https://eastsidefreedomlibrary.org/events/",
+ "membership": "0",
+ "is_venue": false,
+ "is_501c": false,
+ "contact_name": null,
+ "contact_email": null,
+ "phone_number": null,
+ "address": null,
+ "city": "Minneapolis",
+ "state": null,
+ "zip_code": null
+ }
+},
+{
+ "model": "events.organization",
+ "pk": 7,
+ "fields": {
+ "name": "Ginkgo Coffee",
+ "website": "https://ginkgocoffee.com/events/",
+ "membership": "0",
+ "is_venue": false,
+ "is_501c": false,
+ "contact_name": null,
+ "contact_email": null,
+ "phone_number": null,
+ "address": null,
+ "city": "Saint Paul",
+ "state": null,
+ "zip_code": null
+ }
+},
+{
+ "model": "events.organization",
+ "pk": 8,
+ "fields": {
+ "name": "Green Room",
+ "website": "https://www.greenroommn.com/events",
+ "membership": "0",
+ "is_venue": true,
+ "is_501c": false,
+ "contact_name": null,
+ "contact_email": null,
+ "phone_number": null,
+ "address": null,
+ "city": "Minneapolis",
+ "state": null,
+ "zip_code": null
+ }
+},
+{
+ "model": "events.organization",
+ "pk": 9,
+ "fields": {
+ "name": "Chicago Ave Fire Arts Center",
+ "website": "https://www.cafac.org/classes",
+ "membership": "0",
+ "is_venue": false,
+ "is_501c": false,
+ "contact_name": null,
+ "contact_email": null,
+ "phone_number": null,
+ "address": null,
+ "city": "Minneapolis",
+ "state": null,
+ "zip_code": null
+ }
+},
+{
+ "model": "events.organization",
+ "pk": 10,
+ "fields": {
+ "name": "Bunkers",
+ "website": "https://bunkersmusic.com/calendar/",
+ "membership": "0",
+ "is_venue": false,
+ "is_501c": false,
+ "contact_name": null,
+ "contact_email": null,
+ "phone_number": null,
+ "address": null,
+ "city": "Minneapolis",
+ "state": null,
+ "zip_code": null
+ }
+},
+{
+ "model": "events.organization",
+ "pk": 11,
+ "fields": {
+ "name": "Center for Performing Arts",
+ "website": "https://www.cfpampls.com/events",
+ "membership": "0",
+ "is_venue": false,
+ "is_501c": false,
+ "contact_name": null,
+ "contact_email": null,
+ "phone_number": null,
+ "address": null,
+ "city": "Minneapolis",
+ "state": null,
+ "zip_code": null
+ }
+},
+{
+ "model": "events.organization",
+ "pk": 12,
+ "fields": {
+ "name": "Eagles #34",
+ "website": "https://www.minneapoliseagles34.org/events-entertainment.html",
+ "membership": "0",
+ "is_venue": false,
+ "is_501c": false,
+ "contact_name": null,
+ "contact_email": null,
+ "phone_number": null,
+ "address": null,
+ "city": "Minneapolis",
+ "state": null,
+ "zip_code": null
+ }
+},
+{
+ "model": "events.organization",
+ "pk": 13,
+ "fields": {
+ "name": "KJ's Hideaway",
+ "website": "",
+ "membership": "0",
+ "is_venue": false,
+ "is_501c": false,
+ "contact_name": null,
+ "contact_email": null,
+ "phone_number": null,
+ "address": null,
+ "city": "Minneapolis",
+ "state": null,
+ "zip_code": null
+ }
+},
+{
+ "model": "events.organization",
+ "pk": 14,
+ "fields": {
+ "name": "location",
+ "website": "",
+ "membership": "0",
+ "is_venue": false,
+ "is_501c": false,
+ "contact_name": null,
+ "contact_email": null,
+ "phone_number": null,
+ "address": null,
+ "city": "Minneapolis",
+ "state": null,
+ "zip_code": null
+ }
+},
+{
+ "model": "events.organization",
+ "pk": 15,
+ "fields": {
+ "name": "Sociable Ciderwerks",
+ "website": "https://sociablecider.com/events",
+ "membership": "0",
+ "is_venue": false,
+ "is_501c": false,
+ "contact_name": null,
+ "contact_email": null,
+ "phone_number": null,
+ "address": null,
+ "city": "Minneapolis",
+ "state": null,
+ "zip_code": null
+ }
+},
+{
+ "model": "events.organization",
+ "pk": 16,
+ "fields": {
+ "name": "Terminal Bar",
+ "website": "https://terminalbarmn.com",
+ "membership": "0",
+ "is_venue": false,
+ "is_501c": false,
+ "contact_name": null,
+ "contact_email": null,
+ "phone_number": null,
+ "address": null,
+ "city": "Minneapolis",
+ "state": null,
+ "zip_code": null
+ }
+},
+{
+ "model": "events.organization",
+ "pk": 17,
+ "fields": {
+ "name": "Icehouse",
+ "website": "https://icehouse.turntabletickets.com",
+ "membership": "0",
+ "is_venue": true,
+ "is_501c": false,
+ "contact_name": null,
+ "contact_email": null,
+ "phone_number": null,
+ "address": null,
+ "city": "Minneapolis",
+ "state": null,
+ "zip_code": null
+ }
+},
+{
+ "model": "events.organization",
+ "pk": 18,
+ "fields": {
+ "name": "Magers & Quinn",
+ "website": "https://www.magersandquinn.com/events",
+ "membership": "0",
+ "is_venue": false,
+ "is_501c": false,
+ "contact_name": null,
+ "contact_email": null,
+ "phone_number": null,
+ "address": null,
+ "city": "Minneapolis",
+ "state": null,
+ "zip_code": null
+ }
+},
+{
+ "model": "events.organization",
+ "pk": 19,
+ "fields": {
+ "name": "MN Launch",
+ "website": "ps://mn.gov/launchmn/calendar",
+ "membership": "0",
+ "is_venue": false,
+ "is_501c": false,
+ "contact_name": null,
+ "contact_email": null,
+ "phone_number": null,
+ "address": null,
+ "city": "Minneapolis",
+ "state": null,
+ "zip_code": null
+ }
+},
+{
+ "model": "events.organization",
+ "pk": 20,
+ "fields": {
+ "name": "Red Wing Ignite ",
+ "website": "https://mn.gov/launchmn/calendar",
+ "membership": "0",
+ "is_venue": false,
+ "is_501c": false,
+ "contact_name": null,
+ "contact_email": null,
+ "phone_number": null,
+ "address": null,
+ "city": "Red Wing",
+ "state": null,
+ "zip_code": null
+ }
+},
+{
+ "model": "events.organization",
+ "pk": 21,
+ "fields": {
+ "name": "Guthrie Theater ",
+ "website": "https://mn.gov/launchmn/calendar",
+ "membership": "0",
+ "is_venue": false,
+ "is_501c": false,
+ "contact_name": null,
+ "contact_email": null,
+ "phone_number": null,
+ "address": null,
+ "city": "Minneapolis",
+ "state": null,
+ "zip_code": null
+ }
+},
+{
+ "model": "events.organization",
+ "pk": 22,
+ "fields": {
+ "name": "Bad Habit Brewing ",
+ "website": "https://mn.gov/launchmn/calendar",
+ "membership": "0",
+ "is_venue": false,
+ "is_501c": false,
+ "contact_name": null,
+ "contact_email": null,
+ "phone_number": null,
+ "address": null,
+ "city": "St. Joseph",
+ "state": null,
+ "zip_code": null
+ }
+},
+{
+ "model": "events.organization",
+ "pk": 23,
+ "fields": {
+ "name": "Wilder Foundation ",
+ "website": "https://mn.gov/launchmn/calendar",
+ "membership": "0",
+ "is_venue": false,
+ "is_501c": false,
+ "contact_name": null,
+ "contact_email": null,
+ "phone_number": null,
+ "address": null,
+ "city": "Saint Paul",
+ "state": null,
+ "zip_code": null
+ }
+},
+{
+ "model": "events.organization",
+ "pk": 24,
+ "fields": {
+ "name": "Pryes Brewing Company ",
+ "website": "https://mn.gov/launchmn/calendar",
+ "membership": "0",
+ "is_venue": false,
+ "is_501c": false,
+ "contact_name": null,
+ "contact_email": null,
+ "phone_number": null,
+ "address": null,
+ "city": "Minneapolis",
+ "state": null,
+ "zip_code": null
+ }
+},
+{
+ "model": "events.organization",
+ "pk": 25,
+ "fields": {
+ "name": "Hybrid ",
+ "website": "https://mn.gov/launchmn/calendar",
+ "membership": "0",
+ "is_venue": false,
+ "is_501c": false,
+ "contact_name": null,
+ "contact_email": null,
+ "phone_number": null,
+ "address": null,
+ "city": "Red Wing",
+ "state": null,
+ "zip_code": null
+ }
+},
+{
+ "model": "events.organization",
+ "pk": 26,
+ "fields": {
+ "name": "Mn House",
+ "website": null,
+ "membership": "0",
+ "is_venue": false,
+ "is_501c": false,
+ "contact_name": null,
+ "contact_email": null,
+ "phone_number": null,
+ "address": null,
+ "city": "St. Paul",
+ "state": null,
+ "zip_code": null
+ }
+},
+{
+ "model": "events.organization",
+ "pk": 27,
+ "fields": {
+ "name": "Mn Senate",
+ "website": null,
+ "membership": "0",
+ "is_venue": false,
+ "is_501c": false,
+ "contact_name": null,
+ "contact_email": null,
+ "phone_number": null,
+ "address": null,
+ "city": "St. Paul",
+ "state": null,
+ "zip_code": null
+ }
+},
+{
+ "model": "events.organization",
+ "pk": 28,
+ "fields": {
+ "name": "Mn Legislature",
+ "website": null,
+ "membership": "0",
+ "is_venue": false,
+ "is_501c": false,
+ "contact_name": null,
+ "contact_email": null,
+ "phone_number": null,
+ "address": null,
+ "city": "St. Paul",
+ "state": null,
+ "zip_code": null
+ }
+},
+{
+ "model": "events.organization",
+ "pk": 29,
+ "fields": {
+ "name": "Public Service Center",
+ "website": null,
+ "membership": "0",
+ "is_venue": false,
+ "is_501c": false,
+ "contact_name": null,
+ "contact_email": null,
+ "phone_number": null,
+ "address": null,
+ "city": "Minneapolis",
+ "state": null,
+ "zip_code": null
+ }
+},
+{
+ "model": "events.organization",
+ "pk": 30,
+ "fields": {
+ "name": "Public Service Building",
+ "website": null,
+ "membership": "0",
+ "is_venue": false,
+ "is_501c": false,
+ "contact_name": null,
+ "contact_email": null,
+ "phone_number": null,
+ "address": null,
+ "city": "Minneapolis",
+ "state": null,
+ "zip_code": null
+ }
+},
+{
+ "model": "events.organization",
+ "pk": 31,
+ "fields": {
+ "name": "Powderhorn Recreation Center - Multipurpose Room",
+ "website": null,
+ "membership": "0",
+ "is_venue": false,
+ "is_501c": false,
+ "contact_name": null,
+ "contact_email": null,
+ "phone_number": null,
+ "address": null,
+ "city": "Minneapolis",
+ "state": null,
+ "zip_code": null
+ }
+},
+{
+ "model": "events.organization",
+ "pk": 32,
+ "fields": {
+ "name": "2nd Floor",
+ "website": null,
+ "membership": "0",
+ "is_venue": false,
+ "is_501c": false,
+ "contact_name": null,
+ "contact_email": null,
+ "phone_number": null,
+ "address": null,
+ "city": "Minneapolis",
+ "state": null,
+ "zip_code": null
+ }
+},
+{
+ "model": "events.organization",
+ "pk": 33,
+ "fields": {
+ "name": "All Office Locations",
+ "website": null,
+ "membership": "0",
+ "is_venue": false,
+ "is_501c": false,
+ "contact_name": null,
+ "contact_email": null,
+ "phone_number": null,
+ "address": null,
+ "city": "Minneapolis",
+ "state": null,
+ "zip_code": null
+ }
+},
+{
+ "model": "events.organization",
+ "pk": 34,
+ "fields": {
+ "name": "Mpls City Hall",
+ "website": null,
+ "membership": "0",
+ "is_venue": false,
+ "is_501c": false,
+ "contact_name": null,
+ "contact_email": null,
+ "phone_number": null,
+ "address": null,
+ "city": "Minneapolis",
+ "state": null,
+ "zip_code": null
+ }
+},
+{
+ "model": "events.organization",
+ "pk": 35,
+ "fields": {
+ "name": "Phillips Community Center",
+ "website": null,
+ "membership": "0",
+ "is_venue": false,
+ "is_501c": false,
+ "contact_name": null,
+ "contact_email": null,
+ "phone_number": null,
+ "address": null,
+ "city": "Minneapolis",
+ "state": null,
+ "zip_code": null
+ }
+},
+{
+ "model": "events.organization",
+ "pk": 36,
+ "fields": {
+ "name": "Farview Park Recreation Center",
+ "website": null,
+ "membership": "0",
+ "is_venue": false,
+ "is_501c": false,
+ "contact_name": null,
+ "contact_email": null,
+ "phone_number": null,
+ "address": null,
+ "city": "Minneapolis",
+ "state": null,
+ "zip_code": null
+ }
+},
+{
+ "model": "events.organization",
+ "pk": 37,
+ "fields": {
+ "name": "Uptown VFW",
+ "website": null,
+ "membership": "0",
+ "is_venue": false,
+ "is_501c": false,
+ "contact_name": null,
+ "contact_email": null,
+ "phone_number": null,
+ "address": null,
+ "city": "Minneapolis",
+ "state": null,
+ "zip_code": null
+ }
+},
+{
+ "model": "events.organization",
+ "pk": 38,
+ "fields": {
+ "name": "Parkway Theater",
+ "website": "https://theparkwaytheater.com",
+ "membership": "0",
+ "is_venue": false,
+ "is_501c": false,
+ "contact_name": null,
+ "contact_email": null,
+ "phone_number": null,
+ "address": null,
+ "city": "Minneapolis",
+ "state": null,
+ "zip_code": null
+ }
+},
+{
+ "model": "events.organization",
+ "pk": 39,
+ "fields": {
+ "name": "Piller Forum",
+ "website": "https://www.pilllar.com/pages/events",
+ "membership": "0",
+ "is_venue": false,
+ "is_501c": false,
+ "contact_name": null,
+ "contact_email": null,
+ "phone_number": null,
+ "address": null,
+ "city": "Minneapolis",
+ "state": null,
+ "zip_code": null
+ }
+},
+{
+ "model": "events.organization",
+ "pk": 41,
+ "fields": {
+ "name": "Somewhere in St Paul",
+ "website": null,
+ "membership": "0",
+ "is_venue": false,
+ "is_501c": false,
+ "contact_name": null,
+ "contact_email": null,
+ "phone_number": null,
+ "address": null,
+ "city": "St. Paul",
+ "state": null,
+ "zip_code": null
+ }
+},
+{
+ "model": "events.organization",
+ "pk": 42,
+ "fields": {
+ "name": "White Squirrel",
+ "website": "https://whitesquirrelbar.com",
+ "membership": "0",
+ "is_venue": false,
+ "is_501c": false,
+ "contact_name": null,
+ "contact_email": null,
+ "phone_number": null,
+ "address": null,
+ "city": "St. Paul",
+ "state": null,
+ "zip_code": null
+ }
+},
+{
+ "model": "events.organization",
+ "pk": 43,
+ "fields": {
+ "name": "Cedar Cultural Center",
+ "website": "https://www.thecedar.org",
+ "membership": "0",
+ "is_venue": true,
+ "is_501c": false,
+ "contact_name": null,
+ "contact_email": null,
+ "phone_number": null,
+ "address": null,
+ "city": "Minneapolis",
+ "state": null,
+ "zip_code": null
+ }
+},
+{
+ "model": "events.organization",
+ "pk": 44,
+ "fields": {
+ "name": "7th St Entry",
+ "website": null,
+ "membership": "0",
+ "is_venue": true,
+ "is_501c": false,
+ "contact_name": null,
+ "contact_email": null,
+ "phone_number": null,
+ "address": null,
+ "city": "Minneapolis",
+ "state": null,
+ "zip_code": null
+ }
+},
+{
+ "model": "events.organization",
+ "pk": 45,
+ "fields": {
+ "name": "Fine Line",
+ "website": null,
+ "membership": "0",
+ "is_venue": true,
+ "is_501c": false,
+ "contact_name": null,
+ "contact_email": null,
+ "phone_number": null,
+ "address": null,
+ "city": "Minneapolis",
+ "state": null,
+ "zip_code": null
+ }
+},
+{
+ "model": "events.organization",
+ "pk": 46,
+ "fields": {
+ "name": "Turf Club",
+ "website": null,
+ "membership": "0",
+ "is_venue": true,
+ "is_501c": false,
+ "contact_name": null,
+ "contact_email": null,
+ "phone_number": null,
+ "address": null,
+ "city": "St. Paul",
+ "state": null,
+ "zip_code": null
+ }
+},
+{
+ "model": "events.organization",
+ "pk": 47,
+ "fields": {
+ "name": "First Avenue",
+ "website": null,
+ "membership": "0",
+ "is_venue": true,
+ "is_501c": false,
+ "contact_name": null,
+ "contact_email": null,
+ "phone_number": null,
+ "address": null,
+ "city": "Minneapolis",
+ "state": null,
+ "zip_code": null
+ }
+},
+{
+ "model": "events.organization",
+ "pk": 48,
+ "fields": {
+ "name": "State Theatre",
+ "website": null,
+ "membership": "0",
+ "is_venue": true,
+ "is_501c": false,
+ "contact_name": null,
+ "contact_email": null,
+ "phone_number": null,
+ "address": null,
+ "city": "Minneapolis",
+ "state": null,
+ "zip_code": null
+ }
+},
+{
+ "model": "events.organization",
+ "pk": 49,
+ "fields": {
+ "name": "The Fitzgerald Theater",
+ "website": null,
+ "membership": "0",
+ "is_venue": true,
+ "is_501c": false,
+ "contact_name": null,
+ "contact_email": null,
+ "phone_number": null,
+ "address": null,
+ "city": "St. Paul",
+ "state": null,
+ "zip_code": null
+ }
+},
+{
+ "model": "events.organization",
+ "pk": 50,
+ "fields": {
+ "name": "Palace Theatre",
+ "website": null,
+ "membership": "0",
+ "is_venue": true,
+ "is_501c": false,
+ "contact_name": null,
+ "contact_email": null,
+ "phone_number": null,
+ "address": null,
+ "city": "Minneapolis",
+ "state": null,
+ "zip_code": null
+ }
+},
+{
+ "model": "events.organization",
+ "pk": 51,
+ "fields": {
+ "name": "Hook & Ladder",
+ "website": "",
+ "membership": "0",
+ "is_venue": true,
+ "is_501c": false,
+ "contact_name": null,
+ "contact_email": null,
+ "phone_number": null,
+ "address": null,
+ "city": "Minneapolis",
+ "state": null,
+ "zip_code": null
+ }
+},
+{
+ "model": "events.organization",
+ "pk": 52,
+ "fields": {
+ "name": "Ordway Concert Hall",
+ "website": null,
+ "membership": "0",
+ "is_venue": false,
+ "is_501c": false,
+ "contact_name": null,
+ "contact_email": null,
+ "phone_number": null,
+ "address": null,
+ "city": "St. Paul",
+ "state": null,
+ "zip_code": null
+ }
+},
+{
+ "model": "events.organization",
+ "pk": 53,
+ "fields": {
+ "name": "Temple Israel",
+ "website": null,
+ "membership": "0",
+ "is_venue": false,
+ "is_501c": false,
+ "contact_name": null,
+ "contact_email": null,
+ "phone_number": null,
+ "address": null,
+ "city": "Minneapolis",
+ "state": null,
+ "zip_code": null
+ }
+},
+{
+ "model": "events.organization",
+ "pk": 54,
+ "fields": {
+ "name": "Ted Mann Concert Hall",
+ "website": null,
+ "membership": "0",
+ "is_venue": false,
+ "is_501c": false,
+ "contact_name": null,
+ "contact_email": null,
+ "phone_number": null,
+ "address": null,
+ "city": "Minneapolis",
+ "state": null,
+ "zip_code": null
+ }
+},
+{
+ "model": "events.organization",
+ "pk": 55,
+ "fields": {
+ "name": "Capri Theater",
+ "website": null,
+ "membership": "0",
+ "is_venue": false,
+ "is_501c": false,
+ "contact_name": null,
+ "contact_email": null,
+ "phone_number": null,
+ "address": null,
+ "city": "Minneapolis",
+ "state": null,
+ "zip_code": null
+ }
+},
+{
+ "model": "events.organization",
+ "pk": 56,
+ "fields": {
+ "name": "Shepherd of the Valley Lutheran Church",
+ "website": null,
+ "membership": "0",
+ "is_venue": false,
+ "is_501c": false,
+ "contact_name": null,
+ "contact_email": null,
+ "phone_number": null,
+ "address": null,
+ "city": "Apple Valley",
+ "state": null,
+ "zip_code": null
+ }
+},
+{
+ "model": "events.organization",
+ "pk": 57,
+ "fields": {
+ "name": "St. Andrew's Lutheran Church",
+ "website": null,
+ "membership": "0",
+ "is_venue": false,
+ "is_501c": false,
+ "contact_name": null,
+ "contact_email": null,
+ "phone_number": null,
+ "address": null,
+ "city": "Mahtomedi",
+ "state": null,
+ "zip_code": null
+ }
+},
+{
+ "model": "events.organization",
+ "pk": 58,
+ "fields": {
+ "name": "Wooddale Church",
+ "website": null,
+ "membership": "0",
+ "is_venue": false,
+ "is_501c": false,
+ "contact_name": null,
+ "contact_email": null,
+ "phone_number": null,
+ "address": null,
+ "city": "Eden Prairie",
+ "state": null,
+ "zip_code": null
+ }
+},
+{
+ "model": "events.organization",
+ "pk": 59,
+ "fields": {
+ "name": "Saint Paul's United Church of Christ",
+ "website": null,
+ "membership": "0",
+ "is_venue": false,
+ "is_501c": false,
+ "contact_name": null,
+ "contact_email": null,
+ "phone_number": null,
+ "address": null,
+ "city": "Summit Avenue",
+ "state": null,
+ "zip_code": null
+ }
+},
+{
+ "model": "events.organization",
+ "pk": 60,
+ "fields": {
+ "name": "MN House",
+ "website": null,
+ "membership": "0",
+ "is_venue": false,
+ "is_501c": false,
+ "contact_name": null,
+ "contact_email": null,
+ "phone_number": null,
+ "address": null,
+ "city": "St. Paul",
+ "state": null,
+ "zip_code": null
+ }
+},
+{
+ "model": "events.organization",
+ "pk": 61,
+ "fields": {
+ "name": "MN Senate",
+ "website": null,
+ "membership": "0",
+ "is_venue": false,
+ "is_501c": false,
+ "contact_name": null,
+ "contact_email": null,
+ "phone_number": null,
+ "address": null,
+ "city": "St. Paul",
+ "state": null,
+ "zip_code": null
+ }
+},
+{
+ "model": "events.organization",
+ "pk": 62,
+ "fields": {
+ "name": "MN Legislature",
+ "website": null,
+ "membership": "0",
+ "is_venue": false,
+ "is_501c": false,
+ "contact_name": null,
+ "contact_email": null,
+ "phone_number": null,
+ "address": null,
+ "city": "St. Paul",
+ "state": null,
+ "zip_code": null
+ }
+},
+{
+ "model": "events.organization",
+ "pk": 63,
+ "fields": {
+ "name": "Franklin Library - Hennepin County Library",
+ "website": null,
+ "membership": "0",
+ "is_venue": false,
+ "is_501c": false,
+ "contact_name": null,
+ "contact_email": null,
+ "phone_number": null,
+ "address": null,
+ "city": "Minneapolis",
+ "state": null,
+ "zip_code": null
+ }
+}
+]
diff --git a/events/fixtures/promo.2.json b/events/fixtures/promo.2.json
new file mode 100644
index 0000000..d9a1e9f
--- /dev/null
+++ b/events/fixtures/promo.2.json
@@ -0,0 +1,452 @@
+[
+{
+ "model": "events.promo",
+ "pk": 1,
+ "fields": {
+ "title": "DreamFreely",
+ "organization": 1,
+ "promo_type": "Jo",
+ "overlay_image": "promo/SOL_Sign.png",
+ "short_text": "And intro to the operation.",
+ "long_text": "Alright, I guess this is it. This is the game, these are the plays.
\r\n\r\nLots of work, for sure; but it's a blessing to help people. Now to continue to expand the support and stability.
",
+ "target_link": "https://www.dreamfreely.org",
+ "notes": "",
+ "published": true
+ }
+},
+{
+ "model": "events.promo",
+ "pk": 2,
+ "fields": {
+ "title": "Comuna Andina",
+ "organization": 1,
+ "promo_type": "Fo",
+ "overlay_image": "promo/pa_cover.jpg",
+ "short_text": "Authentic products from the Andes Mountains and surrounding regions, mochilas, cafe y panella.",
+ "long_text": "These are all products from my travels.
\r\nFrom hand-woven mochilas, to organic mountain farmed coffee and panela and more.
\r\nAll of these products are direct from the producer, while nearly all proceeds are also returned to the producer.
",
+ "target_link": "https://www.comunandina.com",
+ "notes": "",
+ "published": true
+ }
+},
+{
+ "model": "events.promo",
+ "pk": 3,
+ "fields": {
+ "title": "idioke",
+ "organization": 1,
+ "promo_type": "Ev",
+ "overlay_image": "promo/soltoken.png",
+ "short_text": "We're starting with English, but soon you will be able to practice Spanish as well.",
+ "long_text": "We're starting with English, but soon you will be able to practice Spanish as well.We're starting with English, but soon you will be able to practice Spanish as well.We're starting with English, but soon you will be able to practice Spanish as well.",
+ "target_link": "https://www.idioke.com",
+ "notes": "",
+ "published": true
+ }
+},
+{
+ "model": "events.promo",
+ "pk": 4,
+ "fields": {
+ "title": "Manifesting Empathy",
+ "organization": 1,
+ "promo_type": "Fo",
+ "overlay_image": "promo/manifestingempathy.png",
+ "short_text": "Help humans find their roots.",
+ "long_text": "Help humans find their roots.",
+ "target_link": "https://www.manifestingempathy.com",
+ "notes": "",
+ "published": true
+ }
+},
+{
+ "model": "events.promo",
+ "pk": 5,
+ "fields": {
+ "title": "DigiSnaxx LIVE!",
+ "organization": 1,
+ "promo_type": "Re",
+ "overlay_image": "promo/cover.png",
+ "short_text": "@ the Acadia. Every Monday. 4pm.",
+ "long_text": "This is a brave space to converse, relax, listen to music and begin to navigate a path forward. This is going to be a process.",
+ "target_link": "https://canin.dreamfreely.org/digisnaxx/",
+ "notes": "",
+ "published": true
+ }
+},
+{
+ "model": "events.promo",
+ "pk": 6,
+ "fields": {
+ "title": "AI & the Last Question",
+ "organization": 1,
+ "promo_type": "Fo",
+ "overlay_image": "promo/cover.png",
+ "short_text": "A short story by Isaac Asimov",
+ "long_text": "A short story by Isaac AsimovA short story by Isaac AsimovA short story by Isaac Asimov",
+ "target_link": "https://canin.dreamfreely.org/the-last-question/",
+ "notes": "",
+ "published": true
+ }
+},
+{
+ "model": "events.promo",
+ "pk": 7,
+ "fields": {
+ "title": "idioke",
+ "organization": 1,
+ "promo_type": "Ev",
+ "overlay_image": "promo/soltoken.png",
+ "short_text": "We're starting with English, but soon you will be able to practice Spanish as well.",
+ "long_text": "We're starting with English, but soon you will be able to practice Spanish as well.We're starting with English, but soon you will be able to practice Spanish as well.We're starting with English, but soon you will be able to practice Spanish as well.",
+ "target_link": "https://www.idioke.com",
+ "notes": "",
+ "published": true
+ }
+},
+{
+ "model": "events.promo",
+ "pk": 8,
+ "fields": {
+ "title": "AI & the Last Question",
+ "organization": 1,
+ "promo_type": "Re",
+ "overlay_image": "promo/cover.png",
+ "short_text": "A short story by Isaac Asimov",
+ "long_text": "A short story by Isaac AsimovA short story by Isaac AsimovA short story by Isaac Asimov",
+ "target_link": "https://canin.dreamfreely.org/the-last-question/",
+ "notes": "",
+ "published": true
+ }
+},
+{
+ "model": "events.promo",
+ "pk": 9,
+ "fields": {
+ "title": "Comuna Andina",
+ "organization": 1,
+ "promo_type": "Ev",
+ "overlay_image": "promo/pa_cover.jpg",
+ "short_text": "Authentic products from the Andes Mountains and surrounding regions, mochilas, cafe y panella.",
+ "long_text": "These are all products from my travels.
\r\nFrom hand-woven mochilas, to organic mountain farmed coffee and panela and more.
\r\nAll of these products are direct from the producer, while nearly all proceeds are also returned to the producer.
",
+ "target_link": "https://www.comunandina.com",
+ "notes": "",
+ "published": true
+ }
+},
+{
+ "model": "events.promo",
+ "pk": 10,
+ "fields": {
+ "title": "DreamFreely",
+ "organization": 1,
+ "promo_type": "Re",
+ "overlay_image": "promo/SOL_Sign.png",
+ "short_text": "And intro to the operation.",
+ "long_text": "Alright, I guess this is it. This is the game, these are the plays.
\r\n\r\nLots of work, for sure; but it's a blessing to help people. Now to continue to expand the support and stability.
",
+ "target_link": "https://www.dreamfreely.org",
+ "notes": "",
+ "published": true
+ }
+},
+{
+ "model": "events.promo",
+ "pk": 11,
+ "fields": {
+ "title": "Manifesting Empathy",
+ "organization": 1,
+ "promo_type": "Ev",
+ "overlay_image": "promo/manifestingempathy.png",
+ "short_text": "Help humans find their roots.",
+ "long_text": "Help humans find their roots.",
+ "target_link": "https://www.manifestingempathy.com",
+ "notes": "",
+ "published": true
+ }
+},
+{
+ "model": "events.promo",
+ "pk": 12,
+ "fields": {
+ "title": "DigiSnaxx & the DBC",
+ "organization": 1,
+ "promo_type": "Ev",
+ "overlay_image": "promo/cover.png",
+ "short_text": "More info about the project DigiSnaxx.",
+ "long_text": "After seeing the City Pages fall down the drain, followed by the dissolution of the MetroIBA.
\r\nAnywho, it's time for something different, and that's what DigiSnaxx and DreamFreely is all about.
\r\nDigiSnaxx is not trying to replace either of the aforementioned entities; we are rather looking to be an evolution, of sorts.
\r\n
We're not trying to be everything either ...\r\nWe're trying to be an accessible, community-centered, directory.
",
+ "target_link": "https://canin.dreamfreely.org/digisnaxx/",
+ "notes": "",
+ "published": true
+ }
+},
+{
+ "model": "events.promo",
+ "pk": 13,
+ "fields": {
+ "title": "Complimentary Street Harrassment",
+ "organization": 1,
+ "promo_type": "An",
+ "overlay_image": "",
+ "short_text": "It's cultural right?",
+ "long_text": "I learn about the creation of gender in public space through the lens of a PhD student studying pidopo's, in Colombia.\r\n\r\n",
+ "target_link": "https://creators.spotify.com/pod/show/digisnaxx/episodes/Complimentary-Street-Harassment-et9h5d",
+ "notes": "",
+ "published": true
+ }
+},
+{
+ "model": "events.promo",
+ "pk": 14,
+ "fields": {
+ "title": "DigiSnaxx & the DBC",
+ "organization": 1,
+ "promo_type": "Fo",
+ "overlay_image": "promo/cover.png",
+ "short_text": "More info about the project DigiSnaxx.",
+ "long_text": "After seeing the City Pages fall down the drain, followed by the dissolution of the MetroIBA.
\r\nAnywho, it's time for something different, and that's what DigiSnaxx and DreamFreely is all about.
\r\nDigiSnaxx is not trying to replace either of the aforementioned entities; we are rather looking to be an evolution, of sorts.
\r\nWe're not trying to be everything either ...\r\nWe're trying to be an accessible, community-centered, directory.
",
+ "target_link": "https://canin.dreamfreely.org/digisnaxx/",
+ "notes": "",
+ "published": true
+ }
+},
+{
+ "model": "events.promo",
+ "pk": 15,
+ "fields": {
+ "title": "DreamFreely Library",
+ "organization": 1,
+ "promo_type": "Re",
+ "overlay_image": "",
+ "short_text": "It's like having an open notebook ...",
+ "long_text": "It's a work in progress, but you get the idea; and there's still some useful information.",
+ "target_link": "https://library.dreamfreely.org",
+ "notes": "",
+ "published": true
+ }
+},
+{
+ "model": "events.promo",
+ "pk": 16,
+ "fields": {
+ "title": "Talkin' w/ DiViNCi",
+ "organization": 1,
+ "promo_type": "Fo",
+ "overlay_image": "promo/soltoken.png",
+ "short_text": "Canin converses with DiViNCi.",
+ "long_text": "We met a great many number of years ago; before the hills were hills and the trees mere saplings. Haha ... I dunno, but it was definitely a fun conversation.\r\n\r\n",
+ "target_link": "https://creators.spotify.com/pod/show/digisnaxx/episodes/DiViNCi-egm90v",
+ "notes": "",
+ "published": true
+ }
+},
+{
+ "model": "events.promo",
+ "pk": 17,
+ "fields": {
+ "title": "Mpls Stp Mag Calendar",
+ "organization": 1,
+ "promo_type": "Ev",
+ "overlay_image": "",
+ "short_text": "They got a great list of events.",
+ "long_text": "They've got a great collection of events; we just don't have the time/resources to parse them all at present; and so pass the link directly on to you.",
+ "target_link": "https://calendar.mspmag.com/calendars/all-events",
+ "notes": "",
+ "published": true
+ }
+},
+{
+ "model": "events.promo",
+ "pk": 19,
+ "fields": {
+ "title": "Academia Nuts",
+ "organization": 1,
+ "promo_type": "Re",
+ "overlay_image": "promo/SOL_Sign.png",
+ "short_text": "Abstacts coming soon; gotta catch 'em all.",
+ "long_text": "I've always wanted to make academia more accessible, so here's my go at that!\r\n\r\n",
+ "target_link": "https://www.academianuts.net",
+ "notes": "",
+ "published": true
+ }
+},
+{
+ "model": "events.promo",
+ "pk": 20,
+ "fields": {
+ "title": "Talkin' w/ DiViNCi",
+ "organization": 1,
+ "promo_type": "Fo",
+ "overlay_image": "promo/soltoken.png",
+ "short_text": "Canin converses with DiViNCi.",
+ "long_text": "We met a great many number of years ago; before the hills were hills and the trees mere saplings. Haha ... I dunno, but it was definitely a fun conversation.\r\n\r\n",
+ "target_link": "https://creators.spotify.com/pod/show/digisnaxx/episodes/DiViNCi-egm90v",
+ "notes": "",
+ "published": true
+ }
+},
+{
+ "model": "events.promo",
+ "pk": 21,
+ "fields": {
+ "title": "Rebel Coding",
+ "organization": 1,
+ "promo_type": "Re",
+ "overlay_image": "",
+ "short_text": "Enough knowledge to be dangerous.",
+ "long_text": "Just covering the basics, we'll be hosting webinars.
\r\nHTML, CSS, JavaScript & Python.
",
+ "target_link": "https://www.rebelcoding.com",
+ "notes": "",
+ "published": true
+ }
+},
+{
+ "model": "events.promo",
+ "pk": 22,
+ "fields": {
+ "title": "Add a Calendar",
+ "organization": 1,
+ "promo_type": "Re",
+ "overlay_image": "",
+ "short_text": "Got a calendar for us?",
+ "long_text": "",
+ "target_link": "",
+ "notes": "",
+ "published": true
+ }
+},
+{
+ "model": "events.promo",
+ "pk": 23,
+ "fields": {
+ "title": "Add a Calendar",
+ "organization": 1,
+ "promo_type": "Re",
+ "overlay_image": "",
+ "short_text": "Got a calendar for us?",
+ "long_text": "",
+ "target_link": "",
+ "notes": "",
+ "published": true
+ }
+},
+{
+ "model": "events.promo",
+ "pk": 24,
+ "fields": {
+ "title": "Academia Nuts",
+ "organization": 1,
+ "promo_type": "Re",
+ "overlay_image": "promo/SOL_Sign.png",
+ "short_text": "Abstacts coming soon; gotta catch 'em all.",
+ "long_text": "I've always wanted to make academia more accessible, so here's my go at that!\r\n\r\n",
+ "target_link": "https://www.academianuts.net",
+ "notes": "",
+ "published": true
+ }
+},
+{
+ "model": "events.promo",
+ "pk": 25,
+ "fields": {
+ "title": "Rebel Coding",
+ "organization": 1,
+ "promo_type": "Re",
+ "overlay_image": "",
+ "short_text": "Enough knowledge to be dangerous.",
+ "long_text": "Just covering the basics, we'll be hosting webinars.
\r\nHTML, CSS, JavaScript & Python.
",
+ "target_link": "https://www.rebelcoding.com",
+ "notes": "",
+ "published": true
+ }
+},
+{
+ "model": "events.promo",
+ "pk": 26,
+ "fields": {
+ "title": "Comuna Andina",
+ "organization": 1,
+ "promo_type": "Fo",
+ "overlay_image": "promo/pa_cover.jpg",
+ "short_text": "Authentic products from the Andes Mountains and surrounding regions, mochilas, cafe y panella.",
+ "long_text": "These are all products from my travels.
\r\nFrom hand-woven mochilas, to organic mountain farmed coffee and panela and more.
\r\nAll of these products are direct from the producer, while nearly all proceeds are also returned to the producer.
",
+ "target_link": "https://www.comunandina.com",
+ "notes": "",
+ "published": true
+ }
+},
+{
+ "model": "events.promo",
+ "pk": 27,
+ "fields": {
+ "title": "Add a Calendar",
+ "organization": 1,
+ "promo_type": "Re",
+ "overlay_image": "",
+ "short_text": "Got a calendar for us?",
+ "long_text": "",
+ "target_link": "",
+ "notes": "",
+ "published": true
+ }
+},
+{
+ "model": "events.promo",
+ "pk": 28,
+ "fields": {
+ "title": "Complimentary Street Harrassment",
+ "organization": 1,
+ "promo_type": "An",
+ "overlay_image": "",
+ "short_text": "It's cultural right?",
+ "long_text": "I learn about the creation of gender in public space through the lens of a PhD student studying pidopo's, in Colombia.\r\n\r\n",
+ "target_link": "https://creators.spotify.com/pod/show/digisnaxx/episodes/Complimentary-Street-Harassment-et9h5d",
+ "notes": "",
+ "published": true
+ }
+},
+{
+ "model": "events.promo",
+ "pk": 29,
+ "fields": {
+ "title": "Saint Wich Burgers",
+ "organization": 1,
+ "promo_type": "Fo",
+ "overlay_image": "promo/soltoken.png",
+ "short_text": "Serving handcrafted gourmet burgers made with love.",
+ "long_text": "Welcome to Saint Wich Burgers, located on Selby Avenue in Saint Paul, Minnesota, where our love for food and dedication to quality come together in every burger we serve. We don’t believe in shortcuts. Our burgers are made from scratch with premium ingredients, served fresh, and customized to suit your unique tastes.\r\n \r\nFrom our hand-crafted patties to our delicious signature sauces, everything is designed to make each bite something special. Whether you like your burger simple or stacked with all the toppings, we offer a variety of options to satisfy every craving.\r\n \r\nCome see what makes us different. At Saint Wich Burgers, it's all about great burgers, good times, and lasting memories.\r\n \r\nWhether you're in the mood for a simple, classic burger or a sandwich with sides, we’ve got you covered. Enjoy the perfect meal in our inviting space, where you can savor your burger and enjoy time with family and friends.\r\n \r\nOur atmosphere is laid-back, our service is friendly, and our burgers are unforgettable. Stop by today and taste what makes us different!",
+ "target_link": "https://www.stwichburgers.com/",
+ "notes": "",
+ "published": false
+ }
+},
+{
+ "model": "events.promo",
+ "pk": 30,
+ "fields": {
+ "title": "Arepas, Las de Queso",
+ "organization": 1,
+ "promo_type": "Re",
+ "overlay_image": "promo/SOL_Sign.png",
+ "short_text": "If you're lookin' for the tastiest arepa in Medellin.",
+ "long_text": "For those who may travel, check out my friends :)",
+ "target_link": "https://www.dreamfreely.org",
+ "notes": "",
+ "published": false
+ }
+},
+{
+ "model": "events.promo",
+ "pk": 31,
+ "fields": {
+ "title": "Vigs Guitars",
+ "organization": 1,
+ "promo_type": "Re",
+ "overlay_image": "promo/VigGuitarsLogo.sm.jpg",
+ "short_text": "A luthier-owned music shop.",
+ "long_text": "“The Player’s Store” \r\n \r\nWe are an independent, full service, luthier-owned shop serving the working musicians in the Minneapolis/St. Paul metro area since September 2014. Ted Vig’s expert repair is the cornerstone of our business. We specialize in repair and customization, and carry a variety of guitars, basses, mandolins, ukuleles, and accessories.\r\n \r\nWith EXPERT repair, a large stock of parts and interesting, unique and fun instruments, both new and used, you won’t be afraid to come in here, and it’s a big part of the reason that we’ve been coined as “The Players Store.”\r\n \r\nTed Vig has been working full time and building his audience through music stores since 1988. He has a long list of devoted repair clients…this just doesn’t happen overnight! His Custom Vig Handwound Pickups are flying out the door! *SATURDAYS ARE THE BEST DAYS TO COME IN AND TALK TO TED ABOUT THE PICKUPS*\r\n \r\nThis store is Indigenous Female Owned and run by local musicians who SUPPORT local musicians! We have ample street parking in front of the shop and a big parking lot.\r\n \r\nWinner of “Star Tribune’s Readers Choice Best of”\r\nBest Music Instrument Shop\r\n \r\n2021 – SILVER! 2023 – SILVER!\r\n \r\n2022 – GOLD 2024 GOLD!!!!",
+ "target_link": "https://vigguitarshop.com/",
+ "notes": "",
+ "published": false
+ }
+}
+]
diff --git a/events/fixtures/promo.json b/events/fixtures/promo.json
new file mode 100644
index 0000000..3f67599
--- /dev/null
+++ b/events/fixtures/promo.json
@@ -0,0 +1,452 @@
+[
+{
+ "model": "events.promo",
+ "pk": 1,
+ "fields": {
+ "title": "DreamFreely",
+ "organization": 1,
+ "promo_type": "Jo",
+ "overlay_image": "promo/SOL_Sign.png",
+ "short_text": "And intro to the operation.",
+ "long_text": "Alright, I guess this is it. This is the game, these are the plays.
\r\n\r\nLots of work, for sure; but it's a blessing to help people. Now to continue to expand the support and stability.
",
+ "target_link": "https://www.dreamfreely.org",
+ "notes": "",
+ "published": true
+ }
+},
+{
+ "model": "events.promo",
+ "pk": 2,
+ "fields": {
+ "title": "Comuna Andina",
+ "organization": 1,
+ "promo_type": "Fo",
+ "overlay_image": "promo/pa_cover.jpg",
+ "short_text": "Authentic products from the Andes Mountains and surrounding regions, mochilas, cafe y panella.",
+ "long_text": "These are all products from my travels.
\r\nFrom hand-woven mochilas, to organic mountain farmed coffee and panela and more.
\r\nAll of these products are direct from the producer, while nearly all proceeds are also returned to the producer.
",
+ "target_link": "https://www.comunandina.com",
+ "notes": "",
+ "published": true
+ }
+},
+{
+ "model": "events.promo",
+ "pk": 3,
+ "fields": {
+ "title": "idioke",
+ "organization": 1,
+ "promo_type": "Ev",
+ "overlay_image": "promo/soltoken.png",
+ "short_text": "We're starting with English, but soon you will be able to practice Spanish as well.",
+ "long_text": "We're starting with English, but soon you will be able to practice Spanish as well.We're starting with English, but soon you will be able to practice Spanish as well.We're starting with English, but soon you will be able to practice Spanish as well.",
+ "target_link": "https://www.idioke.com",
+ "notes": "",
+ "published": true
+ }
+},
+{
+ "model": "events.promo",
+ "pk": 4,
+ "fields": {
+ "title": "Manifesting Empathy",
+ "organization": 1,
+ "promo_type": "Fo",
+ "overlay_image": "promo/manifestingempathy.png",
+ "short_text": "Help humans find their roots.",
+ "long_text": "Help humans find their roots.",
+ "target_link": "https://www.manifestingempathy.com",
+ "notes": "",
+ "published": true
+ }
+},
+{
+ "model": "events.promo",
+ "pk": 5,
+ "fields": {
+ "title": "AI & the Last Question",
+ "organization": 1,
+ "promo_type": "Fo",
+ "overlay_image": "promo/cover.png",
+ "short_text": "A short story by Isaac Asimov",
+ "long_text": "A short story by Isaac AsimovA short story by Isaac AsimovA short story by Isaac Asimov",
+ "target_link": "https://canin.dreamfreely.org/the-last-question/",
+ "notes": "",
+ "published": true
+ }
+},
+{
+ "model": "events.promo",
+ "pk": 6,
+ "fields": {
+ "title": "AI & the Last Question",
+ "organization": 1,
+ "promo_type": "Fo",
+ "overlay_image": "promo/cover.png",
+ "short_text": "A short story by Isaac Asimov",
+ "long_text": "A short story by Isaac AsimovA short story by Isaac AsimovA short story by Isaac Asimov",
+ "target_link": "https://canin.dreamfreely.org/the-last-question/",
+ "notes": "",
+ "published": true
+ }
+},
+{
+ "model": "events.promo",
+ "pk": 7,
+ "fields": {
+ "title": "idioke",
+ "organization": 1,
+ "promo_type": "Ev",
+ "overlay_image": "promo/soltoken.png",
+ "short_text": "We're starting with English, but soon you will be able to practice Spanish as well.",
+ "long_text": "We're starting with English, but soon you will be able to practice Spanish as well.We're starting with English, but soon you will be able to practice Spanish as well.We're starting with English, but soon you will be able to practice Spanish as well.",
+ "target_link": "https://www.idioke.com",
+ "notes": "",
+ "published": true
+ }
+},
+{
+ "model": "events.promo",
+ "pk": 8,
+ "fields": {
+ "title": "AI & the Last Question",
+ "organization": 1,
+ "promo_type": "Re",
+ "overlay_image": "promo/cover.png",
+ "short_text": "A short story by Isaac Asimov",
+ "long_text": "A short story by Isaac AsimovA short story by Isaac AsimovA short story by Isaac Asimov",
+ "target_link": "https://canin.dreamfreely.org/the-last-question/",
+ "notes": "",
+ "published": true
+ }
+},
+{
+ "model": "events.promo",
+ "pk": 9,
+ "fields": {
+ "title": "Comuna Andina",
+ "organization": 1,
+ "promo_type": "Ev",
+ "overlay_image": "promo/pa_cover.jpg",
+ "short_text": "Authentic products from the Andes Mountains and surrounding regions, mochilas, cafe y panella.",
+ "long_text": "These are all products from my travels.
\r\nFrom hand-woven mochilas, to organic mountain farmed coffee and panela and more.
\r\nAll of these products are direct from the producer, while nearly all proceeds are also returned to the producer.
",
+ "target_link": "https://www.comunandina.com",
+ "notes": "",
+ "published": true
+ }
+},
+{
+ "model": "events.promo",
+ "pk": 10,
+ "fields": {
+ "title": "DreamFreely",
+ "organization": 1,
+ "promo_type": "Re",
+ "overlay_image": "promo/SOL_Sign.png",
+ "short_text": "And intro to the operation.",
+ "long_text": "Alright, I guess this is it. This is the game, these are the plays.
\r\n\r\nLots of work, for sure; but it's a blessing to help people. Now to continue to expand the support and stability.
",
+ "target_link": "https://www.dreamfreely.org",
+ "notes": "",
+ "published": true
+ }
+},
+{
+ "model": "events.promo",
+ "pk": 11,
+ "fields": {
+ "title": "Manifesting Empathy",
+ "organization": 1,
+ "promo_type": "Ev",
+ "overlay_image": "promo/manifestingempathy.png",
+ "short_text": "Help humans find their roots.",
+ "long_text": "Help humans find their roots.",
+ "target_link": "https://www.manifestingempathy.com",
+ "notes": "",
+ "published": true
+ }
+},
+{
+ "model": "events.promo",
+ "pk": 12,
+ "fields": {
+ "title": "DigiSnaxx & the DBC",
+ "organization": 1,
+ "promo_type": "Ev",
+ "overlay_image": "promo/cover.png",
+ "short_text": "More info about the project DigiSnaxx.",
+ "long_text": "After seeing the City Pages fall down the drain, followed by the dissolution of the MetroIBA.
\r\nAnywho, it's time for something different, and that's what DigiSnaxx and DreamFreely is all about.
\r\nDigiSnaxx is not trying to replace either of the aforementioned entities; we are rather looking to be an evolution, of sorts.
\r\nWe're not trying to be everything either ...\r\nWe're trying to be an accessible, community-centered, directory.
",
+ "target_link": "https://canin.dreamfreely.org/digisnaxx/",
+ "notes": "",
+ "published": true
+ }
+},
+{
+ "model": "events.promo",
+ "pk": 13,
+ "fields": {
+ "title": "Complimentary Street Harrassment",
+ "organization": 1,
+ "promo_type": "An",
+ "overlay_image": "",
+ "short_text": "It's cultural right?",
+ "long_text": "I learn about the creation of gender in public space through the lens of a PhD student studying pidopo's, in Colombia.\r\n\r\n",
+ "target_link": "https://creators.spotify.com/pod/show/digisnaxx/episodes/Complimentary-Street-Harassment-et9h5d",
+ "notes": "",
+ "published": true
+ }
+},
+{
+ "model": "events.promo",
+ "pk": 14,
+ "fields": {
+ "title": "DigiSnaxx & the DBC",
+ "organization": 1,
+ "promo_type": "Fo",
+ "overlay_image": "promo/cover.png",
+ "short_text": "More info about the project DigiSnaxx.",
+ "long_text": "After seeing the City Pages fall down the drain, followed by the dissolution of the MetroIBA.
\r\nAnywho, it's time for something different, and that's what DigiSnaxx and DreamFreely is all about.
\r\nDigiSnaxx is not trying to replace either of the aforementioned entities; we are rather looking to be an evolution, of sorts.
\r\nWe're not trying to be everything either ...\r\nWe're trying to be an accessible, community-centered, directory.
",
+ "target_link": "https://canin.dreamfreely.org/digisnaxx/",
+ "notes": "",
+ "published": true
+ }
+},
+{
+ "model": "events.promo",
+ "pk": 15,
+ "fields": {
+ "title": "DreamFreely Library",
+ "organization": 1,
+ "promo_type": "Re",
+ "overlay_image": "",
+ "short_text": "It's like having an open notebook ...",
+ "long_text": "It's a work in progress, but you get the idea; and there's still some useful information.",
+ "target_link": "https://library.dreamfreely.org",
+ "notes": "",
+ "published": true
+ }
+},
+{
+ "model": "events.promo",
+ "pk": 16,
+ "fields": {
+ "title": "Talkin' w/ DiViNCi",
+ "organization": 1,
+ "promo_type": "Fo",
+ "overlay_image": "promo/soltoken.png",
+ "short_text": "Canin converses with DiViNCi.",
+ "long_text": "We met a great many number of years ago; before the hills were hills and the trees mere saplings. Haha ... I dunno, but it was definitely a fun conversation.\r\n\r\n",
+ "target_link": "https://creators.spotify.com/pod/show/digisnaxx/episodes/DiViNCi-egm90v",
+ "notes": "",
+ "published": true
+ }
+},
+{
+ "model": "events.promo",
+ "pk": 17,
+ "fields": {
+ "title": "Mpls Stp Mag Calendar",
+ "organization": 1,
+ "promo_type": "Ev",
+ "overlay_image": "",
+ "short_text": "They got a great list of events.",
+ "long_text": "They've got a great collection of events; we just don't have the time/resources to parse them all at present; and so pass the link directly on to you.",
+ "target_link": "https://calendar.mspmag.com/calendars/all-events",
+ "notes": "",
+ "published": true
+ }
+},
+{
+ "model": "events.promo",
+ "pk": 19,
+ "fields": {
+ "title": "Academia Nuts",
+ "organization": 1,
+ "promo_type": "Re",
+ "overlay_image": "promo/SOL_Sign.png",
+ "short_text": "Abstacts coming soon; gotta catch 'em all.",
+ "long_text": "I've always wanted to make academia more accessible, so here's my go at that!\r\n\r\n",
+ "target_link": "https://www.academianuts.net",
+ "notes": "",
+ "published": true
+ }
+},
+{
+ "model": "events.promo",
+ "pk": 20,
+ "fields": {
+ "title": "Talkin' w/ DiViNCi",
+ "organization": 1,
+ "promo_type": "Fo",
+ "overlay_image": "promo/soltoken.png",
+ "short_text": "Canin converses with DiViNCi.",
+ "long_text": "We met a great many number of years ago; before the hills were hills and the trees mere saplings. Haha ... I dunno, but it was definitely a fun conversation.\r\n\r\n",
+ "target_link": "https://creators.spotify.com/pod/show/digisnaxx/episodes/DiViNCi-egm90v",
+ "notes": "",
+ "published": true
+ }
+},
+{
+ "model": "events.promo",
+ "pk": 21,
+ "fields": {
+ "title": "Rebel Coding",
+ "organization": 1,
+ "promo_type": "Re",
+ "overlay_image": "",
+ "short_text": "Enough knowledge to be dangerous.",
+ "long_text": "Just covering the basics, we'll be hosting webinars.
\r\nHTML, CSS, JavaScript & Python.
",
+ "target_link": "https://www.rebelcoding.com",
+ "notes": "",
+ "published": true
+ }
+},
+{
+ "model": "events.promo",
+ "pk": 22,
+ "fields": {
+ "title": "Add a Calendar",
+ "organization": 1,
+ "promo_type": "Re",
+ "overlay_image": "",
+ "short_text": "Got a calendar for us?",
+ "long_text": "",
+ "target_link": "",
+ "notes": "",
+ "published": true
+ }
+},
+{
+ "model": "events.promo",
+ "pk": 23,
+ "fields": {
+ "title": "Add a Calendar",
+ "organization": 1,
+ "promo_type": "Re",
+ "overlay_image": "",
+ "short_text": "Got a calendar for us?",
+ "long_text": "",
+ "target_link": "",
+ "notes": "",
+ "published": true
+ }
+},
+{
+ "model": "events.promo",
+ "pk": 24,
+ "fields": {
+ "title": "Academia Nuts",
+ "organization": 1,
+ "promo_type": "Re",
+ "overlay_image": "promo/SOL_Sign.png",
+ "short_text": "Abstacts coming soon; gotta catch 'em all.",
+ "long_text": "I've always wanted to make academia more accessible, so here's my go at that!\r\n\r\n",
+ "target_link": "https://www.academianuts.net",
+ "notes": "",
+ "published": true
+ }
+},
+{
+ "model": "events.promo",
+ "pk": 25,
+ "fields": {
+ "title": "Rebel Coding",
+ "organization": 1,
+ "promo_type": "Re",
+ "overlay_image": "",
+ "short_text": "Enough knowledge to be dangerous.",
+ "long_text": "Just covering the basics, we'll be hosting webinars.
\r\nHTML, CSS, JavaScript & Python.
",
+ "target_link": "https://www.rebelcoding.com",
+ "notes": "",
+ "published": true
+ }
+},
+{
+ "model": "events.promo",
+ "pk": 26,
+ "fields": {
+ "title": "Comuna Andina",
+ "organization": 1,
+ "promo_type": "Fo",
+ "overlay_image": "promo/pa_cover.jpg",
+ "short_text": "Authentic products from the Andes Mountains and surrounding regions, mochilas, cafe y panella.",
+ "long_text": "These are all products from my travels.
\r\nFrom hand-woven mochilas, to organic mountain farmed coffee and panela and more.
\r\nAll of these products are direct from the producer, while nearly all proceeds are also returned to the producer.
",
+ "target_link": "https://www.comunandina.com",
+ "notes": "",
+ "published": true
+ }
+},
+{
+ "model": "events.promo",
+ "pk": 27,
+ "fields": {
+ "title": "Add a Calendar",
+ "organization": 1,
+ "promo_type": "Re",
+ "overlay_image": "",
+ "short_text": "Got a calendar for us?",
+ "long_text": "",
+ "target_link": "",
+ "notes": "",
+ "published": true
+ }
+},
+{
+ "model": "events.promo",
+ "pk": 28,
+ "fields": {
+ "title": "Complimentary Street Harrassment",
+ "organization": 1,
+ "promo_type": "An",
+ "overlay_image": "",
+ "short_text": "It's cultural right?",
+ "long_text": "I learn about the creation of gender in public space through the lens of a PhD student studying pidopo's, in Colombia.\r\n\r\n",
+ "target_link": "https://creators.spotify.com/pod/show/digisnaxx/episodes/Complimentary-Street-Harassment-et9h5d",
+ "notes": "",
+ "published": true
+ }
+},
+{
+ "model": "events.promo",
+ "pk": 29,
+ "fields": {
+ "title": "Saint Wich Burgers",
+ "organization": 1,
+ "promo_type": "Fo",
+ "overlay_image": "promo/soltoken.png",
+ "short_text": "Serving handcrafted gourmet burgers made with love.",
+ "long_text": "Welcome to Saint Wich Burgers, located on Selby Avenue in Saint Paul, Minnesota, where our love for food and dedication to quality come together in every burger we serve. We don’t believe in shortcuts. Our burgers are made from scratch with premium ingredients, served fresh, and customized to suit your unique tastes.\r\n \r\nFrom our hand-crafted patties to our delicious signature sauces, everything is designed to make each bite something special. Whether you like your burger simple or stacked with all the toppings, we offer a variety of options to satisfy every craving.\r\n \r\nCome see what makes us different. At Saint Wich Burgers, it's all about great burgers, good times, and lasting memories.\r\n \r\nWhether you're in the mood for a simple, classic burger or a sandwich with sides, we’ve got you covered. Enjoy the perfect meal in our inviting space, where you can savor your burger and enjoy time with family and friends.\r\n \r\nOur atmosphere is laid-back, our service is friendly, and our burgers are unforgettable. Stop by today and taste what makes us different!",
+ "target_link": "https://www.stwichburgers.com/",
+ "notes": "",
+ "published": false
+ }
+},
+{
+ "model": "events.promo",
+ "pk": 30,
+ "fields": {
+ "title": "Arepas, Las de Queso",
+ "organization": 1,
+ "promo_type": "Re",
+ "overlay_image": "promo/SOL_Sign.png",
+ "short_text": "If you're lookin' for the tastiest arepa in Medellin.",
+ "long_text": "For those who may travel, check out my friends :)",
+ "target_link": "https://www.dreamfreely.org",
+ "notes": "",
+ "published": false
+ }
+},
+{
+ "model": "events.promo",
+ "pk": 31,
+ "fields": {
+ "title": "Vigs Guitars",
+ "organization": 1,
+ "promo_type": "Re",
+ "overlay_image": "promo/VigGuitarsLogo.sm.jpg",
+ "short_text": "A luthier-owned music shop.",
+ "long_text": "“The Player’s Store” \r\n \r\nWe are an independent, full service, luthier-owned shop serving the working musicians in the Minneapolis/St. Paul metro area since September 2014. Ted Vig’s expert repair is the cornerstone of our business. We specialize in repair and customization, and carry a variety of guitars, basses, mandolins, ukuleles, and accessories.\r\n \r\nWith EXPERT repair, a large stock of parts and interesting, unique and fun instruments, both new and used, you won’t be afraid to come in here, and it’s a big part of the reason that we’ve been coined as “The Players Store.”\r\n \r\nTed Vig has been working full time and building his audience through music stores since 1988. He has a long list of devoted repair clients…this just doesn’t happen overnight! His Custom Vig Handwound Pickups are flying out the door! *SATURDAYS ARE THE BEST DAYS TO COME IN AND TALK TO TED ABOUT THE PICKUPS*\r\n \r\nThis store is Indigenous Female Owned and run by local musicians who SUPPORT local musicians! We have ample street parking in front of the shop and a big parking lot.\r\n \r\nWinner of “Star Tribune’s Readers Choice Best of”\r\nBest Music Instrument Shop\r\n \r\n2021 – SILVER! 2023 – SILVER!\r\n \r\n2022 – GOLD 2024 GOLD!!!!",
+ "target_link": "https://vigguitarshop.com/",
+ "notes": "",
+ "published": false
+ }
+}
+]
diff --git a/events/fixtures/venues.json b/events/fixtures/venues.json
new file mode 100644
index 0000000..edb1c98
--- /dev/null
+++ b/events/fixtures/venues.json
@@ -0,0 +1 @@
+[{"model": "events.venue", "pk": 1, "fields": {"name": "Acme Comedy Club", "website": "https://acmecomedycompany.com/the-club/calendar/", "phone_number": null, "address": null, "city": "Minneapolis", "state": "Minnesota", "zip_code": null}}, {"model": "events.venue", "pk": 2, "fields": {"name": "Amsterdam Bar & Hall", "website": "https://www.amsterdambarandhall.com/events-new/", "phone_number": null, "address": null, "city": "St. Paul", "state": null, "zip_code": null}}, {"model": "events.venue", "pk": 3, "fields": {"name": "Birchbark Books", "website": "https://birchbarkbooks.com/pages/events", "phone_number": null, "address": null, "city": "Minneapolis", "state": "Minnesota", "zip_code": null}}, {"model": "events.venue", "pk": 4, "fields": {"name": "Cedar Cultural Center", "website": "https://www.thecedar.org/listing", "phone_number": null, "address": null, "city": "Minneapolis", "state": null, "zip_code": null}}, {"model": "events.venue", "pk": 5, "fields": {"name": "331 Club", "website": null, "phone_number": null, "address": null, "city": null, "state": null, "zip_code": null}}, {"model": "events.venue", "pk": 6, "fields": {"name": "Comedy Corner", "website": "https://comedycornerunderground.com/calendar", "phone_number": null, "address": null, "city": "Minneapolis", "state": null, "zip_code": null}}, {"model": "events.venue", "pk": 7, "fields": {"name": "Eastside Freedom Library", "website": "https://eastsidefreedomlibrary.org/events/", "phone_number": null, "address": null, "city": "Minneapolis", "state": null, "zip_code": null}}, {"model": "events.venue", "pk": 30, "fields": {"name": "7th St Entry", "website": null, "phone_number": null, "address": null, "city": null, "state": null, "zip_code": null}}, {"model": "events.venue", "pk": 34, "fields": {"name": "Fine Line", "website": null, "phone_number": null, "address": null, "city": null, "state": null, "zip_code": null}}, {"model": "events.venue", "pk": 35, "fields": {"name": "The Fitzgerald Theater", "website": null, "phone_number": null, "address": null, "city": null, "state": null, "zip_code": null}}, {"model": "events.venue", "pk": 36, "fields": {"name": "Turf Club", "website": null, "phone_number": null, "address": null, "city": null, "state": null, "zip_code": null}}, {"model": "events.venue", "pk": 37, "fields": {"name": "Palace Theatre", "website": null, "phone_number": null, "address": null, "city": null, "state": null, "zip_code": null}}, {"model": "events.venue", "pk": 38, "fields": {"name": "First Avenue", "website": null, "phone_number": null, "address": null, "city": null, "state": null, "zip_code": null}}, {"model": "events.venue", "pk": 39, "fields": {"name": "The Cedar Cultural Center", "website": null, "phone_number": null, "address": null, "city": null, "state": null, "zip_code": null}}, {"model": "events.venue", "pk": 40, "fields": {"name": "Pantages Theatre", "website": null, "phone_number": null, "address": null, "city": null, "state": null, "zip_code": null}}, {"model": "events.venue", "pk": 41, "fields": {"name": "Xcel Energy Center", "website": null, "phone_number": null, "address": null, "city": null, "state": null, "zip_code": null}}, {"model": "events.venue", "pk": 42, "fields": {"name": "State Theatre", "website": null, "phone_number": null, "address": null, "city": null, "state": null, "zip_code": null}}, {"model": "events.venue", "pk": 43, "fields": {"name": "Hook & Ladder", "website": null, "phone_number": null, "address": null, "city": null, "state": null, "zip_code": null}}, {"model": "events.venue", "pk": 44, "fields": {"name": "Magers & Quinn", "website": "https://www.magersandquinn.com/events", "phone_number": null, "address": null, "city": "Minneapolis", "state": null, "zip_code": null}}, {"model": "events.venue", "pk": 45, "fields": {"name": "Uptown VFW", "website": null, "phone_number": null, "address": null, "city": "Minneapolis", "state": null, "zip_code": null}}, {"model": "events.venue", "pk": 46, "fields": {"name": "Palmer's Bar", "website": "https://palmers-bar.com", "phone_number": null, "address": null, "city": "Minneapolis", "state": null, "zip_code": null}}, {"model": "events.venue", "pk": 47, "fields": {"name": "Parkway Theater", "website": "https://theparkwaytheater.com", "phone_number": null, "address": null, "city": "Minneapolis", "state": null, "zip_code": null}}, {"model": "events.venue", "pk": 48, "fields": {"name": "White Squirrel", "website": "https://whitesquirrelbar.com", "phone_number": null, "address": null, "city": "St. Paul", "state": null, "zip_code": null}}]
\ No newline at end of file
diff --git a/events/migrations/0001_initial.py b/events/migrations/0001_initial.py
new file mode 100644
index 0000000..cd583d1
--- /dev/null
+++ b/events/migrations/0001_initial.py
@@ -0,0 +1,42 @@
+# Generated by Django 4.1.7 on 2023-02-28 16:07
+
+import django.core.files.storage
+from django.db import migrations, models
+import django.db.models.deletion
+
+
+class Migration(migrations.Migration):
+
+ initial = True
+
+ dependencies = [
+ ]
+
+ operations = [
+ migrations.CreateModel(
+ name='Venue',
+ fields=[
+ ('id', models.BigAutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
+ ('name', models.CharField(max_length=64)),
+ ('website', models.CharField(max_length=128)),
+ ('phone_number', models.CharField(max_length=200)),
+ ('address', models.CharField(max_length=64)),
+ ('city', models.CharField(max_length=32)),
+ ('state', models.CharField(max_length=16)),
+ ('zip_code', models.CharField(max_length=16)),
+ ],
+ ),
+ migrations.CreateModel(
+ name='Event',
+ fields=[
+ ('id', models.BigAutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
+ ('show_title', models.CharField(max_length=128)),
+ ('show_link', models.URLField()),
+ ('guests', models.CharField(max_length=256)),
+ ('show_date', models.DateTimeField()),
+ ('flyer_img', models.ImageField(upload_to=django.core.files.storage.FileSystemStorage(location='/media/flyers'))),
+ ('more_details', models.JSONField()),
+ ('venue', models.ForeignKey(on_delete=django.db.models.deletion.CASCADE, to='events.venue')),
+ ],
+ ),
+ ]
diff --git a/events/migrations/0002_event_event_type.py b/events/migrations/0002_event_event_type.py
new file mode 100644
index 0000000..4650f5e
--- /dev/null
+++ b/events/migrations/0002_event_event_type.py
@@ -0,0 +1,19 @@
+# Generated by Django 4.1.7 on 2023-03-01 07:10
+
+from django.db import migrations, models
+
+
+class Migration(migrations.Migration):
+
+ dependencies = [
+ ('events', '0001_initial'),
+ ]
+
+ operations = [
+ migrations.AddField(
+ model_name='event',
+ name='event_type',
+ field=models.CharField(default='Mu', max_length=128),
+ preserve_default=False,
+ ),
+ ]
diff --git a/events/migrations/0003_alter_event_options_alter_venue_options_and_more.py b/events/migrations/0003_alter_event_options_alter_venue_options_and_more.py
new file mode 100644
index 0000000..743deed
--- /dev/null
+++ b/events/migrations/0003_alter_event_options_alter_venue_options_and_more.py
@@ -0,0 +1,82 @@
+# Generated by Django 4.1.7 on 2023-03-01 08:13
+
+import django.core.files.storage
+from django.db import migrations, models
+
+
+class Migration(migrations.Migration):
+
+ dependencies = [
+ ('events', '0002_event_event_type'),
+ ]
+
+ operations = [
+ migrations.AlterModelOptions(
+ name='event',
+ options={'ordering': ['show_title'], 'verbose_name_plural': 'Events'},
+ ),
+ migrations.AlterModelOptions(
+ name='venue',
+ options={'ordering': ['name'], 'verbose_name_plural': 'Venues'},
+ ),
+ migrations.AlterField(
+ model_name='event',
+ name='event_type',
+ field=models.CharField(choices=[('Mu', 'Music'), ('Va', 'Visual Art'), ('Gv', 'Government'), ('Ce', 'Civic Engagement'), ('Ed', 'Educational')], default='0', max_length=16),
+ ),
+ migrations.AlterField(
+ model_name='event',
+ name='flyer_img',
+ field=models.ImageField(blank=True, null=True, upload_to=django.core.files.storage.FileSystemStorage(location='/media/flyers')),
+ ),
+ migrations.AlterField(
+ model_name='event',
+ name='guests',
+ field=models.CharField(blank=True, max_length=256, null=True),
+ ),
+ migrations.AlterField(
+ model_name='event',
+ name='more_details',
+ field=models.JSONField(blank=True, null=True),
+ ),
+ migrations.AlterField(
+ model_name='event',
+ name='show_link',
+ field=models.URLField(blank=True, null=True),
+ ),
+ migrations.AlterField(
+ model_name='event',
+ name='show_title',
+ field=models.CharField(blank=True, max_length=128, null=True),
+ ),
+ migrations.AlterField(
+ model_name='venue',
+ name='address',
+ field=models.CharField(blank=True, max_length=64, null=True),
+ ),
+ migrations.AlterField(
+ model_name='venue',
+ name='city',
+ field=models.CharField(blank=True, max_length=32, null=True),
+ ),
+ migrations.AlterField(
+ model_name='venue',
+ name='phone_number',
+ field=models.CharField(blank=True, max_length=200, null=True),
+ ),
+ migrations.AlterField(
+ model_name='venue',
+ name='state',
+ field=models.CharField(blank=True, max_length=16, null=True),
+ ),
+ migrations.AlterField(
+ model_name='venue',
+ name='website',
+ field=models.CharField(blank=True, max_length=128, null=True),
+ ),
+ migrations.AlterField(
+ model_name='venue',
+ name='zip_code',
+ field=models.CharField(blank=True, max_length=16, null=True),
+ ),
+ ]
diff --git a/events/migrations/0004_alter_event_options_event_show_day_and_more.py b/events/migrations/0004_alter_event_options_event_show_day_and_more.py
new file mode 100644
index 0000000..b5086fe
--- /dev/null
+++ b/events/migrations/0004_alter_event_options_event_show_day_and_more.py
@@ -0,0 +1,27 @@
+# Generated by Django 4.1.7 on 2023-03-06 01:45
+
+from django.db import migrations, models
+
+
+class Migration(migrations.Migration):
+
+ dependencies = [
+ ('events', '0003_alter_event_options_alter_venue_options_and_more'),
+ ]
+
+ operations = [
+ migrations.AlterModelOptions(
+ name='event',
+ options={'ordering': ['show_date', 'show_title'], 'verbose_name_plural': 'Events'},
+ ),
+ migrations.AddField(
+ model_name='event',
+ name='show_day',
+ field=models.DateField(blank=True, null=True),
+ ),
+ migrations.AlterField(
+ model_name='event',
+ name='event_type',
+ field=models.CharField(choices=[('Mu', 'Music'), ('Va', 'Visual Art'), ('Gv', 'Government'), ('Ce', 'Civic Engagement'), ('Ed', 'Educational'), ('Co', 'Comedy'), ('Ma', 'Mutual Aid')], default='0', max_length=16),
+ ),
+ ]
diff --git a/events/migrations/0005_event_img_link.py b/events/migrations/0005_event_img_link.py
new file mode 100644
index 0000000..28ff7d2
--- /dev/null
+++ b/events/migrations/0005_event_img_link.py
@@ -0,0 +1,18 @@
+# Generated by Django 4.1.7 on 2023-03-23 03:50
+
+from django.db import migrations, models
+
+
+class Migration(migrations.Migration):
+
+ dependencies = [
+ ('events', '0004_alter_event_options_event_show_day_and_more'),
+ ]
+
+ operations = [
+ migrations.AddField(
+ model_name='event',
+ name='img_link',
+ field=models.CharField(blank=True, max_length=256, null=True),
+ ),
+ ]
diff --git a/events/migrations/0006_alter_event_event_type.py b/events/migrations/0006_alter_event_event_type.py
new file mode 100644
index 0000000..03b41f5
--- /dev/null
+++ b/events/migrations/0006_alter_event_event_type.py
@@ -0,0 +1,18 @@
+# Generated by Django 4.1.7 on 2023-03-25 13:43
+
+from django.db import migrations, models
+
+
+class Migration(migrations.Migration):
+
+ dependencies = [
+ ('events', '0005_event_img_link'),
+ ]
+
+ operations = [
+ migrations.AlterField(
+ model_name='event',
+ name='event_type',
+ field=models.CharField(choices=[('Mu', 'Music'), ('Va', 'Visual Art'), ('Gv', 'Government'), ('Ce', 'Civic Engagement'), ('Ed', 'Educational'), ('Co', 'Comedy'), ('Ma', 'Mutual Aid'), ('Th', 'Theater')], default='0', max_length=16),
+ ),
+ ]
diff --git a/events/migrations/0007_alter_event_event_type_userthrottle_userscope.py b/events/migrations/0007_alter_event_event_type_userthrottle_userscope.py
new file mode 100644
index 0000000..80d2299
--- /dev/null
+++ b/events/migrations/0007_alter_event_event_type_userthrottle_userscope.py
@@ -0,0 +1,39 @@
+# Generated by Django 4.1.7 on 2023-05-07 21:41
+
+from django.conf import settings
+from django.db import migrations, models
+import django.db.models.deletion
+
+
+class Migration(migrations.Migration):
+
+ dependencies = [
+ migrations.swappable_dependency(settings.AUTH_USER_MODEL),
+ ('events', '0006_alter_event_event_type'),
+ ]
+
+ operations = [
+ migrations.AlterField(
+ model_name='event',
+ name='event_type',
+ field=models.CharField(choices=[('Mu', 'Music'), ('Ot', 'Other'), ('Va', 'Visual Art'), ('Gv', 'Government'), ('Ce', 'Civic Engagement'), ('Ed', 'Educational'), ('Co', 'Comedy'), ('Ma', 'Mutual Aid'), ('Th', 'Theater')], default='0', max_length=16),
+ ),
+ migrations.CreateModel(
+ name='UserThrottle',
+ fields=[
+ ('id', models.BigAutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
+ ('scope', models.CharField(choices=[('admin', 'Admin'), ('platinum', 'Platinum'), ('gold', 'Gold'), ('silver', 'Silver'), ('free', 'Free')], max_length=20)),
+ ('calls', models.IntegerField(default=0)),
+ ('limit', models.IntegerField(default=0)),
+ ('user', models.ForeignKey(on_delete=django.db.models.deletion.CASCADE, to=settings.AUTH_USER_MODEL)),
+ ],
+ ),
+ migrations.CreateModel(
+ name='UserScope',
+ fields=[
+ ('id', models.BigAutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
+ ('scope', models.CharField(choices=[('admin', 'Admin'), ('platinum', 'Platinum'), ('gold', 'Gold'), ('silver', 'Silver'), ('free', 'Free')], max_length=20)),
+ ('user', models.ForeignKey(on_delete=django.db.models.deletion.CASCADE, to=settings.AUTH_USER_MODEL)),
+ ],
+ ),
+ ]
diff --git a/events/migrations/0008_organization_alter_event_venue_promo_delete_venue.py b/events/migrations/0008_organization_alter_event_venue_promo_delete_venue.py
new file mode 100644
index 0000000..1f86a6f
--- /dev/null
+++ b/events/migrations/0008_organization_alter_event_venue_promo_delete_venue.py
@@ -0,0 +1,59 @@
+# Generated by Django 5.1.1 on 2024-11-24 06:03
+
+import django.db.models.deletion
+from django.db import migrations, models
+
+
+class Migration(migrations.Migration):
+
+ dependencies = [
+ ('events', '0007_alter_event_event_type_userthrottle_userscope'),
+ ]
+
+ operations = [
+ migrations.CreateModel(
+ name='Organization',
+ fields=[
+ ('id', models.BigAutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
+ ('name', models.CharField(max_length=64)),
+ ('website', models.CharField(blank=True, max_length=128, null=True)),
+ ('is_venue', models.BooleanField(default=False)),
+ ('is_501c', models.BooleanField(default=False)),
+ ('contact_name', models.CharField(blank=True, max_length=64, null=True)),
+ ('contact_email', models.CharField(blank=True, max_length=64, null=True)),
+ ('phone_number', models.CharField(blank=True, max_length=200, null=True)),
+ ('address', models.CharField(blank=True, max_length=64, null=True)),
+ ('city', models.CharField(blank=True, max_length=32, null=True)),
+ ('state', models.CharField(blank=True, max_length=16, null=True)),
+ ('zip_code', models.CharField(blank=True, max_length=16, null=True)),
+ ],
+ options={
+ 'verbose_name_plural': 'Organizations',
+ 'ordering': ['name'],
+ },
+ ),
+ migrations.AlterField(
+ model_name='event',
+ name='venue',
+ field=models.ForeignKey(on_delete=django.db.models.deletion.CASCADE, to='events.organization'),
+ ),
+ migrations.CreateModel(
+ name='Promo',
+ fields=[
+ ('id', models.BigAutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
+ ('title', models.CharField(max_length=64)),
+ ('promo_type', models.CharField(choices=[('Jo', 'Job Opening'), ('Re', 'Retail'), ('Fo', 'Food'), ('Ev', 'Event')], default='0', max_length=16)),
+ ('image', models.ImageField(blank=True, null=True, upload_to='')),
+ ('promo_text', models.TextField(blank=True, null=True)),
+ ('target_link', models.URLField(blank=True, null=True)),
+ ('notes', models.TextField(blank=True, null=True)),
+ ('organization', models.ForeignKey(on_delete=django.db.models.deletion.CASCADE, to='events.organization')),
+ ],
+ options={
+ 'verbose_name_plural': 'Promo',
+ },
+ ),
+ migrations.DeleteModel(
+ name='Venue',
+ ),
+ ]
diff --git a/events/migrations/0009_remove_promo_image_promo_desk_image_and_more.py b/events/migrations/0009_remove_promo_image_promo_desk_image_and_more.py
new file mode 100644
index 0000000..647d5db
--- /dev/null
+++ b/events/migrations/0009_remove_promo_image_promo_desk_image_and_more.py
@@ -0,0 +1,27 @@
+# Generated by Django 5.1.1 on 2024-11-24 08:28
+
+from django.db import migrations, models
+
+
+class Migration(migrations.Migration):
+
+ dependencies = [
+ ('events', '0008_organization_alter_event_venue_promo_delete_venue'),
+ ]
+
+ operations = [
+ migrations.RemoveField(
+ model_name='promo',
+ name='image',
+ ),
+ migrations.AddField(
+ model_name='promo',
+ name='desk_image',
+ field=models.ImageField(blank=True, upload_to='promo/desk'),
+ ),
+ migrations.AddField(
+ model_name='promo',
+ name='mobile_image',
+ field=models.ImageField(blank=True, upload_to='promo/mobile'),
+ ),
+ ]
diff --git a/events/migrations/0010_rename_promo_text_promo_promo_text_short_and_more.py b/events/migrations/0010_rename_promo_text_promo_promo_text_short_and_more.py
new file mode 100644
index 0000000..b3fad92
--- /dev/null
+++ b/events/migrations/0010_rename_promo_text_promo_promo_text_short_and_more.py
@@ -0,0 +1,27 @@
+# Generated by Django 5.1.1 on 2024-12-01 22:45
+
+from django.db import migrations, models
+
+
+class Migration(migrations.Migration):
+
+ dependencies = [
+ ('events', '0009_remove_promo_image_promo_desk_image_and_more'),
+ ]
+
+ operations = [
+ migrations.RenameField(
+ model_name='promo',
+ old_name='promo_text',
+ new_name='promo_text_short',
+ ),
+ migrations.RemoveField(
+ model_name='promo',
+ name='desk_image',
+ ),
+ migrations.AddField(
+ model_name='promo',
+ name='promo_text_long',
+ field=models.TextField(blank=True, max_length=127, null=True),
+ ),
+ ]
diff --git a/events/migrations/0011_rename_promo_text_long_promo_long_text_and_more.py b/events/migrations/0011_rename_promo_text_long_promo_long_text_and_more.py
new file mode 100644
index 0000000..aef3820
--- /dev/null
+++ b/events/migrations/0011_rename_promo_text_long_promo_long_text_and_more.py
@@ -0,0 +1,32 @@
+# Generated by Django 5.1.1 on 2024-12-11 07:07
+
+from django.db import migrations, models
+
+
+class Migration(migrations.Migration):
+
+ dependencies = [
+ ('events', '0010_rename_promo_text_promo_promo_text_short_and_more'),
+ ]
+
+ operations = [
+ migrations.RenameField(
+ model_name='promo',
+ old_name='promo_text_long',
+ new_name='long_text',
+ ),
+ migrations.RenameField(
+ model_name='promo',
+ old_name='promo_text_short',
+ new_name='short_text',
+ ),
+ migrations.RemoveField(
+ model_name='promo',
+ name='mobile_image',
+ ),
+ migrations.AddField(
+ model_name='promo',
+ name='image',
+ field=models.ImageField(blank=True, upload_to='promo'),
+ ),
+ ]
diff --git a/events/migrations/0012_alter_promo_long_text.py b/events/migrations/0012_alter_promo_long_text.py
new file mode 100644
index 0000000..ebba53f
--- /dev/null
+++ b/events/migrations/0012_alter_promo_long_text.py
@@ -0,0 +1,18 @@
+# Generated by Django 5.1.1 on 2024-12-11 07:15
+
+from django.db import migrations, models
+
+
+class Migration(migrations.Migration):
+
+ dependencies = [
+ ('events', '0011_rename_promo_text_long_promo_long_text_and_more'),
+ ]
+
+ operations = [
+ migrations.AlterField(
+ model_name='promo',
+ name='long_text',
+ field=models.TextField(blank=True, null=True),
+ ),
+ ]
diff --git a/events/migrations/0013_alter_organization_unique_together.py b/events/migrations/0013_alter_organization_unique_together.py
new file mode 100644
index 0000000..62984fc
--- /dev/null
+++ b/events/migrations/0013_alter_organization_unique_together.py
@@ -0,0 +1,17 @@
+# Generated by Django 5.1.1 on 2025-01-19 18:50
+
+from django.db import migrations
+
+
+class Migration(migrations.Migration):
+
+ dependencies = [
+ ('events', '0012_alter_promo_long_text'),
+ ]
+
+ operations = [
+ migrations.AlterUniqueTogether(
+ name='organization',
+ unique_together={('name', 'is_venue')},
+ ),
+ ]
diff --git a/events/migrations/0014_promo_published.py b/events/migrations/0014_promo_published.py
new file mode 100644
index 0000000..5bfdb03
--- /dev/null
+++ b/events/migrations/0014_promo_published.py
@@ -0,0 +1,18 @@
+# Generated by Django 5.1.1 on 2025-02-11 19:38
+
+from django.db import migrations, models
+
+
+class Migration(migrations.Migration):
+
+ dependencies = [
+ ('events', '0013_alter_organization_unique_together'),
+ ]
+
+ operations = [
+ migrations.AddField(
+ model_name='promo',
+ name='published',
+ field=models.BooleanField(default=False),
+ ),
+ ]
diff --git a/events/migrations/0015_remove_userthrottle_user_organization_membership_and_more.py b/events/migrations/0015_remove_userthrottle_user_organization_membership_and_more.py
new file mode 100644
index 0000000..eb8f266
--- /dev/null
+++ b/events/migrations/0015_remove_userthrottle_user_organization_membership_and_more.py
@@ -0,0 +1,33 @@
+# Generated by Django 5.1.1 on 2025-02-12 01:39
+
+from django.db import migrations, models
+
+
+class Migration(migrations.Migration):
+
+ dependencies = [
+ ('events', '0014_promo_published'),
+ ]
+
+ operations = [
+ migrations.RemoveField(
+ model_name='userthrottle',
+ name='user',
+ ),
+ migrations.AddField(
+ model_name='organization',
+ name='membership',
+ field=models.CharField(choices=[('Nm', 'Non-Member'), ('Na', 'Nano Member'), ('Mm', 'Micro Member'), ('Sm', 'Small Business Member'), ('Lb', 'Local Business Member'), ('Rb', 'Regional Business Member')], default='0', max_length=24),
+ ),
+ migrations.AlterField(
+ model_name='promo',
+ name='promo_type',
+ field=models.CharField(choices=[('Jo', 'Job Opening'), ('Re', 'Retail'), ('Fo', 'Food'), ('Ev', 'Event'), ('An', 'Academia Nuts'), ('Su', 'Survey Questions')], default='0', max_length=16),
+ ),
+ migrations.DeleteModel(
+ name='UserScope',
+ ),
+ migrations.DeleteModel(
+ name='UserThrottle',
+ ),
+ ]
diff --git a/events/migrations/0016_alter_promo_options_promo_art_image_promo_embed_link_and_more.py b/events/migrations/0016_alter_promo_options_promo_art_image_promo_embed_link_and_more.py
new file mode 100644
index 0000000..b0b8449
--- /dev/null
+++ b/events/migrations/0016_alter_promo_options_promo_art_image_promo_embed_link_and_more.py
@@ -0,0 +1,32 @@
+# Generated by Django 5.1.1 on 2025-02-25 01:27
+
+from django.db import migrations, models
+
+
+class Migration(migrations.Migration):
+
+ dependencies = [
+ ('events', '0015_remove_userthrottle_user_organization_membership_and_more'),
+ ]
+
+ operations = [
+ migrations.AlterModelOptions(
+ name='promo',
+ options={'ordering': ['published', 'organization', 'title'], 'verbose_name_plural': 'Promo'},
+ ),
+ migrations.AddField(
+ model_name='promo',
+ name='art_image',
+ field=models.ImageField(blank=True, upload_to='art'),
+ ),
+ migrations.AddField(
+ model_name='promo',
+ name='embed_link',
+ field=models.CharField(blank=True, max_length=127, null=True),
+ ),
+ migrations.AlterField(
+ model_name='promo',
+ name='promo_type',
+ field=models.CharField(choices=[('Jo', 'Job Opening'), ('Re', 'Retail'), ('Fo', 'Food'), ('Ev', 'Event'), ('Ma', 'Mutual Aid'), ('Ja', 'Journal Article'), ('Sp', 'Startup Pitch'), ('Ar', 'Art'), ('An', 'Academia Nuts'), ('Su', 'Survey Questions')], default='0', max_length=16),
+ ),
+ ]
diff --git a/events/migrations/0017_remove_promo_art_image_remove_promo_image_and_more.py b/events/migrations/0017_remove_promo_art_image_remove_promo_image_and_more.py
new file mode 100644
index 0000000..af07057
--- /dev/null
+++ b/events/migrations/0017_remove_promo_art_image_remove_promo_image_and_more.py
@@ -0,0 +1,70 @@
+# Generated by Django 5.1.1 on 2025-02-28 00:37
+
+from django.db import migrations, models
+
+
+class Migration(migrations.Migration):
+
+ dependencies = [
+ ('events', '0016_alter_promo_options_promo_art_image_promo_embed_link_and_more'),
+ ]
+
+ operations = [
+ migrations.RemoveField(
+ model_name='promo',
+ name='art_image',
+ ),
+ migrations.RemoveField(
+ model_name='promo',
+ name='image',
+ ),
+ migrations.AddField(
+ model_name='organization',
+ name='ein',
+ field=models.CharField(blank=True, max_length=16, null=True),
+ ),
+ migrations.AddField(
+ model_name='organization',
+ name='long_desc',
+ field=models.TextField(blank=True, null=True),
+ ),
+ migrations.AddField(
+ model_name='organization',
+ name='org_type',
+ field=models.CharField(choices=[('Fo', 'Food'), ('Re', 'Retail'), ('Se', 'Service'), ('Ud', 'Undefined')], default='3', max_length=24),
+ ),
+ migrations.AddField(
+ model_name='organization',
+ name='short_desc',
+ field=models.CharField(blank=True, max_length=63, null=True),
+ ),
+ migrations.AddField(
+ model_name='organization',
+ name='stripe_email',
+ field=models.CharField(blank=True, max_length=64, null=True),
+ ),
+ migrations.AddField(
+ model_name='promo',
+ name='classified_image',
+ field=models.ImageField(blank=True, upload_to='classifieds'),
+ ),
+ migrations.AddField(
+ model_name='promo',
+ name='overlay_image',
+ field=models.ImageField(blank=True, upload_to='overlays'),
+ ),
+ migrations.AlterField(
+ model_name='event',
+ name='event_type',
+ field=models.CharField(choices=[('Ot', 'Other'), ('Mu', 'Music'), ('Va', 'Visual Art'), ('Gv', 'Government'), ('Ce', 'Civic Engagement'), ('Ed', 'Educational'), ('Ma', 'Mutual Aid'), ('Th', 'Theater'), ('Co', 'Comedy')], default='0', max_length=16),
+ ),
+ migrations.AlterField(
+ model_name='promo',
+ name='promo_type',
+ field=models.CharField(choices=[('Ar', 'Art'), ('Fo', 'Food'), ('Ev', 'Event'), ('Re', 'Retail'), ('Ma', 'Mutual Aid'), ('Ca', 'Classifieds'), ('Jo', 'Job Opening'), ('Sp', 'Startup Pitch'), ('An', 'Academia Nuts'), ('Ja', 'Journal Article'), ('Su', 'Survey Questions')], default='0', max_length=16),
+ ),
+ migrations.AlterUniqueTogether(
+ name='event',
+ unique_together={('show_title', 'show_date', 'venue')},
+ ),
+ ]
diff --git a/events/migrations/0018_scraper_event_scraper.py b/events/migrations/0018_scraper_event_scraper.py
new file mode 100644
index 0000000..5528e12
--- /dev/null
+++ b/events/migrations/0018_scraper_event_scraper.py
@@ -0,0 +1,33 @@
+# Generated by Django 5.1.1 on 2025-02-28 01:07
+
+import django.db.models.deletion
+from django.db import migrations, models
+
+
+class Migration(migrations.Migration):
+
+ dependencies = [
+ ('events', '0017_remove_promo_art_image_remove_promo_image_and_more'),
+ ]
+
+ operations = [
+ migrations.CreateModel(
+ name='Scraper',
+ fields=[
+ ('id', models.BigAutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
+ ('name', models.CharField(max_length=64)),
+ ('items', models.IntegerField()),
+ ('last_run', models.DateTimeField()),
+ ],
+ options={
+ 'verbose_name_plural': 'Scrapers',
+ 'ordering': ['name'],
+ 'unique_together': {('name',)},
+ },
+ ),
+ migrations.AddField(
+ model_name='event',
+ name='scraper',
+ field=models.ForeignKey(null=True, on_delete=django.db.models.deletion.CASCADE, to='events.scraper'),
+ ),
+ ]
diff --git a/events/migrations/0019_scraper_website.py b/events/migrations/0019_scraper_website.py
new file mode 100644
index 0000000..4364328
--- /dev/null
+++ b/events/migrations/0019_scraper_website.py
@@ -0,0 +1,18 @@
+# Generated by Django 5.1.1 on 2025-02-28 01:09
+
+from django.db import migrations, models
+
+
+class Migration(migrations.Migration):
+
+ dependencies = [
+ ('events', '0018_scraper_event_scraper'),
+ ]
+
+ operations = [
+ migrations.AddField(
+ model_name='scraper',
+ name='website',
+ field=models.CharField(blank=True, max_length=64, null=True),
+ ),
+ ]
diff --git a/events/migrations/0020_rename_last_run_scraper_last_ran_and_more.py b/events/migrations/0020_rename_last_run_scraper_last_ran_and_more.py
new file mode 100644
index 0000000..23fbd9e
--- /dev/null
+++ b/events/migrations/0020_rename_last_run_scraper_last_ran_and_more.py
@@ -0,0 +1,26 @@
+# Generated by Django 5.1.1 on 2025-03-01 12:37
+
+from django.db import migrations
+
+
+class Migration(migrations.Migration):
+
+ dependencies = [
+ ('events', '0019_scraper_website'),
+ ]
+
+ operations = [
+ migrations.RenameField(
+ model_name='scraper',
+ old_name='last_run',
+ new_name='last_ran',
+ ),
+ migrations.AlterUniqueTogether(
+ name='event',
+ unique_together=set(),
+ ),
+ migrations.AlterUniqueTogether(
+ name='organization',
+ unique_together=set(),
+ ),
+ ]
diff --git a/events/migrations/0021_alter_scraper_items_alter_scraper_last_ran.py b/events/migrations/0021_alter_scraper_items_alter_scraper_last_ran.py
new file mode 100644
index 0000000..1875a84
--- /dev/null
+++ b/events/migrations/0021_alter_scraper_items_alter_scraper_last_ran.py
@@ -0,0 +1,23 @@
+# Generated by Django 5.1.1 on 2025-03-01 12:38
+
+from django.db import migrations, models
+
+
+class Migration(migrations.Migration):
+
+ dependencies = [
+ ('events', '0020_rename_last_run_scraper_last_ran_and_more'),
+ ]
+
+ operations = [
+ migrations.AlterField(
+ model_name='scraper',
+ name='items',
+ field=models.IntegerField(blank=True, null=True),
+ ),
+ migrations.AlterField(
+ model_name='scraper',
+ name='last_ran',
+ field=models.DateTimeField(blank=True, null=True),
+ ),
+ ]
diff --git a/events/migrations/0022_alter_organization_unique_together_and_more.py b/events/migrations/0022_alter_organization_unique_together_and_more.py
new file mode 100644
index 0000000..557de47
--- /dev/null
+++ b/events/migrations/0022_alter_organization_unique_together_and_more.py
@@ -0,0 +1,21 @@
+# Generated by Django 5.1.1 on 2025-03-02 00:49
+
+from django.db import migrations
+
+
+class Migration(migrations.Migration):
+
+ dependencies = [
+ ('events', '0021_alter_scraper_items_alter_scraper_last_ran'),
+ ]
+
+ operations = [
+ migrations.AlterUniqueTogether(
+ name='organization',
+ unique_together={('name', 'is_venue')},
+ ),
+ migrations.AlterUniqueTogether(
+ name='scraper',
+ unique_together={('name', 'website')},
+ ),
+ ]
diff --git a/events/migrations/0023_alter_scraper_unique_together_alter_scraper_name.py b/events/migrations/0023_alter_scraper_unique_together_alter_scraper_name.py
new file mode 100644
index 0000000..07dcd15
--- /dev/null
+++ b/events/migrations/0023_alter_scraper_unique_together_alter_scraper_name.py
@@ -0,0 +1,22 @@
+# Generated by Django 5.1.1 on 2025-03-02 01:08
+
+from django.db import migrations, models
+
+
+class Migration(migrations.Migration):
+
+ dependencies = [
+ ('events', '0022_alter_organization_unique_together_and_more'),
+ ]
+
+ operations = [
+ migrations.AlterUniqueTogether(
+ name='scraper',
+ unique_together=set(),
+ ),
+ migrations.AlterField(
+ model_name='scraper',
+ name='name',
+ field=models.CharField(max_length=64, unique=True),
+ ),
+ ]
diff --git a/events/migrations/0024_tags_event_tags_organization_tags_promo_tags.py b/events/migrations/0024_tags_event_tags_organization_tags_promo_tags.py
new file mode 100644
index 0000000..46476ec
--- /dev/null
+++ b/events/migrations/0024_tags_event_tags_organization_tags_promo_tags.py
@@ -0,0 +1,36 @@
+# Generated by Django 5.1.1 on 2025-03-21 01:27
+
+from django.db import migrations, models
+
+
+class Migration(migrations.Migration):
+
+ dependencies = [
+ ('events', '0023_alter_scraper_unique_together_alter_scraper_name'),
+ ]
+
+ operations = [
+ migrations.CreateModel(
+ name='Tags',
+ fields=[
+ ('id', models.BigAutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
+ ('name', models.CharField(max_length=31, unique=True)),
+ ('desc', models.TextField(blank=True, null=True)),
+ ],
+ ),
+ migrations.AddField(
+ model_name='event',
+ name='tags',
+ field=models.ManyToManyField(blank=True, null=True, to='events.tags'),
+ ),
+ migrations.AddField(
+ model_name='organization',
+ name='tags',
+ field=models.ManyToManyField(blank=True, null=True, to='events.tags'),
+ ),
+ migrations.AddField(
+ model_name='promo',
+ name='tags',
+ field=models.ManyToManyField(blank=True, null=True, to='events.tags'),
+ ),
+ ]
diff --git a/events/migrations/0025_calendars_organization_calendars.py b/events/migrations/0025_calendars_organization_calendars.py
new file mode 100644
index 0000000..4d04de9
--- /dev/null
+++ b/events/migrations/0025_calendars_organization_calendars.py
@@ -0,0 +1,26 @@
+# Generated by Django 5.1.1 on 2025-10-05 07:56
+
+from django.db import migrations, models
+
+
+class Migration(migrations.Migration):
+
+ dependencies = [
+ ('events', '0024_tags_event_tags_organization_tags_promo_tags'),
+ ]
+
+ operations = [
+ migrations.CreateModel(
+ name='Calendars',
+ fields=[
+ ('id', models.BigAutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
+ ('name', models.CharField(max_length=31, unique=True)),
+ ('desc', models.TextField(blank=True, null=True)),
+ ],
+ ),
+ migrations.AddField(
+ model_name='organization',
+ name='calendars',
+ field=models.ManyToManyField(blank=True, null=True, to='events.calendars'),
+ ),
+ ]
diff --git a/events/migrations/0026_calendar_remove_organization_calendars_and_more.py b/events/migrations/0026_calendar_remove_organization_calendars_and_more.py
new file mode 100644
index 0000000..5645dac
--- /dev/null
+++ b/events/migrations/0026_calendar_remove_organization_calendars_and_more.py
@@ -0,0 +1,151 @@
+# Generated by Django 5.1.1 on 2025-10-11 02:11
+
+import django.db.models.deletion
+from django.db import migrations, models
+
+
+class Migration(migrations.Migration):
+
+ dependencies = [
+ ('events', '0025_calendars_organization_calendars'),
+ ]
+
+ operations = [
+ migrations.CreateModel(
+ name='Calendar',
+ fields=[
+ ('id', models.BigAutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
+ ('name', models.CharField(max_length=31, unique=True)),
+ ('shortcode', models.CharField(max_length=3, unique=True)),
+ ('desc', models.TextField(blank=True, null=True)),
+ ],
+ ),
+ migrations.RemoveField(
+ model_name='organization',
+ name='calendars',
+ ),
+ migrations.AlterField(
+ model_name='event',
+ name='event_type',
+ field=models.CharField(choices=[('Ot', 'Other'), ('Mu', 'Music'), ('Va', 'Visual Art'), ('Gv', 'Government'), ('Ce', 'Civic Engagement'), ('Ed', 'Educational'), ('Ma', 'Mutual Aid'), ('Th', 'Theater'), ('Co', 'Comedy')], default='0', max_length=15),
+ ),
+ migrations.AlterField(
+ model_name='event',
+ name='guests',
+ field=models.CharField(blank=True, max_length=255, null=True),
+ ),
+ migrations.AlterField(
+ model_name='event',
+ name='img_link',
+ field=models.CharField(blank=True, max_length=255, null=True),
+ ),
+ migrations.AlterField(
+ model_name='event',
+ name='show_title',
+ field=models.CharField(blank=True, max_length=127, null=True),
+ ),
+ migrations.AlterField(
+ model_name='organization',
+ name='address',
+ field=models.CharField(blank=True, max_length=63, null=True),
+ ),
+ migrations.AlterField(
+ model_name='organization',
+ name='city',
+ field=models.CharField(blank=True, max_length=31, null=True),
+ ),
+ migrations.AlterField(
+ model_name='organization',
+ name='contact_email',
+ field=models.CharField(blank=True, max_length=63, null=True),
+ ),
+ migrations.AlterField(
+ model_name='organization',
+ name='contact_name',
+ field=models.CharField(blank=True, max_length=63, null=True),
+ ),
+ migrations.AlterField(
+ model_name='organization',
+ name='ein',
+ field=models.CharField(blank=True, max_length=15, null=True),
+ ),
+ migrations.AlterField(
+ model_name='organization',
+ name='membership',
+ field=models.CharField(choices=[('Nm', 'Non-Member'), ('Na', 'Nano Member'), ('Mm', 'Micro Member'), ('Sm', 'Small Business Member'), ('Lb', 'Local Business Member'), ('Rb', 'Regional Business Member')], default='0', max_length=31),
+ ),
+ migrations.AlterField(
+ model_name='organization',
+ name='name',
+ field=models.CharField(max_length=63),
+ ),
+ migrations.AlterField(
+ model_name='organization',
+ name='org_type',
+ field=models.CharField(choices=[('Fo', 'Food'), ('Re', 'Retail'), ('Se', 'Service'), ('Ud', 'Undefined')], default='3', max_length=31),
+ ),
+ migrations.AlterField(
+ model_name='organization',
+ name='phone_number',
+ field=models.CharField(blank=True, max_length=255, null=True),
+ ),
+ migrations.AlterField(
+ model_name='organization',
+ name='state',
+ field=models.CharField(blank=True, max_length=15, null=True),
+ ),
+ migrations.AlterField(
+ model_name='organization',
+ name='stripe_email',
+ field=models.CharField(blank=True, max_length=63, null=True),
+ ),
+ migrations.AlterField(
+ model_name='organization',
+ name='website',
+ field=models.CharField(blank=True, max_length=126, null=True),
+ ),
+ migrations.AlterField(
+ model_name='organization',
+ name='zip_code',
+ field=models.CharField(blank=True, max_length=15, null=True),
+ ),
+ migrations.AlterField(
+ model_name='promo',
+ name='embed_link',
+ field=models.CharField(blank=True, max_length=126, null=True),
+ ),
+ migrations.AlterField(
+ model_name='promo',
+ name='promo_type',
+ field=models.CharField(choices=[('Ar', 'Art'), ('Fo', 'Food'), ('Ev', 'Event'), ('Re', 'Retail'), ('Ma', 'Mutual Aid'), ('Ca', 'Classifieds'), ('Jo', 'Job Opening'), ('Sp', 'Startup Pitch'), ('An', 'Academia Nuts'), ('Ja', 'Journal Article'), ('Su', 'Survey Questions')], default='0', max_length=15),
+ ),
+ migrations.AlterField(
+ model_name='promo',
+ name='title',
+ field=models.CharField(max_length=63),
+ ),
+ migrations.AlterField(
+ model_name='scraper',
+ name='name',
+ field=models.CharField(max_length=63, unique=True),
+ ),
+ migrations.AlterField(
+ model_name='scraper',
+ name='website',
+ field=models.CharField(blank=True, max_length=63, null=True),
+ ),
+ migrations.AddField(
+ model_name='event',
+ name='calendar',
+ field=models.ForeignKey(blank=True, null=True, on_delete=django.db.models.deletion.CASCADE, to='events.calendar'),
+ ),
+ migrations.AddField(
+ model_name='scraper',
+ name='calendar',
+ field=models.ForeignKey(default=1, on_delete=django.db.models.deletion.CASCADE, to='events.calendar'),
+ preserve_default=False,
+ ),
+ migrations.DeleteModel(
+ name='Calendars',
+ ),
+ ]
diff --git a/events/migrations/0027_scraper_new_items.py b/events/migrations/0027_scraper_new_items.py
new file mode 100644
index 0000000..3fe5fcf
--- /dev/null
+++ b/events/migrations/0027_scraper_new_items.py
@@ -0,0 +1,18 @@
+# Generated by Django 5.1.1 on 2025-10-11 02:41
+
+from django.db import migrations, models
+
+
+class Migration(migrations.Migration):
+
+ dependencies = [
+ ('events', '0026_calendar_remove_organization_calendars_and_more'),
+ ]
+
+ operations = [
+ migrations.AddField(
+ model_name='scraper',
+ name='new_items',
+ field=models.IntegerField(blank=True, null=True),
+ ),
+ ]
diff --git a/events/migrations/__init__.py b/events/migrations/__init__.py
new file mode 100644
index 0000000..e69de29
diff --git a/events/models.py b/events/models.py
new file mode 100644
index 0000000..ab97c0d
--- /dev/null
+++ b/events/models.py
@@ -0,0 +1,206 @@
+from django.db import models
+from django.core.files.storage import FileSystemStorage
+from django.contrib.auth.models import User
+
+fs = FileSystemStorage(location='/media/flyers')
+# Create your models here.
+
+class Calendar(models.Model):
+ name = models.CharField(max_length=31, unique=True)
+ shortcode = models.CharField(max_length=3, unique=True)
+ desc = models.TextField(blank=True, null=True)
+
+ def __unicode__(self):
+ return "%s" % self.shortcode
+
+ def __str__(self):
+ return u'%s' % self.shortcode
+
+
+class Scraper(models.Model):
+ name = models.CharField(max_length=63, unique=True)
+ website = models.CharField(max_length=63, blank=True, null=True)
+ calendar = models.ForeignKey(Calendar, on_delete=models.CASCADE)
+ items = models.IntegerField(blank=True, null=True)
+ new_items = models.IntegerField(blank=True, null=True)
+ last_ran = models.DateTimeField(blank=True, null=True)
+
+ class Meta:
+ verbose_name_plural = "Scrapers"
+ ordering = ['name',]
+
+ def __unicode__(self):
+ return "%s" % self.name
+
+ def __str__(self):
+ return u'%s' % self.name
+
+
+class Tags(models.Model):
+ name = models.CharField(max_length=31, unique=True)
+ desc = models.TextField(blank=True, null=True)
+
+ def __unicode__(self):
+ return "%s" % self.name
+
+ def __str__(self):
+ return u'%s' % self.name
+
+
+class Organization(models.Model):
+ MEMBER_TYPE = (
+ ('Nm', 'Non-Member'),
+ ('Na', 'Nano Member'),
+ ('Mm', 'Micro Member'),
+ ('Sm', 'Small Business Member'),
+ ('Lb', 'Local Business Member'),
+ ('Rb', 'Regional Business Member'),
+ )
+ ORG_TYPE = (
+ ('Fo', 'Food'),
+ ('Re', 'Retail'),
+ ('Se', 'Service'),
+ ('Ud', 'Undefined'),
+ )
+ name = models.CharField(max_length=63)
+ website = models.CharField(max_length=126, blank=True, null=True)
+ membership = models.CharField(max_length=31, choices=MEMBER_TYPE, default='0')
+ org_type = models.CharField(max_length=31, choices=ORG_TYPE, default='3')
+
+ stripe_email = models.CharField(max_length=63, blank=True, null=True)
+ ein = models.CharField(max_length=15, blank=True, null=True)
+ is_venue= models.BooleanField(default=False)
+ is_501c = models.BooleanField(default=False)
+
+ short_desc = models.CharField(max_length=63, blank=True, null=True)
+ long_desc = models.TextField(blank=True, null=True)
+
+ contact_name = models.CharField(max_length=63, blank=True, null=True)
+ contact_email = models.CharField(max_length=63, blank=True, null=True)
+
+ phone_number = models.CharField(max_length=255, blank=True, null=True)
+ address = models.CharField(max_length=63, blank=True, null=True)
+ city = models.CharField(max_length=31, blank=True, null=True)
+ state = models.CharField(max_length=15, blank=True, null=True)
+ zip_code = models.CharField(max_length=15, blank=True, null=True)
+
+ tags = models.ManyToManyField(Tags, blank=True, null=True)
+
+ class Meta:
+ unique_together = ("name", "is_venue")
+ verbose_name_plural = "Organizations"
+ ordering = ['name']
+
+ def __unicode__(self):
+ return "%s" % self.name
+
+ def __str__(self):
+ return u'%s' % self.name
+
+
+class Event(models.Model):
+ EVENT_TYPE = (
+ ('Ot', 'Other'),
+ ('Mu', 'Music'),
+ ('Va', 'Visual Art'),
+ ('Gv', 'Government'),
+ ('Ce', 'Civic Engagement'),
+ ('Ed', 'Educational'),
+ ('Ma', 'Mutual Aid'),
+ ('Th', 'Theater'),
+ ('Co', 'Comedy'),
+ )
+ calendar = models.ForeignKey(Calendar, on_delete=models.CASCADE, blank=True, null=True)
+ scraper = models.ForeignKey(Scraper, on_delete=models.CASCADE, null=True)
+ venue = models.ForeignKey(Organization, on_delete=models.CASCADE)
+ event_type = models.CharField(max_length=15, choices=EVENT_TYPE, default='0')
+ show_title = models.CharField(max_length=127, blank=True, null=True)
+ show_link = models.URLField(blank=True, null=True)
+ guests = models.CharField(max_length=255, blank=True, null=True)
+ show_date = models.DateTimeField()
+ show_day = models.DateField(blank=True, null=True)
+ img_link = models.CharField(max_length=255, blank=True, null=True)
+ flyer_img = models.ImageField(upload_to=fs, blank=True, null=True)
+ more_details = models.JSONField(blank=True, null=True)
+
+ tags = models.ManyToManyField(Tags, blank=True, null=True)
+
+ class Meta:
+ verbose_name_plural = "Events"
+ # unique_together = ("show_title", "show_date", "venue")
+ ordering = ['show_date', 'show_title']
+
+ def __unicode__(self):
+ return "%s" % self.show_title
+
+ def __str__(self):
+ return u'%s' % self.show_title
+
+
+class Promo(models.Model):
+ PROMO_TYPE = (
+ ('Ar', 'Art'),
+ ('Fo', 'Food'),
+ ('Ev', 'Event'),
+ ('Re', 'Retail'),
+ ('Ma', 'Mutual Aid'),
+ ('Ca', 'Classifieds'),
+ ('Jo', 'Job Opening'),
+ ('Sp', 'Startup Pitch'),
+ ('An', 'Academia Nuts'),
+ ('Ja', 'Journal Article'),
+ ('Su', 'Survey Questions')
+ )
+ title = models.CharField(max_length=63)
+ organization = models.ForeignKey(Organization, on_delete=models.CASCADE)
+ promo_type = models.CharField(max_length=15, choices=PROMO_TYPE, default='0')
+ overlay_image = models.ImageField(upload_to="overlays", blank=True)
+ classified_image = models.ImageField(upload_to="classifieds", blank=True)
+ embed_link = models.CharField(max_length=126, blank=True, null=True)
+ short_text = models.TextField(blank=True, null=True)
+ long_text = models.TextField(blank=True, null=True)
+ target_link = models.URLField(blank=True, null=True)
+ notes = models.TextField(blank=True, null=True)
+ published = models.BooleanField(default=False)
+
+ tags = models.ManyToManyField(Tags, blank=True, null=True)
+
+ class Meta:
+ verbose_name_plural = "Promo"
+ ordering = ['published', 'organization', 'title',]
+
+ def __unicode__(self):
+ return "%s" % self.title
+
+ def __str__(self):
+ return u'%s' % self.title
+
+
+# class UserThrottle(models.Model):
+# user = models.ForeignKey(User, on_delete=models.CASCADE)
+# scope = models.CharField(max_length=20, choices=(
+# ('admin', 'Admin'),
+# ('platinum', 'Platinum'),
+# ('gold', 'Gold'),
+# ('silver', 'Silver'),
+# ('free', 'Free'),
+# ))
+# calls = models.IntegerField(default=0)
+# limit = models.IntegerField(default=0)
+
+# def __str__(self):
+# return f"{self.user.username}: {self.scope}"
+
+
+# class UserScope(models.Model):
+# user = models.ForeignKey(User, on_delete=models.CASCADE)
+# scope = models.CharField(max_length=20, choices=(
+# ('admin', 'Admin'),
+# ('platinum', 'Platinum'),
+# ('gold', 'Gold'),
+# ('silver', 'Silver'),
+# ('free', 'Free'),
+# ))
+
+# def __str__(self):
+# return f"{self.user.username}: {self.scope}"
\ No newline at end of file
diff --git a/events/serializers.py b/events/serializers.py
new file mode 100644
index 0000000..2ef685e
--- /dev/null
+++ b/events/serializers.py
@@ -0,0 +1,62 @@
+from rest_framework import serializers
+from .models import Event, Organization, Promo
+
+from django.db import models
+from django.contrib.auth.models import User
+from rest_framework.permissions import BasePermission
+
+class ScopesPermission(BasePermission):
+ scopes_map = {
+ 'admin': [],
+ 'platinum': ['gold', 'silver', 'free'],
+ 'gold': ['silver', 'free'],
+ 'silver': ['free'],
+ 'free': [],
+ }
+
+ def has_permission(self, request, view):
+ if not request.user.is_authenticated:
+ return False
+
+ # Check if the user has an associated scope
+ try:
+ user_scope = UserScope.objects.get(user=request.user)
+ except UserScope.DoesNotExist:
+ return False
+
+ # Check if the user's scope has the required permission level
+ if user_scope.scope not in self.scopes_map:
+ return False
+
+ allowed_scopes = self.scopes_map[user_scope.scope]
+ return request.scope in allowed_scopes or request.scope == user_scope.scope
+
+############
+## Events ##
+############
+
+class OrganizationSerializer(serializers.ModelSerializer):
+ class Meta:
+ model = Organization
+ fields = ('id', 'name', 'website', 'city')
+ # fields = '__all__'
+
+
+class EventSerializer(serializers.ModelSerializer):
+ venue = OrganizationSerializer(many=False)
+ event_type = serializers.CharField(source='get_event_type_display')
+ # target_language = serializers.SerializerMethodField()
+ class Meta:
+ model = Event
+ fields = '__all__'
+ depth = 2
+# fields = ('id', 'name',)
+
+class PromoSerializer(serializers.ModelSerializer):
+ organization = OrganizationSerializer(many=False)
+ # event_type = serializers.CharField(source='get_event_type_display')
+ class Meta:
+ model = Promo
+ fields = ('id', 'title', 'organization', 'promo_type', 'long_text', 'short_text', 'overlay_image', 'classified_image', 'target_link')
+ # fields = '__all__'
+ depth = 2
\ No newline at end of file
diff --git a/events/tests.py b/events/tests.py
new file mode 100644
index 0000000..7ce503c
--- /dev/null
+++ b/events/tests.py
@@ -0,0 +1,3 @@
+from django.test import TestCase
+
+# Create your tests here.
diff --git a/events/urls.py b/events/urls.py
new file mode 100644
index 0000000..f55b1a7
--- /dev/null
+++ b/events/urls.py
@@ -0,0 +1,25 @@
+"""ds_events URL Configuration
+
+The `urlpatterns` list routes URLs to views. For more information please see:
+ https://docs.djangoproject.com/en/4.1/topics/http/urls/
+Examples:
+Function views
+ 1. Add an import: from my_app import views
+ 2. Add a URL to urlpatterns: path('', views.home, name='home')
+Class-based views
+ 1. Add an import: from other_app.views import Home
+ 2. Add a URL to urlpatterns: path('', Home.as_view(), name='home')
+Including another URLconf
+ 1. Import the include() function: from django.urls import include, path
+ 2. Add a URL to urlpatterns: path('blog/', include('blog.urls'))
+"""
+from django.contrib import admin
+from django.urls import path, include, re_path
+from .views import *
+
+urlpatterns = [
+ re_path(r'^events/', EventsAPIView.as_view(), name="get-events"),
+ re_path(r'^promo/', PromoAPIView.as_view(), name="get-promo"),
+ # re_path(r'^events-token/', EventsTokenAPIView.as_view(), name="get-token-events"),
+
+]
diff --git a/events/views.py b/events/views.py
new file mode 100644
index 0000000..f224143
--- /dev/null
+++ b/events/views.py
@@ -0,0 +1,52 @@
+from django.shortcuts import render
+from datetime import datetime, timedelta
+import pytz, random
+
+from .models import *
+from .serializers import *
+
+from django.db.models import Q
+
+from rest_framework import generics
+from rest_framework.decorators import authentication_classes, permission_classes
+from rest_framework.authentication import SessionAuthentication, BasicAuthentication
+
+from rest_framework.permissions import IsAuthenticated
+# from durin.auth import TokenAuthentication
+
+# from durin.views import APIAccessTokenView
+
+from django_filters.rest_framework import DjangoFilterBackend
+from rest_framework import filters
+
+from rest_framework.response import Response
+
+td = timedelta(hours=7)
+odt = datetime.now() - td
+
+# Create your views here.
+class EventsAPIView(generics.ListAPIView):
+ serializer_class = EventSerializer
+ queryset = Event.objects.filter(show_date__gte=odt).order_by('show_date')
+ filter_backends = [DjangoFilterBackend, filters.SearchFilter]
+ filterset_fields = ['show_title', 'event_type', 'venue__name', 'calendar__shortcode']
+ search_fields = ['show_title', 'event_type', 'venue__name']
+
+
+class PromoAPIView(generics.ListAPIView):
+ serializer_class = PromoSerializer
+
+ def get_queryset(self):
+ promo_objects = list(Promo.objects.filter(published=True))
+ print(len(promo_objects))
+ queryset = random.sample(promo_objects, 21)
+ return queryset
+
+# class EventsTokenAPIView(APIAccessTokenView):
+# serializer_class = EventSerializer
+# authentication_classes = (TokenAuthentication, BasicAuthentication,)
+# permission_classes = (IsAuthenticated,)
+# queryset = Event.objects.filter(show_date__gte=odt).order_by('show_date')
+# filter_backends = [DjangoFilterBackend, filters.SearchFilter]
+# filterset_fields = ['show_title', 'event_type', 'show_date', 'show_day', 'venue__name']
+# search_fields = ['show_title', 'event_type']
diff --git a/fixtures/events.orgs.json b/fixtures/events.orgs.json
new file mode 100644
index 0000000..ff57fa3
--- /dev/null
+++ b/fixtures/events.orgs.json
@@ -0,0 +1,767 @@
+[
+{
+ "model": "events.organization",
+ "pk": 1,
+ "fields": {
+ "name": "DreamFreely",
+ "website": "https://www.dreamfreely.org",
+ "is_venue": false,
+ "is_501c": false,
+ "contact_name": "Canin Carlos",
+ "contact_email": "canin@dreamfreely.org",
+ "phone_number": "6124054535",
+ "address": null,
+ "city": "St Paul",
+ "state": null,
+ "zip_code": null
+ }
+},
+{
+ "model": "events.organization",
+ "pk": 2,
+ "fields": {
+ "name": "Acme Comedy Club",
+ "website": "https://acmecomedycompany.com/the-club/calendar/",
+ "is_venue": false,
+ "is_501c": false,
+ "contact_name": null,
+ "contact_email": null,
+ "phone_number": null,
+ "address": null,
+ "city": "Minneapolis",
+ "state": null,
+ "zip_code": null
+ }
+},
+{
+ "model": "events.organization",
+ "pk": 3,
+ "fields": {
+ "name": "Amsterdam Bar & Hall",
+ "website": "https://www.amsterdambarandhall.com/events-new/",
+ "is_venue": false,
+ "is_501c": false,
+ "contact_name": null,
+ "contact_email": null,
+ "phone_number": null,
+ "address": null,
+ "city": "St. Paul",
+ "state": null,
+ "zip_code": null
+ }
+},
+{
+ "model": "events.organization",
+ "pk": 4,
+ "fields": {
+ "name": "331 Club",
+ "website": null,
+ "is_venue": false,
+ "is_501c": false,
+ "contact_name": null,
+ "contact_email": null,
+ "phone_number": null,
+ "address": null,
+ "city": "Minneapolis",
+ "state": null,
+ "zip_code": null
+ }
+},
+{
+ "model": "events.organization",
+ "pk": 5,
+ "fields": {
+ "name": "Eastside Freedom Library",
+ "website": "https://eastsidefreedomlibrary.org/events/",
+ "is_venue": false,
+ "is_501c": false,
+ "contact_name": null,
+ "contact_email": null,
+ "phone_number": null,
+ "address": null,
+ "city": "Minneapolis",
+ "state": null,
+ "zip_code": null
+ }
+},
+{
+ "model": "events.organization",
+ "pk": 6,
+ "fields": {
+ "name": "7th St Entry",
+ "website": null,
+ "is_venue": false,
+ "is_501c": false,
+ "contact_name": null,
+ "contact_email": null,
+ "phone_number": null,
+ "address": null,
+ "city": "Minneapolis",
+ "state": null,
+ "zip_code": null
+ }
+},
+{
+ "model": "events.organization",
+ "pk": 7,
+ "fields": {
+ "name": "Fine Line",
+ "website": null,
+ "is_venue": false,
+ "is_501c": false,
+ "contact_name": null,
+ "contact_email": null,
+ "phone_number": null,
+ "address": null,
+ "city": "Minneapolis",
+ "state": null,
+ "zip_code": null
+ }
+},
+{
+ "model": "events.organization",
+ "pk": 8,
+ "fields": {
+ "name": "State Theatre",
+ "website": null,
+ "is_venue": false,
+ "is_501c": false,
+ "contact_name": null,
+ "contact_email": null,
+ "phone_number": null,
+ "address": null,
+ "city": "Minneapolis",
+ "state": null,
+ "zip_code": null
+ }
+},
+{
+ "model": "events.organization",
+ "pk": 9,
+ "fields": {
+ "name": "Turf Club",
+ "website": null,
+ "is_venue": false,
+ "is_501c": false,
+ "contact_name": null,
+ "contact_email": null,
+ "phone_number": null,
+ "address": null,
+ "city": "St Paul",
+ "state": null,
+ "zip_code": null
+ }
+},
+{
+ "model": "events.organization",
+ "pk": 10,
+ "fields": {
+ "name": "First Avenue",
+ "website": null,
+ "is_venue": false,
+ "is_501c": false,
+ "contact_name": null,
+ "contact_email": null,
+ "phone_number": null,
+ "address": null,
+ "city": "Minneapolis",
+ "state": null,
+ "zip_code": null
+ }
+},
+{
+ "model": "events.organization",
+ "pk": 11,
+ "fields": {
+ "name": "The Fitzgerald Theater",
+ "website": null,
+ "is_venue": false,
+ "is_501c": false,
+ "contact_name": null,
+ "contact_email": null,
+ "phone_number": null,
+ "address": null,
+ "city": "St Paul",
+ "state": null,
+ "zip_code": null
+ }
+},
+{
+ "model": "events.organization",
+ "pk": 12,
+ "fields": {
+ "name": "Palace Theatre",
+ "website": null,
+ "is_venue": false,
+ "is_501c": false,
+ "contact_name": null,
+ "contact_email": null,
+ "phone_number": null,
+ "address": null,
+ "city": "St Paul",
+ "state": null,
+ "zip_code": null
+ }
+},
+{
+ "model": "events.organization",
+ "pk": 13,
+ "fields": {
+ "name": "The Cedar Cultural Center",
+ "website": null,
+ "is_venue": false,
+ "is_501c": false,
+ "contact_name": null,
+ "contact_email": null,
+ "phone_number": null,
+ "address": null,
+ "city": "Minneapolis",
+ "state": null,
+ "zip_code": null
+ }
+},
+{
+ "model": "events.organization",
+ "pk": 14,
+ "fields": {
+ "name": "Armory",
+ "website": null,
+ "is_venue": false,
+ "is_501c": false,
+ "contact_name": null,
+ "contact_email": null,
+ "phone_number": null,
+ "address": null,
+ "city": "Minneapolis",
+ "state": null,
+ "zip_code": null
+ }
+},
+{
+ "model": "events.organization",
+ "pk": 15,
+ "fields": {
+ "name": "Hook & Ladder",
+ "website": null,
+ "is_venue": false,
+ "is_501c": false,
+ "contact_name": null,
+ "contact_email": null,
+ "phone_number": null,
+ "address": null,
+ "city": "Minneapolis",
+ "state": null,
+ "zip_code": null
+ }
+},
+{
+ "model": "events.organization",
+ "pk": 16,
+ "fields": {
+ "name": "Chicago Ave Fire Arts Center",
+ "website": "https://www.cafac.org/classes",
+ "is_venue": false,
+ "is_501c": false,
+ "contact_name": null,
+ "contact_email": null,
+ "phone_number": null,
+ "address": null,
+ "city": "Minneapolis",
+ "state": null,
+ "zip_code": null
+ }
+},
+{
+ "model": "events.organization",
+ "pk": 17,
+ "fields": {
+ "name": "Bunkers",
+ "website": "https://bunkersmusic.com/calendar/",
+ "is_venue": false,
+ "is_501c": false,
+ "contact_name": null,
+ "contact_email": null,
+ "phone_number": null,
+ "address": null,
+ "city": "Minneapolis",
+ "state": null,
+ "zip_code": null
+ }
+},
+{
+ "model": "events.organization",
+ "pk": 18,
+ "fields": {
+ "name": "Center for Performing Arts",
+ "website": "https://www.cfpampls.com/events",
+ "is_venue": false,
+ "is_501c": false,
+ "contact_name": null,
+ "contact_email": null,
+ "phone_number": null,
+ "address": null,
+ "city": "Minneapolis",
+ "state": null,
+ "zip_code": null
+ }
+},
+{
+ "model": "events.organization",
+ "pk": 19,
+ "fields": {
+ "name": "Eagles #34",
+ "website": "https://www.minneapoliseagles34.org/events-entertainment.html",
+ "is_venue": false,
+ "is_501c": false,
+ "contact_name": null,
+ "contact_email": null,
+ "phone_number": null,
+ "address": null,
+ "city": "Minneapolis",
+ "state": null,
+ "zip_code": null
+ }
+},
+{
+ "model": "events.organization",
+ "pk": 20,
+ "fields": {
+ "name": "KJ's Hideaway",
+ "website": "",
+ "is_venue": false,
+ "is_501c": false,
+ "contact_name": null,
+ "contact_email": null,
+ "phone_number": null,
+ "address": null,
+ "city": "Minneapolis",
+ "state": null,
+ "zip_code": null
+ }
+},
+{
+ "model": "events.organization",
+ "pk": 21,
+ "fields": {
+ "name": "location",
+ "website": "",
+ "is_venue": false,
+ "is_501c": false,
+ "contact_name": null,
+ "contact_email": null,
+ "phone_number": null,
+ "address": null,
+ "city": "Minneapolis",
+ "state": null,
+ "zip_code": null
+ }
+},
+{
+ "model": "events.organization",
+ "pk": 22,
+ "fields": {
+ "name": "Sociable Ciderwerks",
+ "website": "https://sociablecider.com/events",
+ "is_venue": false,
+ "is_501c": false,
+ "contact_name": null,
+ "contact_email": null,
+ "phone_number": null,
+ "address": null,
+ "city": "Minneapolis",
+ "state": null,
+ "zip_code": null
+ }
+},
+{
+ "model": "events.organization",
+ "pk": 23,
+ "fields": {
+ "name": "Terminal Bar",
+ "website": "https://terminalbarmn.com",
+ "is_venue": false,
+ "is_501c": false,
+ "contact_name": null,
+ "contact_email": null,
+ "phone_number": null,
+ "address": null,
+ "city": "Minneapolis",
+ "state": null,
+ "zip_code": null
+ }
+},
+{
+ "model": "events.organization",
+ "pk": 24,
+ "fields": {
+ "name": "Magers & Quinn",
+ "website": "https://www.magersandquinn.com/events",
+ "is_venue": false,
+ "is_501c": false,
+ "contact_name": null,
+ "contact_email": null,
+ "phone_number": null,
+ "address": null,
+ "city": "Minneapolis",
+ "state": null,
+ "zip_code": null
+ }
+},
+{
+ "model": "events.organization",
+ "pk": 25,
+ "fields": {
+ "name": "Mn House",
+ "website": null,
+ "is_venue": false,
+ "is_501c": false,
+ "contact_name": null,
+ "contact_email": null,
+ "phone_number": null,
+ "address": null,
+ "city": "St. Paul",
+ "state": null,
+ "zip_code": null
+ }
+},
+{
+ "model": "events.organization",
+ "pk": 26,
+ "fields": {
+ "name": "Mn Senate",
+ "website": null,
+ "is_venue": false,
+ "is_501c": false,
+ "contact_name": null,
+ "contact_email": null,
+ "phone_number": null,
+ "address": null,
+ "city": "St. Paul",
+ "state": null,
+ "zip_code": null
+ }
+},
+{
+ "model": "events.organization",
+ "pk": 27,
+ "fields": {
+ "name": "Mn Legislature",
+ "website": null,
+ "is_venue": false,
+ "is_501c": false,
+ "contact_name": null,
+ "contact_email": null,
+ "phone_number": null,
+ "address": null,
+ "city": "St. Paul",
+ "state": null,
+ "zip_code": null
+ }
+},
+{
+ "model": "events.organization",
+ "pk": 28,
+ "fields": {
+ "name": "Public Service Center",
+ "website": null,
+ "is_venue": false,
+ "is_501c": false,
+ "contact_name": null,
+ "contact_email": null,
+ "phone_number": null,
+ "address": null,
+ "city": "Minneapolis",
+ "state": null,
+ "zip_code": null
+ }
+},
+{
+ "model": "events.organization",
+ "pk": 29,
+ "fields": {
+ "name": "Mpls City Hall",
+ "website": null,
+ "is_venue": false,
+ "is_501c": false,
+ "contact_name": null,
+ "contact_email": null,
+ "phone_number": null,
+ "address": null,
+ "city": "Minneapolis",
+ "state": null,
+ "zip_code": null
+ }
+},
+{
+ "model": "events.organization",
+ "pk": 30,
+ "fields": {
+ "name": "Public Service Building",
+ "website": null,
+ "is_venue": false,
+ "is_501c": false,
+ "contact_name": null,
+ "contact_email": null,
+ "phone_number": null,
+ "address": null,
+ "city": "Minneapolis",
+ "state": null,
+ "zip_code": null
+ }
+},
+{
+ "model": "events.organization",
+ "pk": 31,
+ "fields": {
+ "name": "Farview Park Recreation Center",
+ "website": null,
+ "is_venue": false,
+ "is_501c": false,
+ "contact_name": null,
+ "contact_email": null,
+ "phone_number": null,
+ "address": null,
+ "city": "Minneapolis",
+ "state": null,
+ "zip_code": null
+ }
+},
+{
+ "model": "events.organization",
+ "pk": 32,
+ "fields": {
+ "name": "Minneapolis American Indian Center",
+ "website": null,
+ "is_venue": false,
+ "is_501c": false,
+ "contact_name": null,
+ "contact_email": null,
+ "phone_number": null,
+ "address": null,
+ "city": "Minneapolis",
+ "state": null,
+ "zip_code": null
+ }
+},
+{
+ "model": "events.organization",
+ "pk": 33,
+ "fields": {
+ "name": "MN 55413",
+ "website": null,
+ "is_venue": false,
+ "is_501c": false,
+ "contact_name": null,
+ "contact_email": null,
+ "phone_number": null,
+ "address": null,
+ "city": "Minneapolis",
+ "state": null,
+ "zip_code": null
+ }
+},
+{
+ "model": "events.organization",
+ "pk": 34,
+ "fields": {
+ "name": "Trinity Room",
+ "website": null,
+ "is_venue": false,
+ "is_501c": false,
+ "contact_name": null,
+ "contact_email": null,
+ "phone_number": null,
+ "address": null,
+ "city": "Minneapolis",
+ "state": null,
+ "zip_code": null
+ }
+},
+{
+ "model": "events.organization",
+ "pk": 35,
+ "fields": {
+ "name": "Room 100 Public Service Building",
+ "website": null,
+ "is_venue": false,
+ "is_501c": false,
+ "contact_name": null,
+ "contact_email": null,
+ "phone_number": null,
+ "address": null,
+ "city": "Minneapolis",
+ "state": null,
+ "zip_code": null
+ }
+},
+{
+ "model": "events.organization",
+ "pk": 36,
+ "fields": {
+ "name": "Phillips Community Center",
+ "website": null,
+ "is_venue": false,
+ "is_501c": false,
+ "contact_name": null,
+ "contact_email": null,
+ "phone_number": null,
+ "address": null,
+ "city": "Minneapolis",
+ "state": null,
+ "zip_code": null
+ }
+},
+{
+ "model": "events.organization",
+ "pk": 37,
+ "fields": {
+ "name": "All office locations",
+ "website": null,
+ "is_venue": false,
+ "is_501c": false,
+ "contact_name": null,
+ "contact_email": null,
+ "phone_number": null,
+ "address": null,
+ "city": "Minneapolis",
+ "state": null,
+ "zip_code": null
+ }
+},
+{
+ "model": "events.organization",
+ "pk": 38,
+ "fields": {
+ "name": "All Office Locations",
+ "website": null,
+ "is_venue": false,
+ "is_501c": false,
+ "contact_name": null,
+ "contact_email": null,
+ "phone_number": null,
+ "address": null,
+ "city": "Minneapolis",
+ "state": null,
+ "zip_code": null
+ }
+},
+{
+ "model": "events.organization",
+ "pk": 39,
+ "fields": {
+ "name": "621 29th Ave N",
+ "website": null,
+ "is_venue": false,
+ "is_501c": false,
+ "contact_name": null,
+ "contact_email": null,
+ "phone_number": null,
+ "address": null,
+ "city": "Minneapolis",
+ "state": null,
+ "zip_code": null
+ }
+},
+{
+ "model": "events.organization",
+ "pk": 40,
+ "fields": {
+ "name": "Powderhorn Recreation Center - Multipurpose Room",
+ "website": null,
+ "is_venue": false,
+ "is_501c": false,
+ "contact_name": null,
+ "contact_email": null,
+ "phone_number": null,
+ "address": null,
+ "city": "Minneapolis",
+ "state": null,
+ "zip_code": null
+ }
+},
+{
+ "model": "events.organization",
+ "pk": 41,
+ "fields": {
+ "name": "Uptown VFW",
+ "website": null,
+ "is_venue": false,
+ "is_501c": false,
+ "contact_name": null,
+ "contact_email": null,
+ "phone_number": null,
+ "address": null,
+ "city": "Minneapolis",
+ "state": null,
+ "zip_code": null
+ }
+},
+{
+ "model": "events.organization",
+ "pk": 42,
+ "fields": {
+ "name": "Palmer's Bar",
+ "website": "https://palmers-bar.com",
+ "is_venue": false,
+ "is_501c": false,
+ "contact_name": null,
+ "contact_email": null,
+ "phone_number": null,
+ "address": null,
+ "city": "Minneapolis",
+ "state": null,
+ "zip_code": null
+ }
+},
+{
+ "model": "events.organization",
+ "pk": 43,
+ "fields": {
+ "name": "Parkway Theater",
+ "website": "https://theparkwaytheater.com",
+ "is_venue": false,
+ "is_501c": false,
+ "contact_name": null,
+ "contact_email": null,
+ "phone_number": null,
+ "address": null,
+ "city": "Minneapolis",
+ "state": null,
+ "zip_code": null
+ }
+},
+{
+ "model": "events.organization",
+ "pk": 44,
+ "fields": {
+ "name": "Somewhere in St Paul",
+ "website": null,
+ "is_venue": false,
+ "is_501c": false,
+ "contact_name": null,
+ "contact_email": null,
+ "phone_number": null,
+ "address": null,
+ "city": "St. Paul",
+ "state": null,
+ "zip_code": null
+ }
+},
+{
+ "model": "events.organization",
+ "pk": 45,
+ "fields": {
+ "name": "White Squirrel",
+ "website": "https://whitesquirrelbar.com",
+ "is_venue": false,
+ "is_501c": false,
+ "contact_name": null,
+ "contact_email": null,
+ "phone_number": null,
+ "address": null,
+ "city": "St. Paul",
+ "state": null,
+ "zip_code": null
+ }
+}
+]
diff --git a/fixtures/events.promo.json b/fixtures/events.promo.json
new file mode 100644
index 0000000..04b69a7
--- /dev/null
+++ b/fixtures/events.promo.json
@@ -0,0 +1,461 @@
+[
+{
+ "model": "events.promo",
+ "pk": 1,
+ "fields": {
+ "title": "DreamFreely",
+ "organization": 1,
+ "promo_type": "Jo",
+ "image": "promo/SOL_Sign.png",
+ "long_text": "Alright, I guess this is it. This is the game, these are the plays.
\r\n\r\nLots of work, for sure; but it's a blessing to help people. Now to continue to expand the support and stability.
",
+ "short_text": "And intro to the operation.",
+ "target_link": "https://www.dreamfreely.org",
+ "notes": "",
+ "published": true
+ }
+},
+{
+ "model": "events.promo",
+ "pk": 2,
+ "fields": {
+ "title": "Pueblo Andino",
+ "organization": 1,
+ "promo_type": "Fo",
+ "image": "promo/cover.png",
+ "long_text": "These are all products from my travels.
\r\nFrom hand-woven mochilas, to organic mountain farmed coffee and panela and more.
\r\nAll of these products are direct from the producer, while nearly all proceeds are also returned to the producer.
",
+ "short_text": "Authentic products from the Andes Mountains and surrounding regions, mochilas, cafe y panella.",
+ "target_link": "https://www.dreamfreely.org",
+ "notes": "",
+ "published": true
+ }
+},
+{
+ "model": "events.promo",
+ "pk": 3,
+ "fields": {
+ "title": "idioke",
+ "organization": 1,
+ "promo_type": "Ev",
+ "image": "promo/soltoken.png",
+ "long_text": "We're starting with English, but soon you will be able to practice Spanish as well.We're starting with English, but soon you will be able to practice Spanish as well.We're starting with English, but soon you will be able to practice Spanish as well.",
+ "short_text": "We're starting with English, but soon you will be able to practice Spanish as well.",
+ "target_link": "https://www.idioke.com",
+ "notes": "",
+ "published": true
+ }
+},
+{
+ "model": "events.promo",
+ "pk": 4,
+ "fields": {
+ "title": "Manifesting Empathy",
+ "organization": 1,
+ "promo_type": "Fo",
+ "image": "promo/manifestingempathy.png",
+ "long_text": "Help humans find their roots.",
+ "target_link": "https://www.manifestingempathy.com",
+ "notes": "",
+ "published": true
+ }
+},
+{
+ "model": "events.promo",
+ "pk": 5,
+ "fields": {
+ "title": "DigiSnaxx & the DBC",
+ "organization": 1,
+ "promo_type": "Re",
+ "image": "promo/cover.png",
+ "long_text": "After seeing the City Pages fall down the drain, followed by the dissolution of the MetroIBA.
\r\nAnywho, it's time for something different, and that's what DigiSnaxx and DreamFreely is all about.
\r\nDigiSnaxx is not trying to replace either of the aforementioned entities; we are rather looking to be an evolution, of sorts.
\r\nWe're not trying to be everything either ...\r\nWe're trying to be an accessible, community-centered, directory.
",
+ "short_text": "More info about the project DigiSnaxx.",
+ "target_link": "https://canin.dreamfreely.org/digisnaxx/",
+ "notes": "",
+ "published": true
+ }
+},
+{
+ "model": "events.promo",
+ "pk": 6,
+ "fields": {
+ "title": "AI & the Last Question",
+ "organization": 1,
+ "promo_type": "Fo",
+ "image": "promo/cover.png",
+ "long_text": "A short story by Isaac AsimovA short story by Isaac AsimovA short story by Isaac Asimov",
+ "short_text": "A short story by Isaac Asimov",
+ "target_link": "https://canin.dreamfreely.org/the-last-question/",
+ "notes": "",
+ "published": true
+ }
+},
+{
+ "model": "events.promo",
+ "pk": 7,
+ "fields": {
+ "title": "idioke",
+ "organization": 1,
+ "promo_type": "Ev",
+ "image": "promo/soltoken.png",
+ "long_text": "We're starting with English, but soon you will be able to practice Spanish as well.We're starting with English, but soon you will be able to practice Spanish as well.We're starting with English, but soon you will be able to practice Spanish as well.",
+ "short_text": "We're starting with English, but soon you will be able to practice Spanish as well.",
+ "target_link": "https://www.idioke.com",
+ "notes": "",
+ "published": true
+ }
+},
+{
+ "model": "events.promo",
+ "pk": 8,
+ "fields": {
+ "title": "AI & the Last Question",
+ "organization": 1,
+ "promo_type": "Re",
+ "image": "promo/cover.png",
+ "long_text": "A short story by Isaac AsimovA short story by Isaac AsimovA short story by Isaac Asimov",
+ "short_text": "A short story by Isaac Asimov",
+ "target_link": "https://canin.dreamfreely.org/the-last-question/",
+ "notes": "",
+ "published": true
+ }
+},
+{
+ "model": "events.promo",
+ "pk": 9,
+ "fields": {
+ "title": "Pueblo Andino",
+ "organization": 1,
+ "promo_type": "Ev",
+ "image": "promo/cover.png",
+ "long_text": "These are all products from my travels.
\r\nFrom hand-woven mochilas, to organic mountain farmed coffee and panela and more.
\r\nAll of these products are direct from the producer, while nearly all proceeds are also returned to the producer.
",
+ "short_text": "Authentic products from the Andes Mountains and surrounding regions, mochilas, cafe y panella.",
+ "target_link": "https://www.dreamfreely.org",
+ "notes": "",
+ "published": true
+ }
+},
+{
+ "model": "events.promo",
+ "pk": 10,
+ "fields": {
+ "title": "DreamFreely",
+ "organization": 1,
+ "promo_type": "Re",
+ "image": "promo/SOL_Sign.png",
+ "long_text": "This has a limit for the number of characters, and I think that it is about 127 characters. So I think that is about the end soThis has a limit for the number of characters, and I think that it is about 127 characters. So I think that is about the end soThis has a limit for the number of characters, and I think that it is about 127 characters. So I think that is about the end so",
+ "short_text": "This has a limit for the number of characters, and I think that it is about 127 characters. So I think that is about the end so",
+ "target_link": "https://www.dreamfreely.org",
+ "notes": "",
+ "published": true
+ }
+},
+{
+ "model": "events.promo",
+ "pk": 11,
+ "fields": {
+ "title": "Manifesting Empathy",
+ "organization": 1,
+ "promo_type": "Ev",
+ "image": "promo/manifestingempathy.png",
+ "long_text": "Help humans find their roots.",
+ "target_link": "https://www.manifestingempathy.com",
+ "notes": "",
+ "published": true
+ }
+},
+{
+ "model": "events.promo",
+ "pk": 12,
+ "fields": {
+ "title": "DigiSnaxx & the DBC",
+ "organization": 1,
+ "promo_type": "Ev",
+ "image": "promo/cover.png",
+ "long_text": "After seeing the City Pages fall down the drain, followed by the dissolution of the MetroIBA.
\r\nAnywho, it's time for something different, and that's what DigiSnaxx and DreamFreely is all about.
\r\nDigiSnaxx is not trying to replace either of the aforementioned entities; we are rather looking to be an evolution, of sorts.
\r\nWe're not trying to be everything either ...\r\nWe're trying to be an accessible, community-centered, directory.
",
+ "short_text": "More info about the project DigiSnaxx.",
+ "target_link": "https://canin.dreamfreely.org/digisnaxx/",
+ "notes": "",
+ "published": true
+ }
+},
+{
+ "model": "events.promo",
+ "pk": 13,
+ "fields": {
+ "title": "Manifesting Empathy",
+ "organization": 1,
+ "promo_type": "Re",
+ "image": "promo/manifestingempathy.png",
+ "long_text": "Help humans find their roots.",
+ "target_link": "https://www.manifestingempathy.com",
+ "notes": "",
+ "published": true
+ }
+},
+{
+ "model": "events.promo",
+ "pk": 14,
+ "fields": {
+ "title": "DigiSnaxx & the DBC",
+ "organization": 1,
+ "promo_type": "Fo",
+ "image": "promo/cover.png",
+ "long_text": "After seeing the City Pages fall down the drain, followed by the dissolution of the MetroIBA.
\r\nAnywho, it's time for something different, and that's what DigiSnaxx and DreamFreely is all about.
\r\nDigiSnaxx is not trying to replace either of the aforementioned entities; we are rather looking to be an evolution, of sorts.
\r\nWe're not trying to be everything either ...\r\nWe're trying to be an accessible, community-centered, directory.
",
+ "short_text": "More info about the project DigiSnaxx.",
+ "target_link": "https://canin.dreamfreely.org/digisnaxx/",
+ "notes": "",
+ "published": true
+ }
+},
+{
+ "model": "events.promo",
+ "pk": 15,
+ "fields": {
+ "title": "idioke",
+ "organization": 1,
+ "promo_type": "Re",
+ "image": "promo/soltoken.png",
+ "long_text": "We're starting with English, but soon you will be able to practice Spanish as well.We're starting with English, but soon you will be able to practice Spanish as well.We're starting with English, but soon you will be able to practice Spanish as well.",
+ "short_text": "We're starting with English, but soon you will be able to practice Spanish as well.",
+ "target_link": "https://www.idioke.com",
+ "notes": "",
+ "published": true
+ }
+},
+{
+ "model": "events.promo",
+ "pk": 16,
+ "fields": {
+ "title": "DigiSnaxx & the DBC",
+ "organization": 1,
+ "promo_type": "Ev",
+ "image": "promo/cover.png",
+ "long_text": "After seeing the City Pages fall down the drain, followed by the dissolution of the MetroIBA.\r\n\r\nAnywho, it's time for something different, and that's what DigiSnaxx and DreamFreely is all about.
\r\nDigiSnaxx is not trying to replace either of the aforementioned entities; we are rather looking to be an evolution, of sorts.
\r\nWe're not trying to be everything either ...\r\nWe're trying to be an accessible, community-centered, directory.
",
+ "short_text": "More info about the project DigiSnaxx.",
+ "target_link": "https://canin.dreamfreely.org/digisnaxx/",
+ "notes": "",
+ "published": true
+ }
+},
+{
+ "model": "events.promo",
+ "pk": 17,
+ "fields": {
+ "title": "DigiSnaxx & the DBC",
+ "organization": 1,
+ "promo_type": "Jo",
+ "image": "promo/cover.png",
+ "long_text": "After seeing the City Pages fall down the drain, followed by the dissolution of the MetroIBA.
\r\nAnywho, it's time for something different, and that's what DigiSnaxx and DreamFreely is all about.
\r\nDigiSnaxx is not trying to replace either of the aforementioned entities; we are rather looking to be an evolution, of sorts.
\r\nWe're not trying to be everything either ...\r\nWe're trying to be an accessible, community-centered, directory.
",
+ "short_text": "More info about the project DigiSnaxx.",
+ "target_link": "https://canin.dreamfreely.org/digisnaxx/",
+ "notes": "",
+ "published": true
+ }
+},
+{
+ "model": "events.promo",
+ "pk": 18,
+ "fields": {
+ "title": "DreamFreely",
+ "organization": 1,
+ "promo_type": "Jo",
+ "image": "promo/SOL_Sign.png",
+ "long_text": "This has a limit for the number of characters, and I think that it is about 127 characters. So I think that is about the end soThis has a limit for the number of characters, and I think that it is about 127 characters. So I think that is about the end soThis has a limit for the number of characters, and I think that it is about 127 characters. So I think that is about the end so",
+ "short_text": "This has a limit for the number of characters, and I think that it is about 127 characters. So I think that is about the end so",
+ "target_link": "https://www.dreamfreely.org",
+ "notes": "",
+ "published": true
+ }
+},
+{
+ "model": "events.promo",
+ "pk": 19,
+ "fields": {
+ "title": "DreamFreely",
+ "organization": 1,
+ "promo_type": "Re",
+ "image": "promo/SOL_Sign.png",
+ "long_text": "This has a limit for the number of characters, and I think that it is about 127 characters. So I think that is about the end soThis has a limit for the number of characters, and I think that it is about 127 characters. So I think that is about the end soThis has a limit for the number of characters, and I think that it is about 127 characters. So I think that is about the end so",
+ "short_text": "This has a limit for the number of characters, and I think that it is about 127 characters. So I think that is about the end so",
+ "target_link": "https://www.dreamfreely.org",
+ "notes": "",
+ "published": true
+ }
+},
+{
+ "model": "events.promo",
+ "pk": 20,
+ "fields": {
+ "title": "idioke",
+ "organization": 1,
+ "promo_type": "Fo",
+ "image": "promo/soltoken.png",
+ "long_text": "We're starting with English, but soon you will be able to practice Spanish as well.We're starting with English, but soon you will be able to practice Spanish as well.We're starting with English, but soon you will be able to practice Spanish as well.",
+ "short_text": "We're starting with English, but soon you will be able to practice Spanish as well.",
+ "target_link": "https://www.idioke.com",
+ "notes": "",
+ "published": true
+ }
+},
+{
+ "model": "events.promo",
+ "pk": 21,
+ "fields": {
+ "title": "DigiSnaxx & the DBC",
+ "organization": 1,
+ "promo_type": "Re",
+ "image": "promo/cover.png",
+ "long_text": "After seeing the City Pages fall down the drain, followed by the dissolution of the MetroIBA.
\r\nAnywho, it's time for something different, and that's what DigiSnaxx and DreamFreely is all about.
\r\nDigiSnaxx is not trying to replace either of the aforementioned entities; we are rather looking to be an evolution, of sorts.
\r\nWe're not trying to be everything either ...\r\nWe're trying to be an accessible, community-centered, directory.
",
+ "short_text": "More info about the project DigiSnaxx.",
+ "target_link": "https://canin.dreamfreely.org/digisnaxx/",
+ "notes": "",
+ "published": true
+ }
+},
+{
+ "model": "events.promo",
+ "pk": 22,
+ "fields": {
+ "title": "Manifesting Empathy",
+ "organization": 1,
+ "promo_type": "Ev",
+ "image": "promo/manifestingempathy.png",
+ "long_text": "Help humans find their roots.",
+ "target_link": "https://www.manifestingempathy.com",
+ "notes": "",
+ "published": true
+ }
+},
+{
+ "model": "events.promo",
+ "pk": 23,
+ "fields": {
+ "title": "idioke",
+ "organization": 1,
+ "promo_type": "Fo",
+ "image": "promo/soltoken.png",
+ "long_text": "We're starting with English, but soon you will be able to practice Spanish as well.We're starting with English, but soon you will be able to practice Spanish as well.We're starting with English, but soon you will be able to practice Spanish as well.",
+ "short_text": "We're starting with English, but soon you will be able to practice Spanish as well.",
+ "target_link": "https://www.idioke.com",
+ "notes": "",
+ "published": true
+ }
+},
+{
+ "model": "events.promo",
+ "pk": 24,
+ "fields": {
+ "title": "Pueblo Andino",
+ "organization": 1,
+ "promo_type": "Jo",
+ "image": "promo/cover.png",
+ "long_text": "These are all products from my travels.
\r\nFrom hand-woven mochilas, to organic mountain farmed coffee and panela and more.
\r\nAll of these products are direct from the producer, while nearly all proceeds are also returned to the producer.
",
+ "short_text": "Authentic products from the Andes Mountains and surrounding regions, mochilas, cafe y panella.",
+ "target_link": "https://www.dreamfreely.org",
+ "notes": "",
+ "published": true
+ }
+},
+{
+ "model": "events.promo",
+ "pk": 25,
+ "fields": {
+ "title": "Manifesting Empathy",
+ "organization": 1,
+ "promo_type": "Jo",
+ "image": "promo/manifestingempathy.png",
+ "long_text": "Help humans find their roots.",
+ "target_link": "https://www.manifestingempathy.com",
+ "notes": "",
+ "published": true
+ }
+},
+{
+ "model": "events.promo",
+ "pk": 26,
+ "fields": {
+ "title": "Pueblo Andino",
+ "organization": 1,
+ "promo_type": "Fo",
+ "image": "promo/cover.png",
+ "long_text": "These are all products from my travels.
\r\nFrom hand-woven mochilas, to organic mountain farmed coffee and panela and more.
\r\nAll of these products are direct from the producer, while nearly all proceeds are also returned to the producer.
",
+ "short_text": "Authentic products from the Andes Mountains and surrounding regions, mochilas, cafe y panella.",
+ "target_link": "https://www.dreamfreely.org",
+ "notes": "",
+ "published": true
+ }
+},
+{
+ "model": "events.promo",
+ "pk": 27,
+ "fields": {
+ "title": "Manifesting Empathy",
+ "organization": 1,
+ "promo_type": "Re",
+ "image": "promo/manifestingempathy.png",
+ "long_text": "Help humans find their roots.",
+ "target_link": "https://www.manifestingempathy.com",
+ "notes": "",
+ "published": true
+ }
+},
+{
+ "model": "events.promo",
+ "pk": 28,
+ "fields": {
+ "title": "DreamFreely",
+ "organization": 1,
+ "promo_type": "Fo",
+ "image": "promo/SOL_Sign.png",
+ "long_text": "This has a limit for the number of characters, and I think that it is about 127 characters. So I think that is about the end soThis has a limit for the number of characters, and I think that it is about 127 characters. So I think that is about the end soThis has a limit for the number of characters, and I think that it is about 127 characters. So I think that is about the end so",
+ "short_text": "This has a limit for the number of characters, and I think that it is about 127 characters. So I think that is about the end so",
+ "target_link": "https://www.dreamfreely.org",
+ "notes": "",
+ "published": true
+ }
+},
+{
+ "model": "events.promo",
+ "pk": 29,
+ "fields": {
+ "title": "Saint Wich Burgers",
+ "organization": 1,
+ "promo_type": "Fo",
+ "image": "promo/soltoken.png",
+ "long_text": "Welcome to Saint Wich Burgers, located on Selby Avenue in Saint Paul, Minnesota, where our love for food and dedication to quality come together in every burger we serve. We don’t believe in shortcuts. Our burgers are made from scratch with premium ingredients, served fresh, and customized to suit your unique tastes.\r\n \r\nFrom our hand-crafted patties to our delicious signature sauces, everything is designed to make each bite something special. Whether you like your burger simple or stacked with all the toppings, we offer a variety of options to satisfy every craving.\r\n \r\nCome see what makes us different. At Saint Wich Burgers, it's all about great burgers, good times, and lasting memories.\r\n \r\nWhether you're in the mood for a simple, classic burger or a sandwich with sides, we’ve got you covered. Enjoy the perfect meal in our inviting space, where you can savor your burger and enjoy time with family and friends.\r\n \r\nOur atmosphere is laid-back, our service is friendly, and our burgers are unforgettable. Stop by today and taste what makes us different!",
+ "short_text": "Serving handcrafted gourmet burgers made with love.",
+ "target_link": "https://www.stwichburgers.com/",
+ "notes": "",
+ "published": false
+ }
+},
+{
+ "model": "events.promo",
+ "pk": 30,
+ "fields": {
+ "title": "Arepas, Las de Queso",
+ "organization": 1,
+ "promo_type": "Re",
+ "image": "promo/SOL_Sign.png",
+ "long_text": "For those who may travel, check out my friends :)",
+ "short_text": "If you're lookin' for the tastiest arepa in Medellin.",
+ "target_link": "https://www.dreamfreely.org",
+ "notes": "",
+ "published": true
+ }
+},
+{
+ "model": "events.promo",
+ "pk": 31,
+ "fields": {
+ "title": "Vigs Guitars",
+ "organization": 1,
+ "promo_type": "Re",
+ "image": "promo/VigGuitarsLogo.sm.jpg",
+ "long_text": "“The Player’s Store” \r\n \r\nWe are an independent, full service, luthier-owned shop serving the working musicians in the Minneapolis/St. Paul metro area since September 2014. Ted Vig’s expert repair is the cornerstone of our business. We specialize in repair and customization, and carry a variety of guitars, basses, mandolins, ukuleles, and accessories.\r\n \r\nWith EXPERT repair, a large stock of parts and interesting, unique and fun instruments, both new and used, you won’t be afraid to come in here, and it’s a big part of the reason that we’ve been coined as “The Players Store.”\r\n \r\nTed Vig has been working full time and building his audience through music stores since 1988. He has a long list of devoted repair clients…this just doesn’t happen overnight! His Custom Vig Handwound Pickups are flying out the door! *SATURDAYS ARE THE BEST DAYS TO COME IN AND TALK TO TED ABOUT THE PICKUPS*\r\n \r\nThis store is Indigenous Female Owned and run by local musicians who SUPPORT local musicians! We have ample street parking in front of the shop and a big parking lot.\r\n \r\nWinner of “Star Tribune’s Readers Choice Best of”\r\nBest Music Instrument Shop\r\n \r\n2021 – SILVER! 2023 – SILVER!\r\n \r\n2022 – GOLD 2024 GOLD!!!!",
+ "short_text": "A luthier-owned music shop.",
+ "target_link": "https://vigguitarshop.com/",
+ "notes": "",
+ "published": false
+ }
+}
+]
diff --git a/fixtures/socials.bluesky.json b/fixtures/socials.bluesky.json
new file mode 100644
index 0000000..cd44fb1
--- /dev/null
+++ b/fixtures/socials.bluesky.json
@@ -0,0 +1,418 @@
+[
+{
+ "model": "socials.sociallink",
+ "pk": 105,
+ "fields": {
+ "cid": "3lcgsfqebuc2u",
+ "uri": "at://did:plc:lqodc52rglx23pkrrweupkiu/app.bsky.feed.post/3lcgsfqebuc2u",
+ "text": "Anyone recall Pres. George Bush pardoning his son, Neil? Well he did. So no need for MSM to keep talking about Joe. www.esquire.com/news-politic...",
+ "link": "https://www.esquire.com/news-politics/politics/a63082689/neil-bush-george-hw-bush-presidential-pardon/",
+ "handle": "jaynesc.bsky.social",
+ "likes": 819,
+ "reposts": 315,
+ "quotes": 38,
+ "replies": 56,
+ "created_at": "2024-12-03T23:33:24.426Z"
+ }
+},
+{
+ "model": "socials.sociallink",
+ "pk": 106,
+ "fields": {
+ "cid": "3lch4rzyz2k2y",
+ "uri": "at://did:plc:7kjfajnyljidr444i5u525mf/app.bsky.feed.post/3lch4rzyz2k2y",
+ "text": "Its probably not great if these are the public coms ",
+ "link": "https://www-nbcnews-com.cdn.ampproject.org/c/s/www.nbcnews.com/news/amp/rcna182694",
+ "handle": "maargentino.com",
+ "likes": 44,
+ "reposts": 20,
+ "quotes": 6,
+ "replies": 5,
+ "created_at": "2024-12-04T02:39:14.730Z"
+ }
+},
+{
+ "model": "socials.sociallink",
+ "pk": 107,
+ "fields": {
+ "cid": "3lcgy6edm3s2h",
+ "uri": "at://did:plc:jmte4w4x7ukciit6lci6ziau/app.bsky.feed.post/3lcgy6edm3s2h",
+ "text": "Black Republicans feel left out of Trump’s 2nd-term picks",
+ "link": "https://abcnews.go.com/Politics/black-republicans-feel-left-trumps-term-picks/story",
+ "handle": "phillewis.bsky.social",
+ "likes": 741,
+ "reposts": 102,
+ "quotes": 477,
+ "replies": 342,
+ "created_at": "2024-12-04T01:16:39.508Z"
+ }
+},
+{
+ "model": "socials.sociallink",
+ "pk": 108,
+ "fields": {
+ "cid": "3lcevnv532c2h",
+ "uri": "at://did:plc:vpfavbhwv4okwh6ydgp5uxf6/app.bsky.feed.post/3lcevnv532c2h",
+ "text": "Oh, I see...so D’Souza just waited until Trump won an election to come out with his cowardly, whimpering mea culpa? ",
+ "link": "https://ca.news.yahoo.com/dinesh-dsouza-apologizes-false-claims-150554547.html",
+ "handle": "sethabramson.bsky.social",
+ "likes": 1302,
+ "reposts": 284,
+ "quotes": 21,
+ "replies": 62,
+ "created_at": "2024-12-03T05:26:19.734Z"
+ }
+},
+{
+ "model": "socials.sociallink",
+ "pk": 109,
+ "fields": {
+ "cid": "3lcdhjcdjww2t",
+ "uri": "at://did:plc:p5yoii26kayabauhkym3vtms/app.bsky.feed.post/3lcdhjcdjww2t",
+ "text": "missing piece in this analysis is that Dems are the party of institutions even when the institutions do not work as designed and/or are openly hostile to democracy talkingpointsmemo.com/edblog/a-par...",
+ "link": "https://talkingpointsmemo.com/edblog/a-party-of-institutions-in-an-era-of-distrust/sharetoken/45ad7d02-036b-433d-b6d1-da881a1a33a5",
+ "handle": "ryanlcooper.com",
+ "likes": 337,
+ "reposts": 49,
+ "quotes": 5,
+ "replies": 15,
+ "created_at": "2024-12-02T15:40:23.156Z"
+ }
+},
+{
+ "model": "socials.sociallink",
+ "pk": 110,
+ "fields": {
+ "cid": "3lcdffd5rus2m",
+ "uri": "at://did:plc:2lwdnmh3l7zslksp5mamg432/app.bsky.feed.post/3lcdffd5rus2m",
+ "text": "An important read from someone who lived through the rise of authoritarianism in Turkey: www.politico.com/news/magazin...",
+ "link": "https://www.politico.com/news/magazine/2024/12/01/anti-trumpists-guide-next-four-years-00191724",
+ "handle": "webjournalist.bsky.social",
+ "likes": 7,
+ "reposts": 4,
+ "quotes": 1,
+ "replies": 0,
+ "created_at": "2024-12-02T15:02:32.839Z"
+ }
+},
+{
+ "model": "socials.sociallink",
+ "pk": 111,
+ "fields": {
+ "cid": "3lcdc2bjtyc2b",
+ "uri": "at://did:plc:y4qouseuxn3ubsd3g7xjct66/app.bsky.feed.post/3lcdc2bjtyc2b",
+ "text": "In Status, @oliverdarcy.bsky.social asks why many in news media are declining to say in public that Trump's cabinet picks pose a fundamental threat to free speech & democracy. ",
+ "link": "https://www.status.news/p/kash-problems",
+ "handle": "timkarr.bsky.social",
+ "likes": 78,
+ "reposts": 26,
+ "quotes": 2,
+ "replies": 4,
+ "created_at": "2024-12-02T14:02:40.813Z"
+ }
+},
+{
+ "model": "socials.sociallink",
+ "pk": 112,
+ "fields": {
+ "cid": "3lcdcjqcoes2g",
+ "uri": "at://did:plc:2eggxzjikdgsfhdfejrgxij3/app.bsky.feed.post/3lcdcjqcoes2g",
+ "text": "The EFJ will stop posting on X as of January 20, 2025. This Federation of journalists has roughly 30,000 members across 44 countries and they join several other news sources in leaving the social media platform. ",
+ "link": "https://www.thelondoneconomic.com/news/media/european-federation-of-journalists-to-stop-posting-content-on-x-386598/",
+ "handle": "dittie.bsky.social",
+ "likes": 7863,
+ "reposts": 1104,
+ "quotes": 69,
+ "replies": 231,
+ "created_at": "2024-12-02T14:11:19.623Z"
+ }
+},
+{
+ "model": "socials.sociallink",
+ "pk": 113,
+ "fields": {
+ "cid": "3lccm4mfgcs2m",
+ "uri": "at://did:plc:hf4htawd64uqbftoudxcicrp/app.bsky.feed.post/3lccm4mfgcs2m",
+ "text": "Corrected link from 2015 web.archive.org/web/20151026...",
+ "link": "https://web.archive.org/web/20151026104206/https://finance.yahoo.com/news/cyberspace-must-die-why-160009823.html",
+ "handle": "dearsarah.bsky.social",
+ "likes": 1,
+ "reposts": 1,
+ "quotes": 0,
+ "replies": 0,
+ "created_at": "2024-12-02T07:30:16.991Z"
+ }
+},
+{
+ "model": "socials.sociallink",
+ "pk": 114,
+ "fields": {
+ "cid": "3lcbk72xapk2w",
+ "uri": "at://did:plc:sx4z6wb34onwynbsqjkfkfdb/app.bsky.feed.post/3lcbk72xapk2w",
+ "text": "Several mid-level federal employees are afraid for their lives after Musk turned them into personal targets for millions of right-wing extremists.",
+ "link": "https://www.cnn.com/2024/11/27/business/elon-musk-government-employees-targets/index.html#openweb-convo",
+ "handle": "bearsox.bsky.social",
+ "likes": 117,
+ "reposts": 56,
+ "quotes": 6,
+ "replies": 13,
+ "created_at": "2024-12-01T21:23:12.142Z"
+ }
+},
+{
+ "model": "socials.sociallink",
+ "pk": 115,
+ "fields": {
+ "cid": "3lcarm3ddg22v",
+ "uri": "at://did:plc:moye3apncjjbyqgb7orp5quj/app.bsky.feed.post/3lcarm3ddg22v",
+ "text": "New: How Trump’s CIA Pick John Ratcliffe Funneled Congressional Campaign Funds To Himself And His Wife ",
+ "link": "https://www.forbes.com/sites/zacheverson/2024/12/01/trump-cia-director-john-ratcliffe-congress-campaign-funds/",
+ "handle": "zacheverson.com",
+ "likes": 472,
+ "reposts": 312,
+ "quotes": 40,
+ "replies": 34,
+ "created_at": "2024-12-01T14:03:05.200Z"
+ }
+},
+{
+ "model": "socials.sociallink",
+ "pk": 116,
+ "fields": {
+ "cid": "3lcbj5c7ss22d",
+ "uri": "at://did:plc:k5nskatzhyxersjilvtnz4lh/app.bsky.feed.post/3lcbj5c7ss22d",
+ "text": "Experts have told women for a long time that certain medical conditions and habits, including poor diet, lack of exercise and smoking, make osteoporosis more likely. ",
+ "link": "https://www.washingtonpost.com/wellness/2024/12/01/pollution-osteoporosis-risk-bones/",
+ "handle": "washingtonpost.com",
+ "likes": 3403,
+ "reposts": 700,
+ "quotes": 53,
+ "replies": 186,
+ "created_at": "2024-12-01T21:04:18.913Z"
+ }
+},
+{
+ "model": "socials.sociallink",
+ "pk": 117,
+ "fields": {
+ "cid": "3lcbjkibbls2x",
+ "uri": "at://did:plc:yc44yg5rjl7zpzivi7jf6msh/app.bsky.feed.post/3lcbjkibbls2x",
+ "text": "Decades after events of ‘Erin Brockovich,’ this town is less than half the size, and some water is still contaminated. From @SilviaElenaFF www.washingtonpost.com/nation/2024/...",
+ "link": "https://www.washingtonpost.com/nation/2024/12/01/erin-brockovich-town-dirty-water/",
+ "handle": "yvonnewingett.bsky.social",
+ "likes": 16,
+ "reposts": 4,
+ "quotes": 0,
+ "replies": 0,
+ "created_at": "2024-12-01T21:11:41.458Z"
+ }
+},
+{
+ "model": "socials.sociallink",
+ "pk": 118,
+ "fields": {
+ "cid": "3lcaxajewek22",
+ "uri": "at://did:plc:ntlym657x4spbf5j4bry4fwv/app.bsky.feed.post/3lcaxajewek22",
+ "text": "And the roots of climate change are the extractive economy, born from systems of colonialism, slavery, and patriarchy. Dominator cultures that built dominator economies. We live in a global culture & economy built by men who burned their grandmothers at the stake. No wonder we have a problem.",
+ "link": "https://centerforpartnership.org/partnerism-partnership-systems/",
+ "handle": "tajjames.bsky.social",
+ "likes": 4,
+ "reposts": 4,
+ "quotes": 0,
+ "replies": 0,
+ "created_at": "2024-12-01T15:43:59.731Z"
+ }
+},
+{
+ "model": "socials.sociallink",
+ "pk": 119,
+ "fields": {
+ "cid": "3lbtcm2fcmk2c",
+ "uri": "at://did:plc:usktoienjig6rm5cxm46j3zl/app.bsky.feed.post/3lbtcm2fcmk2c",
+ "text": "Mass deportations will require massive logistics and infrastructure, which offer a host of opportunities for intervention. ",
+ "link": "https://crimethinc.com/zines/strategizing-to-stop-mass-deportations",
+ "handle": "crimethinc.com",
+ "likes": 231,
+ "reposts": 111,
+ "quotes": 5,
+ "replies": 12,
+ "created_at": "2024-11-26T05:29:59.199Z"
+ }
+},
+{
+ "model": "socials.sociallink",
+ "pk": 120,
+ "fields": {
+ "cid": "3lcazdat6ns26",
+ "uri": "at://did:plc:t57zckxuo4v6t53fjp7j7mcv/app.bsky.feed.post/3lcazdat6ns26",
+ "text": "CNN and MSNBC Post-Election Ratings Continue to Plummet. Good. ",
+ "link": "https://www.dworkinsubstack.com/p/cnn-and-msnbc-post-election-ratings",
+ "handle": "dworkin.bsky.social",
+ "likes": 14208,
+ "reposts": 2348,
+ "quotes": 334,
+ "replies": 1510,
+ "created_at": "2024-12-01T16:21:18.907Z"
+ }
+},
+{
+ "model": "socials.sociallink",
+ "pk": 121,
+ "fields": {
+ "cid": "3lcazqxm75s2v",
+ "uri": "at://did:plc:hsogstbdd4htnofbgowhszmb/app.bsky.feed.post/3lcazqxm75s2v",
+ "text": "The news once again highlights Musk's disregard for environmental regulations. Now that he's aligned himself with president-elect Donald Trump, Musk has vowed to \"delete the mountain of choking regulations that do not serve the greater good\" ",
+ "link": "https://futurism.com/tesla-factories-pollution",
+ "handle": "beingliberal.bsky.social",
+ "likes": 261,
+ "reposts": 116,
+ "quotes": 9,
+ "replies": 18,
+ "created_at": "2024-12-01T16:28:59.003Z"
+ }
+},
+{
+ "model": "socials.sociallink",
+ "pk": 122,
+ "fields": {
+ "cid": "3lc6cbybhyc2s",
+ "uri": "at://did:plc:yip5bzfryjexulet53ahnblx/app.bsky.feed.post/3lc6cbybhyc2s",
+ "text": "Read more on what Trump's plan to abolish the Dept of Education would mean for mental health resources, for starters 👇 ",
+ "link": "https://bit.ly/4188lrx",
+ "handle": "chuckwestover.bsky.social",
+ "likes": 88,
+ "reposts": 38,
+ "quotes": 0,
+ "replies": 3,
+ "created_at": "2024-11-30T14:23:40.846Z"
+ }
+},
+{
+ "model": "socials.sociallink",
+ "pk": 123,
+ "fields": {
+ "cid": "3lc562pum622n",
+ "uri": "at://did:plc:vpfavbhwv4okwh6ydgp5uxf6/app.bsky.feed.post/3lc562pum622n",
+ "text": "The last Buffalo Soldier has just passed away.",
+ "link": "https://www.nytimes.com/2024/11/27/us/robert-dixon-dead.html",
+ "handle": "sethabramson.bsky.social",
+ "likes": 4635,
+ "reposts": 1072,
+ "quotes": 57,
+ "replies": 115,
+ "created_at": "2024-11-30T03:35:22.448Z"
+ }
+},
+{
+ "model": "socials.sociallink",
+ "pk": 124,
+ "fields": {
+ "cid": "3lc27sjstv22k",
+ "uri": "at://did:plc:eclio37ymobqex2ncko63h4r/app.bsky.feed.post/3lc27sjstv22k",
+ "text": "In a guarded compound at the foot of the Rockies, government scientists are working on a new kind of global alarm system: One that can detect if another country, or maybe just an adventurous billionaire, tries to dim the sun.",
+ "link": "https://www.nytimes.com/2024/11/28/climate/geoengineering-early-warning-system.html",
+ "handle": "nytimes.com",
+ "likes": 624,
+ "reposts": 92,
+ "quotes": 41,
+ "replies": 46,
+ "created_at": "2024-11-28T23:28:35.932Z"
+ }
+},
+{
+ "model": "socials.sociallink",
+ "pk": 125,
+ "fields": {
+ "cid": "3lbzbbnp2cx2v",
+ "uri": "at://did:plc:u45hqzk7counfbwyg5edhmvi/app.bsky.feed.post/3lbzbbnp2cx2v",
+ "text": "Did you know: Plankton is doing more to fight warming than humans are",
+ "link": "https://www.splinter.com/study-ocean-life-is-helping-keep-us-cooler-than-we-thought",
+ "handle": "davelevitan.bsky.social",
+ "likes": 164,
+ "reposts": 29,
+ "quotes": 3,
+ "replies": 5,
+ "created_at": "2024-11-28T14:22:17.195Z"
+ }
+},
+{
+ "model": "socials.sociallink",
+ "pk": 126,
+ "fields": {
+ "cid": "3lc4oei4ogs2g",
+ "uri": "at://did:plc:7ksbxruddrzxyof3h4hv34hz/app.bsky.feed.post/3lc4oei4ogs2g",
+ "text": "The deeply unpopular GOP approach to defund the Department of Education and push block grants and vouchers means taking resources away from communities who need support the most—including Title I schools. youtu.be/yRV-tIEaqA0",
+ "link": "https://youtu.be/yRV-tIEaqA0",
+ "handle": "rweingarten.bsky.social",
+ "likes": 1411,
+ "reposts": 497,
+ "quotes": 25,
+ "replies": 64,
+ "created_at": "2024-11-29T22:54:29.999Z"
+ }
+},
+{
+ "model": "socials.sociallink",
+ "pk": 127,
+ "fields": {
+ "cid": "3lc4eihbvjc2t",
+ "uri": "at://did:plc:kaas4r2i5sda5i2cospilxng/app.bsky.feed.post/3lc4eihbvjc2t",
+ "text": "Out of all the reasons to be devastated over the election, the thought of not addressing climate change over the next four years is one of the most disturbing to me. We can't ever get these years of DRILL BABY DRILL back, & I worry it may push us past being able to even mitigate the effects.",
+ "link": "https://media.tenor.com/5IOBTKoOMQEAAAAC/bbc-planet-earth.gif",
+ "handle": "sallydeal4.bsky.social",
+ "likes": 61,
+ "reposts": 19,
+ "quotes": 1,
+ "replies": 2,
+ "created_at": "2024-11-29T19:57:45.921Z"
+ }
+},
+{
+ "model": "socials.sociallink",
+ "pk": 128,
+ "fields": {
+ "cid": "3lc44mv22ds22",
+ "uri": "at://did:plc:yg46xh35b53hcj2gos4lrnbz/app.bsky.feed.post/3lc44mv22ds22",
+ "text": "Anyway, since people keep linking this thread, you should go read this and send some money to @blackamazon.bsky.social and @sotreu.bsky.social and respect the late @sassycrass.bsky.social for their work in uncovering how these networks operate a decade ago. ",
+ "link": "https://slate.com/technology/2019/04/black-feminists-alt-right-twitter-gamergate.html",
+ "handle": "bankuei.bsky.social",
+ "likes": 89,
+ "reposts": 56,
+ "quotes": 2,
+ "replies": 4,
+ "created_at": "2024-11-29T17:37:04.626Z"
+ }
+},
+{
+ "model": "socials.sociallink",
+ "pk": 129,
+ "fields": {
+ "cid": "3lc43vsmfvs2n",
+ "uri": "at://did:plc:kkjomzfxvdwfsma2hgp3lnf5/app.bsky.feed.post/3lc43vsmfvs2n",
+ "text": "New from @akelalacy.bsky.social – ",
+ "link": "https://theintercept.com/2024/11/29/biden-climate-funding-palestine/",
+ "handle": "capitol.press",
+ "likes": 16,
+ "reposts": 18,
+ "quotes": 0,
+ "replies": 0,
+ "created_at": "2024-11-29T17:24:10.329Z"
+ }
+},
+{
+ "model": "socials.sociallink",
+ "pk": 130,
+ "fields": {
+ "cid": "3lc43eunibk2p",
+ "uri": "at://did:plc:sgti3jsgu3luif24tokvth3a/app.bsky.feed.post/3lc43eunibk2p",
+ "text": "Trump Has Emboldened Republicans To Be More Hateful Than Ever To Dem Colleagues talkingpointsmemo.com/news/trump-h... via @TPM",
+ "link": "https://talkingpointsmemo.com/news/trump-has-emboldened-republicans-to-be-more-hateful-than-ever-to-dem-colleagues",
+ "handle": "joshtpm.bsky.social",
+ "likes": 521,
+ "reposts": 143,
+ "quotes": 10,
+ "replies": 44,
+ "created_at": "2024-11-29T17:14:42.038Z"
+ }
+}
+]
diff --git a/leg_info/__init__.py b/leg_info/__init__.py
new file mode 100644
index 0000000..e69de29
diff --git a/leg_info/admin.py b/leg_info/admin.py
new file mode 100644
index 0000000..a771ff9
--- /dev/null
+++ b/leg_info/admin.py
@@ -0,0 +1,14 @@
+from django.contrib import admin
+from .models import *
+
+
+# class EventAdmin(admin.ModelAdmin):
+# # prepopulated_fields = {"slug": ("shortname",)}
+# list_display = ( "show_title", "event_type", "show_date",)
+# list_filter = ("venue", "event_type")
+
+
+# Register your models here.
+admin.site.register(Organization)
+admin.site.register(Snacker)
+admin.site.register(Bill)
\ No newline at end of file
diff --git a/leg_info/apps.py b/leg_info/apps.py
new file mode 100644
index 0000000..511159b
--- /dev/null
+++ b/leg_info/apps.py
@@ -0,0 +1,6 @@
+from django.apps import AppConfig
+
+
+class LegInfoConfig(AppConfig):
+ default_auto_field = 'django.db.models.BigAutoField'
+ name = 'leg_info'
diff --git a/leg_info/migrations/0001_initial.py b/leg_info/migrations/0001_initial.py
new file mode 100644
index 0000000..60f2f05
--- /dev/null
+++ b/leg_info/migrations/0001_initial.py
@@ -0,0 +1,55 @@
+# Generated by Django 4.1.7 on 2023-03-12 21:57
+
+from django.db import migrations, models
+
+
+class Migration(migrations.Migration):
+
+ initial = True
+
+ dependencies = [
+ ]
+
+ operations = [
+ migrations.CreateModel(
+ name='Organization',
+ fields=[
+ ('id', models.BigAutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
+ ('name', models.CharField(max_length=64)),
+ ('phone_number', models.CharField(blank=True, max_length=200, null=True)),
+ ('email_address', models.CharField(blank=True, max_length=64, null=True)),
+ ],
+ options={
+ 'verbose_name_plural': 'Organizations',
+ 'ordering': ['name'],
+ },
+ ),
+ migrations.CreateModel(
+ name='Snacker',
+ fields=[
+ ('id', models.BigAutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
+ ('name', models.CharField(max_length=64)),
+ ('phone_number', models.CharField(blank=True, max_length=200, null=True)),
+ ('email_address', models.CharField(blank=True, max_length=64, null=True)),
+ ],
+ options={
+ 'verbose_name_plural': 'Snackers',
+ 'ordering': ['name'],
+ },
+ ),
+ migrations.CreateModel(
+ name='Bill',
+ fields=[
+ ('id', models.BigAutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
+ ('name', models.CharField(blank=True, max_length=64, null=True)),
+ ('bill_num', models.CharField(max_length=16)),
+ ('description', models.CharField(blank=True, max_length=32, null=True)),
+ ('org_tag', models.ManyToManyField(blank=True, to='leg_info.organization')),
+ ('snax_tag', models.ManyToManyField(blank=True, to='leg_info.snacker')),
+ ],
+ options={
+ 'verbose_name_plural': 'Bills',
+ 'ordering': ['bill_num'],
+ },
+ ),
+ ]
diff --git a/leg_info/migrations/0002_bill_event_tag.py b/leg_info/migrations/0002_bill_event_tag.py
new file mode 100644
index 0000000..bd8979a
--- /dev/null
+++ b/leg_info/migrations/0002_bill_event_tag.py
@@ -0,0 +1,19 @@
+# Generated by Django 4.1.7 on 2023-03-12 22:01
+
+from django.db import migrations, models
+
+
+class Migration(migrations.Migration):
+
+ dependencies = [
+ ('events', '0004_alter_event_options_event_show_day_and_more'),
+ ('leg_info', '0001_initial'),
+ ]
+
+ operations = [
+ migrations.AddField(
+ model_name='bill',
+ name='event_tag',
+ field=models.ManyToManyField(blank=True, to='events.event'),
+ ),
+ ]
diff --git a/leg_info/migrations/__init__.py b/leg_info/migrations/__init__.py
new file mode 100644
index 0000000..e69de29
diff --git a/leg_info/models.py b/leg_info/models.py
new file mode 100644
index 0000000..c2f9eb2
--- /dev/null
+++ b/leg_info/models.py
@@ -0,0 +1,54 @@
+from django.db import models
+from events.models import Event
+
+# Create your models here.
+class Organization(models.Model):
+ name = models.CharField(max_length=64)
+ phone_number = models.CharField(max_length=200, blank=True, null=True)
+ email_address = models.CharField(max_length=64, blank=True, null=True)
+
+ class Meta:
+ verbose_name_plural = "Organizations"
+ ordering = ['name']
+
+ def __unicode__(self):
+ return "%s" % self.name
+
+ def __str__(self):
+ return u'%s' % self.name
+
+
+class Snacker(models.Model):
+ name = models.CharField(max_length=64)
+ phone_number = models.CharField(max_length=200, blank=True, null=True)
+ email_address = models.CharField(max_length=64, blank=True, null=True)
+
+ class Meta:
+ verbose_name_plural = "Snackers"
+ ordering = ['name']
+
+ def __unicode__(self):
+ return "%s" % self.name
+
+ def __str__(self):
+ return u'%s' % self.name
+
+
+class Bill(models.Model):
+ name = models.CharField(max_length=64, blank=True, null=True)
+ bill_num = models.CharField(max_length=16)
+ description = models.CharField(max_length=32, blank=True, null=True)
+ org_tag = models.ManyToManyField(Organization, blank=True)
+ snax_tag = models.ManyToManyField(Snacker, blank=True)
+ event_tag = models.ManyToManyField(Event, blank=True)
+
+
+ class Meta:
+ verbose_name_plural = "Bills"
+ ordering = ['bill_num']
+
+ def __unicode__(self):
+ return "%s" % self.bill_num
+
+ def __str__(self):
+ return u'%s' % self.bill_num
diff --git a/leg_info/serializers.py b/leg_info/serializers.py
new file mode 100644
index 0000000..090d967
--- /dev/null
+++ b/leg_info/serializers.py
@@ -0,0 +1,24 @@
+from rest_framework import serializers
+from django.contrib.auth.models import User
+from .models import Event, Venue
+
+############
+## Events ##
+############
+
+class VenueSerializer(serializers.ModelSerializer):
+ class Meta:
+ model = Venue
+ fields = ('id', 'name', 'city')
+ # fields = '__all__'
+
+
+class EventSerializer(serializers.ModelSerializer):
+ venue = VenueSerializer(many=False)
+ event_type = serializers.CharField(source='get_event_type_display')
+ # target_language = serializers.SerializerMethodField()
+ class Meta:
+ model = Event
+ fields = '__all__'
+ depth = 2
+# fields = ('id', 'name',)
diff --git a/leg_info/tests.py b/leg_info/tests.py
new file mode 100644
index 0000000..7ce503c
--- /dev/null
+++ b/leg_info/tests.py
@@ -0,0 +1,3 @@
+from django.test import TestCase
+
+# Create your tests here.
diff --git a/leg_info/urls.py b/leg_info/urls.py
new file mode 100644
index 0000000..7976600
--- /dev/null
+++ b/leg_info/urls.py
@@ -0,0 +1,22 @@
+"""ds_events URL Configuration
+
+The `urlpatterns` list routes URLs to views. For more information please see:
+ https://docs.djangoproject.com/en/4.1/topics/http/urls/
+Examples:
+Function views
+ 1. Add an import: from my_app import views
+ 2. Add a URL to urlpatterns: path('', views.home, name='home')
+Class-based views
+ 1. Add an import: from other_app.views import Home
+ 2. Add a URL to urlpatterns: path('', Home.as_view(), name='home')
+Including another URLconf
+ 1. Import the include() function: from django.urls import include, path
+ 2. Add a URL to urlpatterns: path('blog/', include('blog.urls'))
+"""
+from django.contrib import admin
+from django.urls import path, include, re_path
+from .views import *
+
+urlpatterns = [
+ re_path(r'^events/', EventsAPIView.as_view(), name="get-events"),
+]
diff --git a/leg_info/views.py b/leg_info/views.py
new file mode 100644
index 0000000..0526992
--- /dev/null
+++ b/leg_info/views.py
@@ -0,0 +1,29 @@
+from django.shortcuts import render
+from datetime import datetime, timedelta
+import pytz
+
+from .models import *
+from .serializers import *
+
+from django.db.models import Q
+
+from rest_framework import generics
+from rest_framework.decorators import authentication_classes, permission_classes
+from rest_framework.authentication import SessionAuthentication, BasicAuthentication
+from rest_framework.permissions import IsAuthenticated
+
+from django_filters.rest_framework import DjangoFilterBackend
+from rest_framework import filters
+
+td = timedelta(hours=8)
+odt = datetime.now() - td
+
+# Create your views here.
+@permission_classes([])
+@authentication_classes([])
+class EventsAPIView(generics.ListAPIView):
+ serializer_class = EventSerializer
+ queryset = Event.objects.filter(show_date__gte=odt).order_by('show_date')
+ filter_backends = [DjangoFilterBackend, filters.SearchFilter]
+ filterset_fields = ['show_title', 'event_type', 'show_date', 'show_day']
+ search_fields = ['show_title', 'event_type']
\ No newline at end of file
diff --git a/manage.py b/manage.py
new file mode 100644
index 0000000..0045107
--- /dev/null
+++ b/manage.py
@@ -0,0 +1,22 @@
+#!/usr/bin/env python
+"""Django's command-line utility for administrative tasks."""
+import os
+import sys
+
+
+def main():
+ """Run administrative tasks."""
+ os.environ.setdefault('DJANGO_SETTINGS_MODULE', 'ds_events.settings')
+ try:
+ from django.core.management import execute_from_command_line
+ except ImportError as exc:
+ raise ImportError(
+ "Couldn't import Django. Are you sure it's installed and "
+ "available on your PYTHONPATH environment variable? Did you "
+ "forget to activate a virtual environment?"
+ ) from exc
+ execute_from_command_line(sys.argv)
+
+
+if __name__ == '__main__':
+ main()
diff --git a/media/promo/SOL_Sign.invert2.png b/media/promo/SOL_Sign.invert2.png
new file mode 100644
index 0000000..264019a
Binary files /dev/null and b/media/promo/SOL_Sign.invert2.png differ
diff --git a/media/promo/SOL_Sign.png b/media/promo/SOL_Sign.png
new file mode 100644
index 0000000..264019a
Binary files /dev/null and b/media/promo/SOL_Sign.png differ
diff --git a/media/promo/VigGuitarsLogo.sm.jpg b/media/promo/VigGuitarsLogo.sm.jpg
new file mode 100644
index 0000000..935f38e
Binary files /dev/null and b/media/promo/VigGuitarsLogo.sm.jpg differ
diff --git a/media/promo/cover.png b/media/promo/cover.png
new file mode 100644
index 0000000..ce1f26c
Binary files /dev/null and b/media/promo/cover.png differ
diff --git a/media/promo/desk/SOL_Sign.invert.png b/media/promo/desk/SOL_Sign.invert.png
new file mode 100644
index 0000000..52363d6
Binary files /dev/null and b/media/promo/desk/SOL_Sign.invert.png differ
diff --git a/media/promo/desk/SOL_Sign.invert_250.png b/media/promo/desk/SOL_Sign.invert_250.png
new file mode 100644
index 0000000..03b920c
Binary files /dev/null and b/media/promo/desk/SOL_Sign.invert_250.png differ
diff --git a/media/promo/desk/SOL_Sign.invert_300.png b/media/promo/desk/SOL_Sign.invert_300.png
new file mode 100644
index 0000000..73a0f83
Binary files /dev/null and b/media/promo/desk/SOL_Sign.invert_300.png differ
diff --git a/media/promo/manifestingempathy.png b/media/promo/manifestingempathy.png
new file mode 100644
index 0000000..60a5f2f
Binary files /dev/null and b/media/promo/manifestingempathy.png differ
diff --git a/media/promo/mobile/SOL_Sign.invert.png b/media/promo/mobile/SOL_Sign.invert.png
new file mode 100644
index 0000000..8e0b3ab
Binary files /dev/null and b/media/promo/mobile/SOL_Sign.invert.png differ
diff --git a/media/promo/pa_cover.jpg b/media/promo/pa_cover.jpg
new file mode 100644
index 0000000..ea5e37a
Binary files /dev/null and b/media/promo/pa_cover.jpg differ
diff --git a/media/promo/pa_cover_GYcVScF.jpg b/media/promo/pa_cover_GYcVScF.jpg
new file mode 100644
index 0000000..ea5e37a
Binary files /dev/null and b/media/promo/pa_cover_GYcVScF.jpg differ
diff --git a/media/promo/pa_cover_OjpadWL.jpg b/media/promo/pa_cover_OjpadWL.jpg
new file mode 100644
index 0000000..ea5e37a
Binary files /dev/null and b/media/promo/pa_cover_OjpadWL.jpg differ
diff --git a/media/promo/soltoken.png b/media/promo/soltoken.png
new file mode 100644
index 0000000..4ca7b8c
Binary files /dev/null and b/media/promo/soltoken.png differ
diff --git a/py-update.sh b/py-update.sh
new file mode 100644
index 0000000..ea0e633
--- /dev/null
+++ b/py-update.sh
@@ -0,0 +1 @@
+pip --disable-pip-version-check list --outdated --format=json | python -c "import json, sys; print('\n'.join([x['name'] for x in json.load(sys.stdin)]))" | xargs -n1 pip install -U
\ No newline at end of file
diff --git a/requirements.txt b/requirements.txt
new file mode 100644
index 0000000..8cfeb36
--- /dev/null
+++ b/requirements.txt
@@ -0,0 +1,42 @@
+aiohappyeyeballs==2.4.3
+aiohttp==3.10.9
+aiohttp-retry==2.8.3
+aiosignal==1.3.1
+asgiref==3.8.1
+async-generator==1.10
+attrs==24.2.0
+certifi==2024.8.30
+charset-normalizer==3.3.2
+Django==5.1.1
+django-filter==24.3
+django-rest-durin==1.1.0
+djangorestframework==3.15.2
+frozenlist==1.4.1
+h11==0.14.0
+humanize==4.10.0
+icalendar==6.0.0
+idna==3.10
+lxml==5.3.0
+multidict==6.1.0
+outcome==1.3.0.post0
+pillow==10.4.0
+PyJWT==2.9.0
+PySocks==1.7.1
+python-dateutil==2.9.0.post0
+pytz==2024.2
+requests==2.32.3
+selenium==4.25.0
+six==1.16.0
+sniffio==1.3.1
+sortedcontainers==2.4.0
+sqlparse==0.5.1
+trio==0.26.2
+trio-websocket==0.11.1
+twilio==9.3.3
+typing_extensions==4.12.2
+tzdata==2024.2
+urllib3==2.2.3
+websocket-client==1.8.0
+wsproto==1.2.0
+xvfbwrapper==0.2.9
+yarl==1.13.1
diff --git a/socials/__init__.py b/socials/__init__.py
new file mode 100644
index 0000000..e69de29
diff --git a/socials/admin.py b/socials/admin.py
new file mode 100644
index 0000000..2bac2ac
--- /dev/null
+++ b/socials/admin.py
@@ -0,0 +1,21 @@
+from django.contrib import admin
+from .models import *
+
+
+# class OrganizationAdmin(admin.ModelAdmin):
+# # prepopulated_fields = {"slug": ("shortname",)}
+# list_display = ( "name", "city",)
+# # list_filter = ("promo_type",)
+
+class PostAdmin(admin.ModelAdmin):
+# prepopulated_fields = {"slug": ("shortname",)}
+ list_display = ( "handle", "platform")
+ list_filter = ("platform",)
+
+
+
+
+# Register your models here.
+admin.site.register(Faq)
+admin.site.register(SocialLink, PostAdmin)
+# admin.site.register(SocialPost, PostAdmin)
diff --git a/socials/apps.py b/socials/apps.py
new file mode 100644
index 0000000..db0d34c
--- /dev/null
+++ b/socials/apps.py
@@ -0,0 +1,6 @@
+from django.apps import AppConfig
+
+
+class SocialsConfig(AppConfig):
+ default_auto_field = 'django.db.models.BigAutoField'
+ name = 'socials'
diff --git a/socials/migrations/0001_initial.py b/socials/migrations/0001_initial.py
new file mode 100644
index 0000000..4919911
--- /dev/null
+++ b/socials/migrations/0001_initial.py
@@ -0,0 +1,65 @@
+# Generated by Django 5.1.1 on 2024-12-04 05:42
+
+from django.db import migrations, models
+
+
+class Migration(migrations.Migration):
+
+ initial = True
+
+ dependencies = [
+ ]
+
+ operations = [
+ migrations.CreateModel(
+ name='Faq',
+ fields=[
+ ('id', models.BigAutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
+ ('question', models.CharField(max_length=516)),
+ ('post', models.TextField()),
+ ('seq_num', models.SmallIntegerField()),
+ ('published', models.BooleanField(default=False)),
+ ],
+ options={
+ 'verbose_name_plural': 'FAQs',
+ 'ordering': ['seq_num'],
+ },
+ ),
+ migrations.CreateModel(
+ name='SocialPost',
+ fields=[
+ ('id', models.BigAutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
+ ('title', models.CharField(max_length=64)),
+ ('post', models.TextField()),
+ ('created_at', models.DateField(auto_now=True)),
+ ('author', models.CharField(blank=True, max_length=64, null=True)),
+ ('published', models.BooleanField(default=False)),
+ ],
+ options={
+ 'verbose_name_plural': 'Social Posts',
+ 'ordering': ['created_at', 'title'],
+ },
+ ),
+ migrations.CreateModel(
+ name='SocialLink',
+ fields=[
+ ('id', models.BigAutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
+ ('cid', models.CharField(blank=True, max_length=255, null=True)),
+ ('uri', models.URLField()),
+ ('text', models.CharField(blank=True, max_length=515, null=True)),
+ ('text_link', models.URLField(blank=True, null=True)),
+ ('handle', models.CharField(blank=True, max_length=63, null=True)),
+ ('likes', models.IntegerField()),
+ ('reposts', models.IntegerField()),
+ ('quotes', models.IntegerField()),
+ ('replies', models.IntegerField()),
+ ('more_details', models.JSONField(blank=True, null=True)),
+ ('created_at', models.DateTimeField(auto_now=True)),
+ ],
+ options={
+ 'verbose_name_plural': 'Events',
+ 'ordering': ['created_at'],
+ 'unique_together': {('uri',)},
+ },
+ ),
+ ]
diff --git a/socials/migrations/0002_alter_sociallink_options_and_more.py b/socials/migrations/0002_alter_sociallink_options_and_more.py
new file mode 100644
index 0000000..05869e2
--- /dev/null
+++ b/socials/migrations/0002_alter_sociallink_options_and_more.py
@@ -0,0 +1,31 @@
+# Generated by Django 5.1.1 on 2024-12-04 07:34
+
+from django.db import migrations, models
+
+
+class Migration(migrations.Migration):
+
+ dependencies = [
+ ('socials', '0001_initial'),
+ ]
+
+ operations = [
+ migrations.AlterModelOptions(
+ name='sociallink',
+ options={'ordering': ['-created_at'], 'verbose_name_plural': 'Social Links'},
+ ),
+ migrations.RenameField(
+ model_name='sociallink',
+ old_name='text_link',
+ new_name='link',
+ ),
+ migrations.RemoveField(
+ model_name='sociallink',
+ name='more_details',
+ ),
+ migrations.AlterField(
+ model_name='sociallink',
+ name='created_at',
+ field=models.DateTimeField(),
+ ),
+ ]
diff --git a/socials/migrations/0003_socialpost_uri.py b/socials/migrations/0003_socialpost_uri.py
new file mode 100644
index 0000000..be4233b
--- /dev/null
+++ b/socials/migrations/0003_socialpost_uri.py
@@ -0,0 +1,19 @@
+# Generated by Django 5.1.1 on 2025-10-03 01:42
+
+from django.db import migrations, models
+
+
+class Migration(migrations.Migration):
+
+ dependencies = [
+ ('socials', '0002_alter_sociallink_options_and_more'),
+ ]
+
+ operations = [
+ migrations.AddField(
+ model_name='socialpost',
+ name='uri',
+ field=models.URLField(default='test'),
+ preserve_default=False,
+ ),
+ ]
diff --git a/socials/migrations/0004_alter_sociallink_options_sociallink_rt_handle_and_more.py b/socials/migrations/0004_alter_sociallink_options_sociallink_rt_handle_and_more.py
new file mode 100644
index 0000000..bfc0ba2
--- /dev/null
+++ b/socials/migrations/0004_alter_sociallink_options_sociallink_rt_handle_and_more.py
@@ -0,0 +1,38 @@
+# Generated by Django 5.1.1 on 2025-10-03 05:44
+
+from django.db import migrations, models
+
+
+class Migration(migrations.Migration):
+
+ dependencies = [
+ ('socials', '0003_socialpost_uri'),
+ ]
+
+ operations = [
+ migrations.AlterModelOptions(
+ name='sociallink',
+ options={'ordering': ['-likes'], 'verbose_name_plural': 'Social Links'},
+ ),
+ migrations.AddField(
+ model_name='sociallink',
+ name='rt_handle',
+ field=models.CharField(blank=True, max_length=63, null=True),
+ ),
+ migrations.AddField(
+ model_name='sociallink',
+ name='rt_link',
+ field=models.URLField(blank=True, null=True),
+ ),
+ migrations.AddField(
+ model_name='sociallink',
+ name='rt_text',
+ field=models.CharField(blank=True, max_length=515, null=True),
+ ),
+ migrations.AddField(
+ model_name='sociallink',
+ name='rt_uri',
+ field=models.URLField(default='blank'),
+ preserve_default=False,
+ ),
+ ]
diff --git a/socials/migrations/0005_alter_sociallink_rt_link_alter_sociallink_uri.py b/socials/migrations/0005_alter_sociallink_rt_link_alter_sociallink_uri.py
new file mode 100644
index 0000000..02e043f
--- /dev/null
+++ b/socials/migrations/0005_alter_sociallink_rt_link_alter_sociallink_uri.py
@@ -0,0 +1,23 @@
+# Generated by Django 5.1.1 on 2025-10-03 05:50
+
+from django.db import migrations, models
+
+
+class Migration(migrations.Migration):
+
+ dependencies = [
+ ('socials', '0004_alter_sociallink_options_sociallink_rt_handle_and_more'),
+ ]
+
+ operations = [
+ migrations.AlterField(
+ model_name='sociallink',
+ name='rt_link',
+ field=models.CharField(blank=True, max_length=64, null=True),
+ ),
+ migrations.AlterField(
+ model_name='sociallink',
+ name='uri',
+ field=models.CharField(blank=True, max_length=64, null=True),
+ ),
+ ]
diff --git a/socials/migrations/0006_remove_sociallink_cid_alter_sociallink_rt_link_and_more.py b/socials/migrations/0006_remove_sociallink_cid_alter_sociallink_rt_link_and_more.py
new file mode 100644
index 0000000..ee68cf5
--- /dev/null
+++ b/socials/migrations/0006_remove_sociallink_cid_alter_sociallink_rt_link_and_more.py
@@ -0,0 +1,32 @@
+# Generated by Django 5.1.1 on 2025-10-03 05:59
+
+from django.db import migrations, models
+
+
+class Migration(migrations.Migration):
+
+ dependencies = [
+ ('socials', '0005_alter_sociallink_rt_link_alter_sociallink_uri'),
+ ]
+
+ operations = [
+ migrations.RemoveField(
+ model_name='sociallink',
+ name='cid',
+ ),
+ migrations.AlterField(
+ model_name='sociallink',
+ name='rt_link',
+ field=models.URLField(blank=True, null=True),
+ ),
+ migrations.AlterField(
+ model_name='sociallink',
+ name='rt_uri',
+ field=models.CharField(blank=True, max_length=63, null=True),
+ ),
+ migrations.AlterField(
+ model_name='sociallink',
+ name='uri',
+ field=models.CharField(blank=True, max_length=63, null=True),
+ ),
+ ]
diff --git a/socials/migrations/0007_alter_sociallink_options_sociallink_platform.py b/socials/migrations/0007_alter_sociallink_options_sociallink_platform.py
new file mode 100644
index 0000000..0e053c2
--- /dev/null
+++ b/socials/migrations/0007_alter_sociallink_options_sociallink_platform.py
@@ -0,0 +1,23 @@
+# Generated by Django 5.1.1 on 2025-10-04 00:19
+
+from django.db import migrations, models
+
+
+class Migration(migrations.Migration):
+
+ dependencies = [
+ ('socials', '0006_remove_sociallink_cid_alter_sociallink_rt_link_and_more'),
+ ]
+
+ operations = [
+ migrations.AlterModelOptions(
+ name='sociallink',
+ options={'ordering': ['-created_at'], 'verbose_name_plural': 'Social Links'},
+ ),
+ migrations.AddField(
+ model_name='sociallink',
+ name='platform',
+ field=models.CharField(default='bluesky', max_length=16),
+ preserve_default=False,
+ ),
+ ]
diff --git a/socials/migrations/0008_alter_sociallink_likes_alter_sociallink_quotes_and_more.py b/socials/migrations/0008_alter_sociallink_likes_alter_sociallink_quotes_and_more.py
new file mode 100644
index 0000000..f0801a3
--- /dev/null
+++ b/socials/migrations/0008_alter_sociallink_likes_alter_sociallink_quotes_and_more.py
@@ -0,0 +1,33 @@
+# Generated by Django 5.1.1 on 2025-10-04 00:28
+
+from django.db import migrations, models
+
+
+class Migration(migrations.Migration):
+
+ dependencies = [
+ ('socials', '0007_alter_sociallink_options_sociallink_platform'),
+ ]
+
+ operations = [
+ migrations.AlterField(
+ model_name='sociallink',
+ name='likes',
+ field=models.IntegerField(blank=True, null=True),
+ ),
+ migrations.AlterField(
+ model_name='sociallink',
+ name='quotes',
+ field=models.IntegerField(blank=True, null=True),
+ ),
+ migrations.AlterField(
+ model_name='sociallink',
+ name='replies',
+ field=models.IntegerField(blank=True, null=True),
+ ),
+ migrations.AlterField(
+ model_name='sociallink',
+ name='reposts',
+ field=models.IntegerField(blank=True, null=True),
+ ),
+ ]
diff --git a/socials/migrations/0009_sociallink_pub_link_sociallink_published.py b/socials/migrations/0009_sociallink_pub_link_sociallink_published.py
new file mode 100644
index 0000000..61cda7c
--- /dev/null
+++ b/socials/migrations/0009_sociallink_pub_link_sociallink_published.py
@@ -0,0 +1,23 @@
+# Generated by Django 5.1.1 on 2025-10-04 20:07
+
+from django.db import migrations, models
+
+
+class Migration(migrations.Migration):
+
+ dependencies = [
+ ('socials', '0008_alter_sociallink_likes_alter_sociallink_quotes_and_more'),
+ ]
+
+ operations = [
+ migrations.AddField(
+ model_name='sociallink',
+ name='pub_link',
+ field=models.URLField(blank=True, null=True),
+ ),
+ migrations.AddField(
+ model_name='sociallink',
+ name='published',
+ field=models.BooleanField(default=0),
+ ),
+ ]
diff --git a/socials/migrations/0010_socialimg.py b/socials/migrations/0010_socialimg.py
new file mode 100644
index 0000000..1414e12
--- /dev/null
+++ b/socials/migrations/0010_socialimg.py
@@ -0,0 +1,30 @@
+# Generated by Django 5.1.1 on 2025-10-05 07:56
+
+from django.db import migrations, models
+
+
+class Migration(migrations.Migration):
+
+ dependencies = [
+ ('socials', '0009_sociallink_pub_link_sociallink_published'),
+ ]
+
+ operations = [
+ migrations.CreateModel(
+ name='SocialImg',
+ fields=[
+ ('id', models.BigAutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
+ ('uri', models.CharField(blank=True, max_length=63, null=True)),
+ ('text', models.CharField(blank=True, max_length=515, null=True)),
+ ('img_link', models.URLField(blank=True, null=True)),
+ ('handle', models.CharField(blank=True, max_length=63, null=True)),
+ ('created_at', models.DateTimeField()),
+ ('platform', models.CharField(max_length=16)),
+ ],
+ options={
+ 'verbose_name_plural': 'Social Images',
+ 'ordering': ['-created_at'],
+ 'unique_together': {('uri',)},
+ },
+ ),
+ ]
diff --git a/socials/migrations/__init__.py b/socials/migrations/__init__.py
new file mode 100644
index 0000000..e69de29
diff --git a/socials/models.py b/socials/models.py
new file mode 100644
index 0000000..2e086f2
--- /dev/null
+++ b/socials/models.py
@@ -0,0 +1,97 @@
+from django.db import models
+from django.core.files.storage import FileSystemStorage
+from django.contrib.auth.models import User
+
+# Create your models here.
+
+
+class Faq(models.Model):
+ question = models.CharField(max_length=516)
+ post = models.TextField()
+ seq_num = models.SmallIntegerField()
+ published = models.BooleanField(default=False)
+
+ class Meta:
+ verbose_name_plural = "FAQs"
+ ordering = ['seq_num',]
+
+ def __unicode__(self):
+ return "%s" % self.question
+
+ def __str__(self):
+ return u'%s' % self.question
+
+
+class SocialPost(models.Model):
+ title = models.CharField(max_length=64)
+ post = models.TextField()
+ uri = models.URLField()
+ created_at = models.DateField(auto_now=True)
+ author = models.CharField(max_length=64, blank=True, null=True)
+ published = models.BooleanField(default=False)
+
+ class Meta:
+ verbose_name_plural = "Social Posts"
+ ordering = ['created_at', 'title']
+
+ def __unicode__(self):
+ return "%s" % self.title
+
+ def __str__(self):
+ return u'%s' % self.title
+
+
+class SocialLink(models.Model):
+ uri = models.CharField(max_length=63, blank=True, null=True)
+ text = models.CharField(max_length=515, blank=True, null=True)
+ link = models.URLField(blank=True, null=True)
+ handle = models.CharField(max_length=63, blank=True, null=True)
+ likes = models.IntegerField(blank=True, null=True)
+ reposts = models.IntegerField(blank=True, null=True)
+ quotes = models.IntegerField(blank=True, null=True)
+ replies = models.IntegerField(blank=True, null=True)
+ created_at = models.DateTimeField()
+ platform = models.CharField(max_length=16)
+
+ rt_uri = models.CharField(max_length=63, blank=True, null=True)
+ rt_text = models.CharField(max_length=515, blank=True, null=True)
+ rt_link = models.URLField(blank=True, null=True)
+ rt_handle = models.CharField(max_length=63, blank=True, null=True)
+
+ published = models.BooleanField(default=0)
+ pub_link = models.URLField(blank=True, null=True)
+
+ class Meta:
+ unique_together = ("uri",)
+ verbose_name_plural = "Social Links"
+ # ordering = ['-likes', ]
+ ordering = ['-created_at', ]
+
+
+ def __unicode__(self):
+ return "%s-" % self.handle
+
+ def __str__(self):
+ return u'%s' % self.handle
+
+
+class SocialImg(models.Model):
+ uri = models.CharField(max_length=63, blank=True, null=True)
+ text = models.CharField(max_length=515, blank=True, null=True)
+ img_link = models.URLField(blank=True, null=True)
+ handle = models.CharField(max_length=63, blank=True, null=True)
+ created_at = models.DateTimeField()
+ platform = models.CharField(max_length=16)
+
+ class Meta:
+ unique_together = ("uri",)
+ verbose_name_plural = "Social Images"
+ # ordering = ['-likes', ]
+ ordering = ['-created_at', ]
+
+
+ def __unicode__(self):
+ return "%s-" % self.handle
+
+ def __str__(self):
+ return u'%s' % self.handle
\ No newline at end of file
diff --git a/socials/serializers.py b/socials/serializers.py
new file mode 100644
index 0000000..61441da
--- /dev/null
+++ b/socials/serializers.py
@@ -0,0 +1,39 @@
+from rest_framework import serializers
+from .models import *
+
+from django.db import models
+from django.contrib.auth.models import User
+from rest_framework.permissions import BasePermission
+
+
+
+class FAQSerializer(serializers.ModelSerializer):
+ class Meta:
+ model = Faq
+ # fields = ('id', 'name', 'website', 'city')
+ fields = '__all__'
+
+
+class SocialPostSerializer(serializers.ModelSerializer):
+ class Meta:
+ model = SocialPost
+ # fields = ('id', 'name', 'website', 'city')
+ fields = '__all__'
+
+
+class SocialLinkSerializer(serializers.ModelSerializer):
+ # target_language = serializers.SerializerMethodField()
+ class Meta:
+ model = SocialLink
+ fields = '__all__'
+ # depth = 2
+# fields = ('id', 'name',)
+
+
+class SocialImgsSerializer(serializers.ModelSerializer):
+ # target_language = serializers.SerializerMethodField()
+ class Meta:
+ model = SocialImg
+ fields = '__all__'
+ # depth = 2
+# fields = ('id', 'name',)
diff --git a/socials/tests.py b/socials/tests.py
new file mode 100644
index 0000000..7ce503c
--- /dev/null
+++ b/socials/tests.py
@@ -0,0 +1,3 @@
+from django.test import TestCase
+
+# Create your tests here.
diff --git a/socials/urls.py b/socials/urls.py
new file mode 100644
index 0000000..1d94c53
--- /dev/null
+++ b/socials/urls.py
@@ -0,0 +1,27 @@
+"""ds_events URL Configuration
+
+The `urlpatterns` list routes URLs to views. For more information please see:
+ https://docs.djangoproject.com/en/4.1/topics/http/urls/
+Examples:
+Function views
+ 1. Add an import: from my_app import views
+ 2. Add a URL to urlpatterns: path('', views.home, name='home')
+Class-based views
+ 1. Add an import: from other_app.views import Home
+ 2. Add a URL to urlpatterns: path('', Home.as_view(), name='home')
+Including another URLconf
+ 1. Import the include() function: from django.urls import include, path
+ 2. Add a URL to urlpatterns: path('blog/', include('blog.urls'))
+"""
+from django.contrib import admin
+from django.urls import path, include, re_path
+from .views import *
+
+urlpatterns = [
+ # re_path(r'^faqs/', FAQsAPIView.as_view(), name="get-faqs"),
+ re_path(r'^links/', SocialLinksAPIView.as_view(), name="get-links"),
+ # re_path(r'^posts/', SocialPostsAPIView.as_view(), name="get-posts"),
+ re_path(r'^images/', SocialImgsAPIView.as_view(), name="get-images"),
+ # re_path(r'^events-token/', EventsTokenAPIView.as_view(), name="get-token-events"),
+
+]
diff --git a/socials/views.py b/socials/views.py
new file mode 100644
index 0000000..6ae5f93
--- /dev/null
+++ b/socials/views.py
@@ -0,0 +1,50 @@
+from django.shortcuts import render
+from datetime import datetime, timedelta
+import pytz, random
+
+from .models import *
+from .serializers import *
+
+from django.db.models import Q
+
+from rest_framework import generics
+from rest_framework.decorators import authentication_classes, permission_classes
+from rest_framework.authentication import SessionAuthentication, BasicAuthentication
+
+from rest_framework.permissions import IsAuthenticated
+# from durin.auth import TokenAuthentication
+
+# from durin.views import APIAccessTokenView
+
+from django_filters.rest_framework import DjangoFilterBackend
+from rest_framework import filters
+
+from rest_framework.response import Response
+
+td = timedelta(hours=8)
+odt = datetime.now() - td
+
+# Create your views here.
+class FAQsAPIView(generics.ListAPIView):
+ serializer_class = FAQSerializer
+ queryset = Faq.objects.filter(published=True).order_by('seq_num')
+ # filter_backends = [DjangoFilterBackend, filters.SearchFilter]
+ # filterset_fields = ['show_title', 'event_type', 'show_date', 'show_day', 'venue__name']
+ # search_fields = ['show_title', 'event_type']
+
+
+class SocialPostsAPIView(generics.ListAPIView):
+ serializer_class = SocialPostSerializer
+ queryset = SocialPost.objects.filter(published=True)
+
+
+class SocialLinksAPIView(generics.ListAPIView):
+ serializer_class = SocialLinkSerializer
+ queryset = SocialLink.objects.all()[:50]
+
+
+class SocialImgsAPIView(generics.ListAPIView):
+ serializer_class = SocialImgsSerializer
+ queryset = SocialImg.objects.all()[:18]
+
+
diff --git a/static/admin/css/autocomplete.css b/static/admin/css/autocomplete.css
new file mode 100644
index 0000000..69c94e7
--- /dev/null
+++ b/static/admin/css/autocomplete.css
@@ -0,0 +1,275 @@
+select.admin-autocomplete {
+ width: 20em;
+}
+
+.select2-container--admin-autocomplete.select2-container {
+ min-height: 30px;
+}
+
+.select2-container--admin-autocomplete .select2-selection--single,
+.select2-container--admin-autocomplete .select2-selection--multiple {
+ min-height: 30px;
+ padding: 0;
+}
+
+.select2-container--admin-autocomplete.select2-container--focus .select2-selection,
+.select2-container--admin-autocomplete.select2-container--open .select2-selection {
+ border-color: var(--body-quiet-color);
+ min-height: 30px;
+}
+
+.select2-container--admin-autocomplete.select2-container--focus .select2-selection.select2-selection--single,
+.select2-container--admin-autocomplete.select2-container--open .select2-selection.select2-selection--single {
+ padding: 0;
+}
+
+.select2-container--admin-autocomplete.select2-container--focus .select2-selection.select2-selection--multiple,
+.select2-container--admin-autocomplete.select2-container--open .select2-selection.select2-selection--multiple {
+ padding: 0;
+}
+
+.select2-container--admin-autocomplete .select2-selection--single {
+ background-color: var(--body-bg);
+ border: 1px solid var(--border-color);
+ border-radius: 4px;
+}
+
+.select2-container--admin-autocomplete .select2-selection--single .select2-selection__rendered {
+ color: var(--body-fg);
+ line-height: 30px;
+}
+
+.select2-container--admin-autocomplete .select2-selection--single .select2-selection__clear {
+ cursor: pointer;
+ float: right;
+ font-weight: bold;
+}
+
+.select2-container--admin-autocomplete .select2-selection--single .select2-selection__placeholder {
+ color: var(--body-quiet-color);
+}
+
+.select2-container--admin-autocomplete .select2-selection--single .select2-selection__arrow {
+ height: 26px;
+ position: absolute;
+ top: 1px;
+ right: 1px;
+ width: 20px;
+}
+
+.select2-container--admin-autocomplete .select2-selection--single .select2-selection__arrow b {
+ border-color: #888 transparent transparent transparent;
+ border-style: solid;
+ border-width: 5px 4px 0 4px;
+ height: 0;
+ left: 50%;
+ margin-left: -4px;
+ margin-top: -2px;
+ position: absolute;
+ top: 50%;
+ width: 0;
+}
+
+.select2-container--admin-autocomplete[dir="rtl"] .select2-selection--single .select2-selection__clear {
+ float: left;
+}
+
+.select2-container--admin-autocomplete[dir="rtl"] .select2-selection--single .select2-selection__arrow {
+ left: 1px;
+ right: auto;
+}
+
+.select2-container--admin-autocomplete.select2-container--disabled .select2-selection--single {
+ background-color: var(--darkened-bg);
+ cursor: default;
+}
+
+.select2-container--admin-autocomplete.select2-container--disabled .select2-selection--single .select2-selection__clear {
+ display: none;
+}
+
+.select2-container--admin-autocomplete.select2-container--open .select2-selection--single .select2-selection__arrow b {
+ border-color: transparent transparent #888 transparent;
+ border-width: 0 4px 5px 4px;
+}
+
+.select2-container--admin-autocomplete .select2-selection--multiple {
+ background-color: var(--body-bg);
+ border: 1px solid var(--border-color);
+ border-radius: 4px;
+ cursor: text;
+}
+
+.select2-container--admin-autocomplete .select2-selection--multiple .select2-selection__rendered {
+ box-sizing: border-box;
+ list-style: none;
+ margin: 0;
+ padding: 0 10px 5px 5px;
+ width: 100%;
+ display: flex;
+ flex-wrap: wrap;
+}
+
+.select2-container--admin-autocomplete .select2-selection--multiple .select2-selection__rendered li {
+ list-style: none;
+}
+
+.select2-container--admin-autocomplete .select2-selection--multiple .select2-selection__placeholder {
+ color: var(--body-quiet-color);
+ margin-top: 5px;
+ float: left;
+}
+
+.select2-container--admin-autocomplete .select2-selection--multiple .select2-selection__clear {
+ cursor: pointer;
+ float: right;
+ font-weight: bold;
+ margin: 5px;
+ position: absolute;
+ right: 0;
+}
+
+.select2-container--admin-autocomplete .select2-selection--multiple .select2-selection__choice {
+ background-color: var(--darkened-bg);
+ border: 1px solid var(--border-color);
+ border-radius: 4px;
+ cursor: default;
+ float: left;
+ margin-right: 5px;
+ margin-top: 5px;
+ padding: 0 5px;
+}
+
+.select2-container--admin-autocomplete .select2-selection--multiple .select2-selection__choice__remove {
+ color: var(--body-quiet-color);
+ cursor: pointer;
+ display: inline-block;
+ font-weight: bold;
+ margin-right: 2px;
+}
+
+.select2-container--admin-autocomplete .select2-selection--multiple .select2-selection__choice__remove:hover {
+ color: var(--body-fg);
+}
+
+.select2-container--admin-autocomplete[dir="rtl"] .select2-selection--multiple .select2-selection__choice, .select2-container--admin-autocomplete[dir="rtl"] .select2-selection--multiple .select2-selection__placeholder, .select2-container--admin-autocomplete[dir="rtl"] .select2-selection--multiple .select2-search--inline {
+ float: right;
+}
+
+.select2-container--admin-autocomplete[dir="rtl"] .select2-selection--multiple .select2-selection__choice {
+ margin-left: 5px;
+ margin-right: auto;
+}
+
+.select2-container--admin-autocomplete[dir="rtl"] .select2-selection--multiple .select2-selection__choice__remove {
+ margin-left: 2px;
+ margin-right: auto;
+}
+
+.select2-container--admin-autocomplete.select2-container--focus .select2-selection--multiple {
+ border: solid var(--body-quiet-color) 1px;
+ outline: 0;
+}
+
+.select2-container--admin-autocomplete.select2-container--disabled .select2-selection--multiple {
+ background-color: var(--darkened-bg);
+ cursor: default;
+}
+
+.select2-container--admin-autocomplete.select2-container--disabled .select2-selection__choice__remove {
+ display: none;
+}
+
+.select2-container--admin-autocomplete.select2-container--open.select2-container--above .select2-selection--single, .select2-container--admin-autocomplete.select2-container--open.select2-container--above .select2-selection--multiple {
+ border-top-left-radius: 0;
+ border-top-right-radius: 0;
+}
+
+.select2-container--admin-autocomplete.select2-container--open.select2-container--below .select2-selection--single, .select2-container--admin-autocomplete.select2-container--open.select2-container--below .select2-selection--multiple {
+ border-bottom-left-radius: 0;
+ border-bottom-right-radius: 0;
+}
+
+.select2-container--admin-autocomplete .select2-search--dropdown {
+ background: var(--darkened-bg);
+}
+
+.select2-container--admin-autocomplete .select2-search--dropdown .select2-search__field {
+ background: var(--body-bg);
+ color: var(--body-fg);
+ border: 1px solid var(--border-color);
+ border-radius: 4px;
+}
+
+.select2-container--admin-autocomplete .select2-search--inline .select2-search__field {
+ background: transparent;
+ color: var(--body-fg);
+ border: none;
+ outline: 0;
+ box-shadow: none;
+ -webkit-appearance: textfield;
+}
+
+.select2-container--admin-autocomplete .select2-results > .select2-results__options {
+ max-height: 200px;
+ overflow-y: auto;
+ color: var(--body-fg);
+ background: var(--body-bg);
+}
+
+.select2-container--admin-autocomplete .select2-results__option[role=group] {
+ padding: 0;
+}
+
+.select2-container--admin-autocomplete .select2-results__option[aria-disabled=true] {
+ color: var(--body-quiet-color);
+}
+
+.select2-container--admin-autocomplete .select2-results__option[aria-selected=true] {
+ background-color: var(--selected-bg);
+ color: var(--body-fg);
+}
+
+.select2-container--admin-autocomplete .select2-results__option .select2-results__option {
+ padding-left: 1em;
+}
+
+.select2-container--admin-autocomplete .select2-results__option .select2-results__option .select2-results__group {
+ padding-left: 0;
+}
+
+.select2-container--admin-autocomplete .select2-results__option .select2-results__option .select2-results__option {
+ margin-left: -1em;
+ padding-left: 2em;
+}
+
+.select2-container--admin-autocomplete .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
+ margin-left: -2em;
+ padding-left: 3em;
+}
+
+.select2-container--admin-autocomplete .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
+ margin-left: -3em;
+ padding-left: 4em;
+}
+
+.select2-container--admin-autocomplete .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
+ margin-left: -4em;
+ padding-left: 5em;
+}
+
+.select2-container--admin-autocomplete .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
+ margin-left: -5em;
+ padding-left: 6em;
+}
+
+.select2-container--admin-autocomplete .select2-results__option--highlighted[aria-selected] {
+ background-color: var(--primary);
+ color: var(--primary-fg);
+}
+
+.select2-container--admin-autocomplete .select2-results__group {
+ cursor: default;
+ display: block;
+ padding: 6px;
+}
diff --git a/static/admin/css/base.css b/static/admin/css/base.css
new file mode 100644
index 0000000..1ff93e2
--- /dev/null
+++ b/static/admin/css/base.css
@@ -0,0 +1,1089 @@
+/*
+ DJANGO Admin styles
+*/
+
+@import url(fonts.css);
+
+/* VARIABLE DEFINITIONS */
+:root {
+ --primary: #79aec8;
+ --secondary: #417690;
+ --accent: #f5dd5d;
+ --primary-fg: #fff;
+
+ --body-fg: #333;
+ --body-bg: #fff;
+ --body-quiet-color: #666;
+ --body-loud-color: #000;
+
+ --header-color: #ffc;
+ --header-branding-color: var(--accent);
+ --header-bg: var(--secondary);
+ --header-link-color: var(--primary-fg);
+
+ --breadcrumbs-fg: #c4dce8;
+ --breadcrumbs-link-fg: var(--body-bg);
+ --breadcrumbs-bg: var(--primary);
+
+ --link-fg: #447e9b;
+ --link-hover-color: #036;
+ --link-selected-fg: #5b80b2;
+
+ --hairline-color: #e8e8e8;
+ --border-color: #ccc;
+
+ --error-fg: #ba2121;
+
+ --message-success-bg: #dfd;
+ --message-warning-bg: #ffc;
+ --message-error-bg: #ffefef;
+
+ --darkened-bg: #f8f8f8; /* A bit darker than --body-bg */
+ --selected-bg: #e4e4e4; /* E.g. selected table cells */
+ --selected-row: #ffc;
+
+ --button-fg: #fff;
+ --button-bg: var(--primary);
+ --button-hover-bg: #609ab6;
+ --default-button-bg: var(--secondary);
+ --default-button-hover-bg: #205067;
+ --close-button-bg: #888; /* Previously #bbb, contrast 1.92 */
+ --close-button-hover-bg: #747474;
+ --delete-button-bg: #ba2121;
+ --delete-button-hover-bg: #a41515;
+
+ --object-tools-fg: var(--button-fg);
+ --object-tools-bg: var(--close-button-bg);
+ --object-tools-hover-bg: var(--close-button-hover-bg);
+}
+
+html, body {
+ height: 100%;
+}
+
+body {
+ margin: 0;
+ padding: 0;
+ font-size: 0.875rem;
+ font-family: "Roboto","Lucida Grande","DejaVu Sans","Bitstream Vera Sans",Verdana,Arial,sans-serif;
+ color: var(--body-fg);
+ background: var(--body-bg);
+}
+
+/* LINKS */
+
+a:link, a:visited {
+ color: var(--link-fg);
+ text-decoration: none;
+ transition: color 0.15s, background 0.15s;
+}
+
+a:focus, a:hover {
+ color: var(--link-hover-color);
+}
+
+a:focus {
+ text-decoration: underline;
+}
+
+a img {
+ border: none;
+}
+
+a.section:link, a.section:visited {
+ color: var(--header-link-color);
+ text-decoration: none;
+}
+
+a.section:focus, a.section:hover {
+ text-decoration: underline;
+}
+
+/* GLOBAL DEFAULTS */
+
+p, ol, ul, dl {
+ margin: .2em 0 .8em 0;
+}
+
+p {
+ padding: 0;
+ line-height: 140%;
+}
+
+h1,h2,h3,h4,h5 {
+ font-weight: bold;
+}
+
+h1 {
+ margin: 0 0 20px;
+ font-weight: 300;
+ font-size: 1.25rem;
+ color: var(--body-quiet-color);
+}
+
+h2 {
+ font-size: 1rem;
+ margin: 1em 0 .5em 0;
+}
+
+h2.subhead {
+ font-weight: normal;
+ margin-top: 0;
+}
+
+h3 {
+ font-size: 0.875rem;
+ margin: .8em 0 .3em 0;
+ color: var(--body-quiet-color);
+ font-weight: bold;
+}
+
+h4 {
+ font-size: 0.75rem;
+ margin: 1em 0 .8em 0;
+ padding-bottom: 3px;
+}
+
+h5 {
+ font-size: 0.625rem;
+ margin: 1.5em 0 .5em 0;
+ color: var(--body-quiet-color);
+ text-transform: uppercase;
+ letter-spacing: 1px;
+}
+
+ul > li {
+ list-style-type: square;
+ padding: 1px 0;
+}
+
+li ul {
+ margin-bottom: 0;
+}
+
+li, dt, dd {
+ font-size: 0.8125rem;
+ line-height: 20px;
+}
+
+dt {
+ font-weight: bold;
+ margin-top: 4px;
+}
+
+dd {
+ margin-left: 0;
+}
+
+form {
+ margin: 0;
+ padding: 0;
+}
+
+fieldset {
+ margin: 0;
+ min-width: 0;
+ padding: 0;
+ border: none;
+ border-top: 1px solid var(--hairline-color);
+}
+
+blockquote {
+ font-size: 0.6875rem;
+ color: #777;
+ margin-left: 2px;
+ padding-left: 10px;
+ border-left: 5px solid #ddd;
+}
+
+code, pre {
+ font-family: "Bitstream Vera Sans Mono", Monaco, "Courier New", Courier, monospace;
+ color: var(--body-quiet-color);
+ font-size: 0.75rem;
+ overflow-x: auto;
+}
+
+pre.literal-block {
+ margin: 10px;
+ background: var(--darkened-bg);
+ padding: 6px 8px;
+}
+
+code strong {
+ color: #930;
+}
+
+hr {
+ clear: both;
+ color: var(--hairline-color);
+ background-color: var(--hairline-color);
+ height: 1px;
+ border: none;
+ margin: 0;
+ padding: 0;
+ line-height: 1px;
+}
+
+/* TEXT STYLES & MODIFIERS */
+
+.small {
+ font-size: 0.6875rem;
+}
+
+.mini {
+ font-size: 0.625rem;
+}
+
+.help, p.help, form p.help, div.help, form div.help, div.help li {
+ font-size: 0.6875rem;
+ color: var(--body-quiet-color);
+}
+
+div.help ul {
+ margin-bottom: 0;
+}
+
+.help-tooltip {
+ cursor: help;
+}
+
+p img, h1 img, h2 img, h3 img, h4 img, td img {
+ vertical-align: middle;
+}
+
+.quiet, a.quiet:link, a.quiet:visited {
+ color: var(--body-quiet-color);
+ font-weight: normal;
+}
+
+.clear {
+ clear: both;
+}
+
+.nowrap {
+ white-space: nowrap;
+}
+
+.hidden {
+ display: none !important;
+}
+
+/* TABLES */
+
+table {
+ border-collapse: collapse;
+ border-color: var(--border-color);
+}
+
+td, th {
+ font-size: 0.8125rem;
+ line-height: 16px;
+ border-bottom: 1px solid var(--hairline-color);
+ vertical-align: top;
+ padding: 8px;
+}
+
+th {
+ font-weight: 600;
+ text-align: left;
+}
+
+thead th,
+tfoot td {
+ color: var(--body-quiet-color);
+ padding: 5px 10px;
+ font-size: 0.6875rem;
+ background: var(--body-bg);
+ border: none;
+ border-top: 1px solid var(--hairline-color);
+ border-bottom: 1px solid var(--hairline-color);
+}
+
+tfoot td {
+ border-bottom: none;
+ border-top: 1px solid var(--hairline-color);
+}
+
+thead th.required {
+ color: var(--body-loud-color);
+}
+
+tr.alt {
+ background: var(--darkened-bg);
+}
+
+tr:nth-child(odd), .row-form-errors {
+ background: var(--body-bg);
+}
+
+tr:nth-child(even),
+tr:nth-child(even) .errorlist,
+tr:nth-child(odd) + .row-form-errors,
+tr:nth-child(odd) + .row-form-errors .errorlist {
+ background: var(--darkened-bg);
+}
+
+/* SORTABLE TABLES */
+
+thead th {
+ padding: 5px 10px;
+ line-height: normal;
+ text-transform: uppercase;
+ background: var(--darkened-bg);
+}
+
+thead th a:link, thead th a:visited {
+ color: var(--body-quiet-color);
+}
+
+thead th.sorted {
+ background: var(--selected-bg);
+}
+
+thead th.sorted .text {
+ padding-right: 42px;
+}
+
+table thead th .text span {
+ padding: 8px 10px;
+ display: block;
+}
+
+table thead th .text a {
+ display: block;
+ cursor: pointer;
+ padding: 8px 10px;
+}
+
+table thead th .text a:focus, table thead th .text a:hover {
+ background: var(--selected-bg);
+}
+
+thead th.sorted a.sortremove {
+ visibility: hidden;
+}
+
+table thead th.sorted:hover a.sortremove {
+ visibility: visible;
+}
+
+table thead th.sorted .sortoptions {
+ display: block;
+ padding: 9px 5px 0 5px;
+ float: right;
+ text-align: right;
+}
+
+table thead th.sorted .sortpriority {
+ font-size: .8em;
+ min-width: 12px;
+ text-align: center;
+ vertical-align: 3px;
+ margin-left: 2px;
+ margin-right: 2px;
+}
+
+table thead th.sorted .sortoptions a {
+ position: relative;
+ width: 14px;
+ height: 14px;
+ display: inline-block;
+ background: url(../img/sorting-icons.svg) 0 0 no-repeat;
+ background-size: 14px auto;
+}
+
+table thead th.sorted .sortoptions a.sortremove {
+ background-position: 0 0;
+}
+
+table thead th.sorted .sortoptions a.sortremove:after {
+ content: '\\';
+ position: absolute;
+ top: -6px;
+ left: 3px;
+ font-weight: 200;
+ font-size: 1.125rem;
+ color: var(--body-quiet-color);
+}
+
+table thead th.sorted .sortoptions a.sortremove:focus:after,
+table thead th.sorted .sortoptions a.sortremove:hover:after {
+ color: var(--link-fg);
+}
+
+table thead th.sorted .sortoptions a.sortremove:focus,
+table thead th.sorted .sortoptions a.sortremove:hover {
+ background-position: 0 -14px;
+}
+
+table thead th.sorted .sortoptions a.ascending {
+ background-position: 0 -28px;
+}
+
+table thead th.sorted .sortoptions a.ascending:focus,
+table thead th.sorted .sortoptions a.ascending:hover {
+ background-position: 0 -42px;
+}
+
+table thead th.sorted .sortoptions a.descending {
+ top: 1px;
+ background-position: 0 -56px;
+}
+
+table thead th.sorted .sortoptions a.descending:focus,
+table thead th.sorted .sortoptions a.descending:hover {
+ background-position: 0 -70px;
+}
+
+/* FORM DEFAULTS */
+
+input, textarea, select, .form-row p, form .button {
+ margin: 2px 0;
+ padding: 2px 3px;
+ vertical-align: middle;
+ font-family: "Roboto", "Lucida Grande", Verdana, Arial, sans-serif;
+ font-weight: normal;
+ font-size: 0.8125rem;
+}
+.form-row div.help {
+ padding: 2px 3px;
+}
+
+textarea {
+ vertical-align: top;
+}
+
+input[type=text], input[type=password], input[type=email], input[type=url],
+input[type=number], input[type=tel], textarea, select, .vTextField {
+ border: 1px solid var(--border-color);
+ border-radius: 4px;
+ padding: 5px 6px;
+ margin-top: 0;
+ color: var(--body-fg);
+ background-color: var(--body-bg);
+}
+
+input[type=text]:focus, input[type=password]:focus, input[type=email]:focus,
+input[type=url]:focus, input[type=number]:focus, input[type=tel]:focus,
+textarea:focus, select:focus, .vTextField:focus {
+ border-color: var(--body-quiet-color);
+}
+
+select {
+ height: 30px;
+}
+
+select[multiple] {
+ /* Allow HTML size attribute to override the height in the rule above. */
+ height: auto;
+ min-height: 150px;
+}
+
+/* FORM BUTTONS */
+
+.button, input[type=submit], input[type=button], .submit-row input, a.button {
+ background: var(--button-bg);
+ padding: 10px 15px;
+ border: none;
+ border-radius: 4px;
+ color: var(--button-fg);
+ cursor: pointer;
+ transition: background 0.15s;
+}
+
+a.button {
+ padding: 4px 5px;
+}
+
+.button:active, input[type=submit]:active, input[type=button]:active,
+.button:focus, input[type=submit]:focus, input[type=button]:focus,
+.button:hover, input[type=submit]:hover, input[type=button]:hover {
+ background: var(--button-hover-bg);
+}
+
+.button[disabled], input[type=submit][disabled], input[type=button][disabled] {
+ opacity: 0.4;
+}
+
+.button.default, input[type=submit].default, .submit-row input.default {
+ float: right;
+ border: none;
+ font-weight: 400;
+ background: var(--default-button-bg);
+}
+
+.button.default:active, input[type=submit].default:active,
+.button.default:focus, input[type=submit].default:focus,
+.button.default:hover, input[type=submit].default:hover {
+ background: var(--default-button-hover-bg);
+}
+
+.button[disabled].default,
+input[type=submit][disabled].default,
+input[type=button][disabled].default {
+ opacity: 0.4;
+}
+
+
+/* MODULES */
+
+.module {
+ border: none;
+ margin-bottom: 30px;
+ background: var(--body-bg);
+}
+
+.module p, .module ul, .module h3, .module h4, .module dl, .module pre {
+ padding-left: 10px;
+ padding-right: 10px;
+}
+
+.module blockquote {
+ margin-left: 12px;
+}
+
+.module ul, .module ol {
+ margin-left: 1.5em;
+}
+
+.module h3 {
+ margin-top: .6em;
+}
+
+.module h2, .module caption, .inline-group h2 {
+ margin: 0;
+ padding: 8px;
+ font-weight: 400;
+ font-size: 0.8125rem;
+ text-align: left;
+ background: var(--primary);
+ color: var(--header-link-color);
+}
+
+.module caption,
+.inline-group h2 {
+ font-size: 0.75rem;
+ letter-spacing: 0.5px;
+ text-transform: uppercase;
+}
+
+.module table {
+ border-collapse: collapse;
+}
+
+/* MESSAGES & ERRORS */
+
+ul.messagelist {
+ padding: 0;
+ margin: 0;
+}
+
+ul.messagelist li {
+ display: block;
+ font-weight: 400;
+ font-size: 0.8125rem;
+ padding: 10px 10px 10px 65px;
+ margin: 0 0 10px 0;
+ background: var(--message-success-bg) url(../img/icon-yes.svg) 40px 12px no-repeat;
+ background-size: 16px auto;
+ color: var(--body-fg);
+ word-break: break-word;
+}
+
+ul.messagelist li.warning {
+ background: var(--message-warning-bg) url(../img/icon-alert.svg) 40px 14px no-repeat;
+ background-size: 14px auto;
+}
+
+ul.messagelist li.error {
+ background: var(--message-error-bg) url(../img/icon-no.svg) 40px 12px no-repeat;
+ background-size: 16px auto;
+}
+
+.errornote {
+ font-size: 0.875rem;
+ font-weight: 700;
+ display: block;
+ padding: 10px 12px;
+ margin: 0 0 10px 0;
+ color: var(--error-fg);
+ border: 1px solid var(--error-fg);
+ border-radius: 4px;
+ background-color: var(--body-bg);
+ background-position: 5px 12px;
+ overflow-wrap: break-word;
+}
+
+ul.errorlist {
+ margin: 0 0 4px;
+ padding: 0;
+ color: var(--error-fg);
+ background: var(--body-bg);
+}
+
+ul.errorlist li {
+ font-size: 0.8125rem;
+ display: block;
+ margin-bottom: 4px;
+ overflow-wrap: break-word;
+}
+
+ul.errorlist li:first-child {
+ margin-top: 0;
+}
+
+ul.errorlist li a {
+ color: inherit;
+ text-decoration: underline;
+}
+
+td ul.errorlist {
+ margin: 0;
+ padding: 0;
+}
+
+td ul.errorlist li {
+ margin: 0;
+}
+
+.form-row.errors {
+ margin: 0;
+ border: none;
+ border-bottom: 1px solid var(--hairline-color);
+ background: none;
+}
+
+.form-row.errors ul.errorlist li {
+ padding-left: 0;
+}
+
+.errors input, .errors select, .errors textarea,
+td ul.errorlist + input, td ul.errorlist + select, td ul.errorlist + textarea {
+ border: 1px solid var(--error-fg);
+}
+
+.description {
+ font-size: 0.75rem;
+ padding: 5px 0 0 12px;
+}
+
+/* BREADCRUMBS */
+
+div.breadcrumbs {
+ background: var(--breadcrumbs-bg);
+ padding: 10px 40px;
+ border: none;
+ color: var(--breadcrumbs-fg);
+ text-align: left;
+}
+
+div.breadcrumbs a {
+ color: var(--breadcrumbs-link-fg);
+}
+
+div.breadcrumbs a:focus, div.breadcrumbs a:hover {
+ color: var(--breadcrumbs-fg);
+}
+
+/* ACTION ICONS */
+
+.viewlink, .inlineviewlink {
+ padding-left: 16px;
+ background: url(../img/icon-viewlink.svg) 0 1px no-repeat;
+}
+
+.addlink {
+ padding-left: 16px;
+ background: url(../img/icon-addlink.svg) 0 1px no-repeat;
+}
+
+.changelink, .inlinechangelink {
+ padding-left: 16px;
+ background: url(../img/icon-changelink.svg) 0 1px no-repeat;
+}
+
+.deletelink {
+ padding-left: 16px;
+ background: url(../img/icon-deletelink.svg) 0 1px no-repeat;
+}
+
+a.deletelink:link, a.deletelink:visited {
+ color: #CC3434; /* XXX Probably unused? */
+}
+
+a.deletelink:focus, a.deletelink:hover {
+ color: #993333; /* XXX Probably unused? */
+ text-decoration: none;
+}
+
+/* OBJECT TOOLS */
+
+.object-tools {
+ font-size: 0.625rem;
+ font-weight: bold;
+ padding-left: 0;
+ float: right;
+ position: relative;
+ margin-top: -48px;
+}
+
+.object-tools li {
+ display: block;
+ float: left;
+ margin-left: 5px;
+ height: 16px;
+}
+
+.object-tools a {
+ border-radius: 15px;
+}
+
+.object-tools a:link, .object-tools a:visited {
+ display: block;
+ float: left;
+ padding: 3px 12px;
+ background: var(--object-tools-bg);
+ color: var(--object-tools-fg);
+ font-weight: 400;
+ font-size: 0.6875rem;
+ text-transform: uppercase;
+ letter-spacing: 0.5px;
+}
+
+.object-tools a:focus, .object-tools a:hover {
+ background-color: var(--object-tools-hover-bg);
+}
+
+.object-tools a:focus{
+ text-decoration: none;
+}
+
+.object-tools a.viewsitelink, .object-tools a.addlink {
+ background-repeat: no-repeat;
+ background-position: right 7px center;
+ padding-right: 26px;
+}
+
+.object-tools a.viewsitelink {
+ background-image: url(../img/tooltag-arrowright.svg);
+}
+
+.object-tools a.addlink {
+ background-image: url(../img/tooltag-add.svg);
+}
+
+/* OBJECT HISTORY */
+
+#change-history table {
+ width: 100%;
+}
+
+#change-history table tbody th {
+ width: 16em;
+}
+
+#change-history .paginator {
+ color: var(--body-quiet-color);
+ border-bottom: 1px solid var(--hairline-color);
+ background: var(--body-bg);
+ overflow: hidden;
+}
+
+/* PAGE STRUCTURE */
+
+#container {
+ position: relative;
+ width: 100%;
+ min-width: 980px;
+ padding: 0;
+ display: flex;
+ flex-direction: column;
+ height: 100%;
+}
+
+#container > div {
+ flex-shrink: 0;
+}
+
+#container > .main {
+ display: flex;
+ flex: 1 0 auto;
+}
+
+.main > .content {
+ flex: 1 0;
+ max-width: 100%;
+}
+
+#content {
+ padding: 20px 40px;
+}
+
+.dashboard #content {
+ width: 600px;
+}
+
+#content-main {
+ float: left;
+ width: 100%;
+}
+
+#content-related {
+ float: right;
+ width: 260px;
+ position: relative;
+ margin-right: -300px;
+}
+
+#footer {
+ clear: both;
+ padding: 10px;
+}
+
+/* COLUMN TYPES */
+
+.colMS {
+ margin-right: 300px;
+}
+
+.colSM {
+ margin-left: 300px;
+}
+
+.colSM #content-related {
+ float: left;
+ margin-right: 0;
+ margin-left: -300px;
+}
+
+.colSM #content-main {
+ float: right;
+}
+
+.popup .colM {
+ width: auto;
+}
+
+/* HEADER */
+
+#header {
+ width: auto;
+ height: auto;
+ display: flex;
+ justify-content: space-between;
+ align-items: center;
+ padding: 10px 40px;
+ background: var(--header-bg);
+ color: var(--header-color);
+ overflow: hidden;
+}
+
+#header a:link, #header a:visited, #logout-form button {
+ color: var(--header-link-color);
+}
+
+#header a:focus , #header a:hover {
+ text-decoration: underline;
+}
+
+#branding {
+ float: left;
+}
+
+#branding h1 {
+ padding: 0;
+ margin: 0 20px 0 0;
+ font-weight: 300;
+ font-size: 1.5rem;
+ color: var(--header-branding-color);
+}
+
+#branding h1 a:link, #branding h1 a:visited {
+ color: var(--accent);
+}
+
+#branding h2 {
+ padding: 0 10px;
+ font-size: 0.875rem;
+ margin: -8px 0 8px 0;
+ font-weight: normal;
+ color: var(--header-color);
+}
+
+#branding a:hover {
+ text-decoration: none;
+}
+
+#logout-form {
+ display: inline;
+}
+
+#logout-form button {
+ background: none;
+ border: 0;
+ cursor: pointer;
+ font-family: "Roboto","Lucida Grande","DejaVu Sans","Bitstream Vera Sans",Verdana,Arial,sans-serif;
+}
+
+#user-tools {
+ float: right;
+ margin: 0 0 0 20px;
+ text-align: right;
+}
+
+#user-tools, #logout-form button{
+ padding: 0;
+ font-weight: 300;
+ font-size: 0.6875rem;
+ letter-spacing: 0.5px;
+ text-transform: uppercase;
+}
+
+#user-tools a, #logout-form button {
+ border-bottom: 1px solid rgba(255, 255, 255, 0.25);
+}
+
+#user-tools a:focus, #user-tools a:hover,
+#logout-form button:active, #logout-form button:hover {
+ text-decoration: none;
+ border-bottom: 0;
+}
+
+#logout-form button:active, #logout-form button:hover {
+ margin-bottom: 1px;
+}
+
+/* SIDEBAR */
+
+#content-related {
+ background: var(--darkened-bg);
+}
+
+#content-related .module {
+ background: none;
+}
+
+#content-related h3 {
+ color: var(--body-quiet-color);
+ padding: 0 16px;
+ margin: 0 0 16px;
+}
+
+#content-related h4 {
+ font-size: 0.8125rem;
+}
+
+#content-related p {
+ padding-left: 16px;
+ padding-right: 16px;
+}
+
+#content-related .actionlist {
+ padding: 0;
+ margin: 16px;
+}
+
+#content-related .actionlist li {
+ line-height: 1.2;
+ margin-bottom: 10px;
+ padding-left: 18px;
+}
+
+#content-related .module h2 {
+ background: none;
+ padding: 16px;
+ margin-bottom: 16px;
+ border-bottom: 1px solid var(--hairline-color);
+ font-size: 1.125rem;
+ color: var(--body-fg);
+}
+
+.delete-confirmation form input[type="submit"] {
+ background: var(--delete-button-bg);
+ border-radius: 4px;
+ padding: 10px 15px;
+ color: var(--button-fg);
+}
+
+.delete-confirmation form input[type="submit"]:active,
+.delete-confirmation form input[type="submit"]:focus,
+.delete-confirmation form input[type="submit"]:hover {
+ background: var(--delete-button-hover-bg);
+}
+
+.delete-confirmation form .cancel-link {
+ display: inline-block;
+ vertical-align: middle;
+ height: 15px;
+ line-height: 15px;
+ border-radius: 4px;
+ padding: 10px 15px;
+ color: var(--button-fg);
+ background: var(--close-button-bg);
+ margin: 0 0 0 10px;
+}
+
+.delete-confirmation form .cancel-link:active,
+.delete-confirmation form .cancel-link:focus,
+.delete-confirmation form .cancel-link:hover {
+ background: var(--close-button-hover-bg);
+}
+
+/* POPUP */
+.popup #content {
+ padding: 20px;
+}
+
+.popup #container {
+ min-width: 0;
+}
+
+.popup #header {
+ padding: 10px 20px;
+}
+
+/* PAGINATOR */
+
+.paginator {
+ font-size: 0.8125rem;
+ padding-top: 10px;
+ padding-bottom: 10px;
+ line-height: 22px;
+ margin: 0;
+ border-top: 1px solid var(--hairline-color);
+ width: 100%;
+}
+
+.paginator a:link, .paginator a:visited {
+ padding: 2px 6px;
+ background: var(--button-bg);
+ text-decoration: none;
+ color: var(--button-fg);
+}
+
+.paginator a.showall {
+ border: none;
+ background: none;
+ color: var(--link-fg);
+}
+
+.paginator a.showall:focus, .paginator a.showall:hover {
+ background: none;
+ color: var(--link-hover-color);
+}
+
+.paginator .end {
+ margin-right: 6px;
+}
+
+.paginator .this-page {
+ padding: 2px 6px;
+ font-weight: bold;
+ font-size: 0.8125rem;
+ vertical-align: top;
+}
+
+.paginator a:focus, .paginator a:hover {
+ color: white;
+ background: var(--link-hover-color);
+}
diff --git a/static/admin/css/changelists.css b/static/admin/css/changelists.css
new file mode 100644
index 0000000..68ba557
--- /dev/null
+++ b/static/admin/css/changelists.css
@@ -0,0 +1,325 @@
+/* CHANGELISTS */
+
+#changelist {
+ display: flex;
+ align-items: flex-start;
+ justify-content: space-between;
+}
+
+#changelist .changelist-form-container {
+ flex: 1 1 auto;
+ min-width: 0;
+}
+
+#changelist table {
+ width: 100%;
+}
+
+.change-list .hiddenfields { display:none; }
+
+.change-list .filtered table {
+ border-right: none;
+}
+
+.change-list .filtered {
+ min-height: 400px;
+}
+
+.change-list .filtered .results, .change-list .filtered .paginator,
+.filtered #toolbar, .filtered div.xfull {
+ width: auto;
+}
+
+.change-list .filtered table tbody th {
+ padding-right: 1em;
+}
+
+#changelist-form .results {
+ overflow-x: auto;
+ width: 100%;
+}
+
+#changelist .toplinks {
+ border-bottom: 1px solid var(--hairline-color);
+}
+
+#changelist .paginator {
+ color: var(--body-quiet-color);
+ border-bottom: 1px solid var(--hairline-color);
+ background: var(--body-bg);
+ overflow: hidden;
+}
+
+/* CHANGELIST TABLES */
+
+#changelist table thead th {
+ padding: 0;
+ white-space: nowrap;
+ vertical-align: middle;
+}
+
+#changelist table thead th.action-checkbox-column {
+ width: 1.5em;
+ text-align: center;
+}
+
+#changelist table tbody td.action-checkbox {
+ text-align: center;
+}
+
+#changelist table tfoot {
+ color: var(--body-quiet-color);
+}
+
+/* TOOLBAR */
+
+#toolbar {
+ padding: 8px 10px;
+ margin-bottom: 15px;
+ border-top: 1px solid var(--hairline-color);
+ border-bottom: 1px solid var(--hairline-color);
+ background: var(--darkened-bg);
+ color: var(--body-quiet-color);
+}
+
+#toolbar form input {
+ border-radius: 4px;
+ font-size: 0.875rem;
+ padding: 5px;
+ color: var(--body-fg);
+}
+
+#toolbar #searchbar {
+ height: 19px;
+ border: 1px solid var(--border-color);
+ padding: 2px 5px;
+ margin: 0;
+ vertical-align: top;
+ font-size: 0.8125rem;
+ max-width: 100%;
+}
+
+#toolbar #searchbar:focus {
+ border-color: var(--body-quiet-color);
+}
+
+#toolbar form input[type="submit"] {
+ border: 1px solid var(--border-color);
+ font-size: 0.8125rem;
+ padding: 4px 8px;
+ margin: 0;
+ vertical-align: middle;
+ background: var(--body-bg);
+ box-shadow: 0 -15px 20px -10px rgba(0, 0, 0, 0.15) inset;
+ cursor: pointer;
+ color: var(--body-fg);
+}
+
+#toolbar form input[type="submit"]:focus,
+#toolbar form input[type="submit"]:hover {
+ border-color: var(--body-quiet-color);
+}
+
+#changelist-search img {
+ vertical-align: middle;
+ margin-right: 4px;
+}
+
+#changelist-search .help {
+ word-break: break-word;
+}
+
+/* FILTER COLUMN */
+
+#changelist-filter {
+ flex: 0 0 240px;
+ order: 1;
+ background: var(--darkened-bg);
+ border-left: none;
+ margin: 0 0 0 30px;
+}
+
+#changelist-filter h2 {
+ font-size: 0.875rem;
+ text-transform: uppercase;
+ letter-spacing: 0.5px;
+ padding: 5px 15px;
+ margin-bottom: 12px;
+ border-bottom: none;
+}
+
+#changelist-filter h3,
+#changelist-filter details summary {
+ font-weight: 400;
+ padding: 0 15px;
+ margin-bottom: 10px;
+}
+
+#changelist-filter details summary > * {
+ display: inline;
+}
+
+#changelist-filter details > summary {
+ list-style-type: none;
+}
+
+#changelist-filter details > summary::-webkit-details-marker {
+ display: none;
+}
+
+#changelist-filter details > summary::before {
+ content: '→';
+ font-weight: bold;
+ color: var(--link-hover-color);
+}
+
+#changelist-filter details[open] > summary::before {
+ content: '↓';
+}
+
+#changelist-filter ul {
+ margin: 5px 0;
+ padding: 0 15px 15px;
+ border-bottom: 1px solid var(--hairline-color);
+}
+
+#changelist-filter ul:last-child {
+ border-bottom: none;
+}
+
+#changelist-filter li {
+ list-style-type: none;
+ margin-left: 0;
+ padding-left: 0;
+}
+
+#changelist-filter a {
+ display: block;
+ color: var(--body-quiet-color);
+ word-break: break-word;
+}
+
+#changelist-filter li.selected {
+ border-left: 5px solid var(--hairline-color);
+ padding-left: 10px;
+ margin-left: -15px;
+}
+
+#changelist-filter li.selected a {
+ color: var(--link-selected-fg);
+}
+
+#changelist-filter a:focus, #changelist-filter a:hover,
+#changelist-filter li.selected a:focus,
+#changelist-filter li.selected a:hover {
+ color: var(--link-hover-color);
+}
+
+#changelist-filter #changelist-filter-clear a {
+ font-size: 0.8125rem;
+ padding-bottom: 10px;
+ border-bottom: 1px solid var(--hairline-color);
+}
+
+/* DATE DRILLDOWN */
+
+.change-list ul.toplinks {
+ display: block;
+ float: left;
+ padding: 0;
+ margin: 0;
+ width: 100%;
+}
+
+.change-list ul.toplinks li {
+ padding: 3px 6px;
+ font-weight: bold;
+ list-style-type: none;
+ display: inline-block;
+}
+
+.change-list ul.toplinks .date-back a {
+ color: var(--body-quiet-color);
+}
+
+.change-list ul.toplinks .date-back a:focus,
+.change-list ul.toplinks .date-back a:hover {
+ color: var(--link-hover-color);
+}
+
+/* ACTIONS */
+
+.filtered .actions {
+ border-right: none;
+}
+
+#changelist table input {
+ margin: 0;
+ vertical-align: baseline;
+}
+
+#changelist table tbody tr.selected {
+ background-color: var(--selected-row);
+}
+
+#changelist .actions {
+ padding: 10px;
+ background: var(--body-bg);
+ border-top: none;
+ border-bottom: none;
+ line-height: 24px;
+ color: var(--body-quiet-color);
+ width: 100%;
+}
+
+#changelist .actions span.all,
+#changelist .actions span.action-counter,
+#changelist .actions span.clear,
+#changelist .actions span.question {
+ font-size: 0.8125rem;
+ margin: 0 0.5em;
+}
+
+#changelist .actions:last-child {
+ border-bottom: none;
+}
+
+#changelist .actions select {
+ vertical-align: top;
+ height: 24px;
+ color: var(--body-fg);
+ border: 1px solid var(--border-color);
+ border-radius: 4px;
+ font-size: 0.875rem;
+ padding: 0 0 0 4px;
+ margin: 0;
+ margin-left: 10px;
+}
+
+#changelist .actions select:focus {
+ border-color: var(--body-quiet-color);
+}
+
+#changelist .actions label {
+ display: inline-block;
+ vertical-align: middle;
+ font-size: 0.8125rem;
+}
+
+#changelist .actions .button {
+ font-size: 0.8125rem;
+ border: 1px solid var(--border-color);
+ border-radius: 4px;
+ background: var(--body-bg);
+ box-shadow: 0 -15px 20px -10px rgba(0, 0, 0, 0.15) inset;
+ cursor: pointer;
+ height: 24px;
+ line-height: 1;
+ padding: 4px 8px;
+ margin: 0;
+ color: var(--body-fg);
+}
+
+#changelist .actions .button:focus, #changelist .actions .button:hover {
+ border-color: var(--body-quiet-color);
+}
diff --git a/static/admin/css/dark_mode.css b/static/admin/css/dark_mode.css
new file mode 100644
index 0000000..547717c
--- /dev/null
+++ b/static/admin/css/dark_mode.css
@@ -0,0 +1,33 @@
+@media (prefers-color-scheme: dark) {
+ :root {
+ --primary: #264b5d;
+ --primary-fg: #f7f7f7;
+
+ --body-fg: #eeeeee;
+ --body-bg: #121212;
+ --body-quiet-color: #e0e0e0;
+ --body-loud-color: #ffffff;
+
+ --breadcrumbs-link-fg: #e0e0e0;
+ --breadcrumbs-bg: var(--primary);
+
+ --link-fg: #81d4fa;
+ --link-hover-color: #4ac1f7;
+ --link-selected-fg: #6f94c6;
+
+ --hairline-color: #272727;
+ --border-color: #353535;
+
+ --error-fg: #e35f5f;
+ --message-success-bg: #006b1b;
+ --message-warning-bg: #583305;
+ --message-error-bg: #570808;
+
+ --darkened-bg: #212121;
+ --selected-bg: #1b1b1b;
+ --selected-row: #00363a;
+
+ --close-button-bg: #333333;
+ --close-button-hover-bg: #666666;
+ }
+ }
diff --git a/static/admin/css/dashboard.css b/static/admin/css/dashboard.css
new file mode 100644
index 0000000..91d6efd
--- /dev/null
+++ b/static/admin/css/dashboard.css
@@ -0,0 +1,26 @@
+/* DASHBOARD */
+
+.dashboard .module table th {
+ width: 100%;
+}
+
+.dashboard .module table td {
+ white-space: nowrap;
+}
+
+.dashboard .module table td a {
+ display: block;
+ padding-right: .6em;
+}
+
+/* RECENT ACTIONS MODULE */
+
+.module ul.actionlist {
+ margin-left: 0;
+}
+
+ul.actionlist li {
+ list-style-type: none;
+ overflow: hidden;
+ text-overflow: ellipsis;
+}
diff --git a/static/admin/css/fonts.css b/static/admin/css/fonts.css
new file mode 100644
index 0000000..c837e01
--- /dev/null
+++ b/static/admin/css/fonts.css
@@ -0,0 +1,20 @@
+@font-face {
+ font-family: 'Roboto';
+ src: url('../fonts/Roboto-Bold-webfont.woff');
+ font-weight: 700;
+ font-style: normal;
+}
+
+@font-face {
+ font-family: 'Roboto';
+ src: url('../fonts/Roboto-Regular-webfont.woff');
+ font-weight: 400;
+ font-style: normal;
+}
+
+@font-face {
+ font-family: 'Roboto';
+ src: url('../fonts/Roboto-Light-webfont.woff');
+ font-weight: 300;
+ font-style: normal;
+}
diff --git a/static/admin/css/forms.css b/static/admin/css/forms.css
new file mode 100644
index 0000000..e1873b3
--- /dev/null
+++ b/static/admin/css/forms.css
@@ -0,0 +1,528 @@
+@import url('widgets.css');
+
+/* FORM ROWS */
+
+.form-row {
+ overflow: hidden;
+ padding: 10px;
+ font-size: 0.8125rem;
+ border-bottom: 1px solid var(--hairline-color);
+}
+
+.form-row img, .form-row input {
+ vertical-align: middle;
+}
+
+.form-row label input[type="checkbox"] {
+ margin-top: 0;
+ vertical-align: 0;
+}
+
+form .form-row p {
+ padding-left: 0;
+}
+
+/* FORM LABELS */
+
+label {
+ font-weight: normal;
+ color: var(--body-quiet-color);
+ font-size: 0.8125rem;
+}
+
+.required label, label.required {
+ font-weight: bold;
+ color: var(--body-fg);
+}
+
+/* RADIO BUTTONS */
+
+form div.radiolist div {
+ padding-right: 7px;
+}
+
+form div.radiolist.inline div {
+ display: inline-block;
+}
+
+form div.radiolist label {
+ width: auto;
+}
+
+form div.radiolist input[type="radio"] {
+ margin: -2px 4px 0 0;
+ padding: 0;
+}
+
+form ul.inline {
+ margin-left: 0;
+ padding: 0;
+}
+
+form ul.inline li {
+ float: left;
+ padding-right: 7px;
+}
+
+/* ALIGNED FIELDSETS */
+
+.aligned label {
+ display: block;
+ padding: 4px 10px 0 0;
+ float: left;
+ width: 160px;
+ word-wrap: break-word;
+ line-height: 1;
+}
+
+.aligned label:not(.vCheckboxLabel):after {
+ content: '';
+ display: inline-block;
+ vertical-align: middle;
+ height: 26px;
+}
+
+.aligned label + p, .aligned label + div.help, .aligned label + div.readonly {
+ padding: 6px 0;
+ margin-top: 0;
+ margin-bottom: 0;
+ margin-left: 170px;
+ overflow-wrap: break-word;
+}
+
+.aligned ul label {
+ display: inline;
+ float: none;
+ width: auto;
+}
+
+.aligned .form-row input {
+ margin-bottom: 0;
+}
+
+.colMS .aligned .vLargeTextField, .colMS .aligned .vXMLLargeTextField {
+ width: 350px;
+}
+
+form .aligned ul {
+ margin-left: 160px;
+ padding-left: 10px;
+}
+
+form .aligned div.radiolist {
+ display: inline-block;
+ margin: 0;
+ padding: 0;
+}
+
+form .aligned p.help,
+form .aligned div.help {
+ clear: left;
+ margin-top: 0;
+ margin-left: 160px;
+ padding-left: 10px;
+}
+
+form .aligned label + p.help,
+form .aligned label + div.help {
+ margin-left: 0;
+ padding-left: 0;
+}
+
+form .aligned p.help:last-child,
+form .aligned div.help:last-child {
+ margin-bottom: 0;
+ padding-bottom: 0;
+}
+
+form .aligned input + p.help,
+form .aligned textarea + p.help,
+form .aligned select + p.help,
+form .aligned input + div.help,
+form .aligned textarea + div.help,
+form .aligned select + div.help {
+ margin-left: 160px;
+ padding-left: 10px;
+}
+
+form .aligned ul li {
+ list-style: none;
+}
+
+form .aligned table p {
+ margin-left: 0;
+ padding-left: 0;
+}
+
+.aligned .vCheckboxLabel {
+ float: none;
+ width: auto;
+ display: inline-block;
+ vertical-align: -3px;
+ padding: 0 0 5px 5px;
+}
+
+.aligned .vCheckboxLabel + p.help,
+.aligned .vCheckboxLabel + div.help {
+ margin-top: -4px;
+}
+
+.colM .aligned .vLargeTextField, .colM .aligned .vXMLLargeTextField {
+ width: 610px;
+}
+
+.checkbox-row p.help,
+.checkbox-row div.help {
+ margin-left: 0;
+ padding-left: 0;
+}
+
+fieldset .fieldBox {
+ float: left;
+ margin-right: 20px;
+}
+
+/* WIDE FIELDSETS */
+
+.wide label {
+ width: 200px;
+}
+
+form .wide p,
+form .wide input + p.help,
+form .wide input + div.help {
+ margin-left: 200px;
+}
+
+form .wide p.help,
+form .wide div.help {
+ padding-left: 38px;
+}
+
+form div.help ul {
+ padding-left: 0;
+ margin-left: 0;
+}
+
+.colM fieldset.wide .vLargeTextField, .colM fieldset.wide .vXMLLargeTextField {
+ width: 450px;
+}
+
+/* COLLAPSED FIELDSETS */
+
+fieldset.collapsed * {
+ display: none;
+}
+
+fieldset.collapsed h2, fieldset.collapsed {
+ display: block;
+}
+
+fieldset.collapsed {
+ border: 1px solid var(--hairline-color);
+ border-radius: 4px;
+ overflow: hidden;
+}
+
+fieldset.collapsed h2 {
+ background: var(--darkened-bg);
+ color: var(--body-quiet-color);
+}
+
+fieldset .collapse-toggle {
+ color: var(--header-link-color);
+}
+
+fieldset.collapsed .collapse-toggle {
+ background: transparent;
+ display: inline;
+ color: var(--link-fg);
+}
+
+/* MONOSPACE TEXTAREAS */
+
+fieldset.monospace textarea {
+ font-family: "Bitstream Vera Sans Mono", Monaco, "Courier New", Courier, monospace;
+}
+
+/* SUBMIT ROW */
+
+.submit-row {
+ padding: 12px 14px 7px;
+ margin: 0 0 20px;
+ background: var(--darkened-bg);
+ border: 1px solid var(--hairline-color);
+ border-radius: 4px;
+ text-align: right;
+ overflow: hidden;
+}
+
+body.popup .submit-row {
+ overflow: auto;
+}
+
+.submit-row input {
+ height: 35px;
+ line-height: 15px;
+ margin: 0 0 5px 5px;
+}
+
+.submit-row input.default {
+ margin: 0 0 5px 8px;
+ text-transform: uppercase;
+}
+
+.submit-row p {
+ margin: 0.3em;
+}
+
+.submit-row p.deletelink-box {
+ float: left;
+ margin: 0;
+}
+
+.submit-row a.deletelink {
+ display: block;
+ background: var(--delete-button-bg);
+ border-radius: 4px;
+ padding: 10px 15px;
+ height: 15px;
+ line-height: 15px;
+ margin-bottom: 5px;
+ color: var(--button-fg);
+}
+
+.submit-row a.closelink {
+ display: inline-block;
+ background: var(--close-button-bg);
+ border-radius: 4px;
+ padding: 10px 15px;
+ height: 15px;
+ line-height: 15px;
+ margin: 0 0 0 5px;
+ color: var(--button-fg);
+}
+
+.submit-row a.deletelink:focus,
+.submit-row a.deletelink:hover,
+.submit-row a.deletelink:active {
+ background: var(--delete-button-hover-bg);
+}
+
+.submit-row a.closelink:focus,
+.submit-row a.closelink:hover,
+.submit-row a.closelink:active {
+ background: var(--close-button-hover-bg);
+}
+
+/* CUSTOM FORM FIELDS */
+
+.vSelectMultipleField {
+ vertical-align: top;
+}
+
+.vCheckboxField {
+ border: none;
+}
+
+.vDateField, .vTimeField {
+ margin-right: 2px;
+ margin-bottom: 4px;
+}
+
+.vDateField {
+ min-width: 6.85em;
+}
+
+.vTimeField {
+ min-width: 4.7em;
+}
+
+.vURLField {
+ width: 30em;
+}
+
+.vLargeTextField, .vXMLLargeTextField {
+ width: 48em;
+}
+
+.flatpages-flatpage #id_content {
+ height: 40.2em;
+}
+
+.module table .vPositiveSmallIntegerField {
+ width: 2.2em;
+}
+
+.vIntegerField {
+ width: 5em;
+}
+
+.vBigIntegerField {
+ width: 10em;
+}
+
+.vForeignKeyRawIdAdminField {
+ width: 5em;
+}
+
+.vTextField, .vUUIDField {
+ width: 20em;
+}
+
+/* INLINES */
+
+.inline-group {
+ padding: 0;
+ margin: 0 0 30px;
+}
+
+.inline-group thead th {
+ padding: 8px 10px;
+}
+
+.inline-group .aligned label {
+ width: 160px;
+}
+
+.inline-related {
+ position: relative;
+}
+
+.inline-related h3 {
+ margin: 0;
+ color: var(--body-quiet-color);
+ padding: 5px;
+ font-size: 0.8125rem;
+ background: var(--darkened-bg);
+ border-top: 1px solid var(--hairline-color);
+ border-bottom: 1px solid var(--hairline-color);
+}
+
+.inline-related h3 span.delete {
+ float: right;
+}
+
+.inline-related h3 span.delete label {
+ margin-left: 2px;
+ font-size: 0.6875rem;
+}
+
+.inline-related fieldset {
+ margin: 0;
+ background: var(--body-bg);
+ border: none;
+ width: 100%;
+}
+
+.inline-related fieldset.module h3 {
+ margin: 0;
+ padding: 2px 5px 3px 5px;
+ font-size: 0.6875rem;
+ text-align: left;
+ font-weight: bold;
+ background: #bcd;
+ color: var(--body-bg);
+}
+
+.inline-group .tabular fieldset.module {
+ border: none;
+}
+
+.inline-related.tabular fieldset.module table {
+ width: 100%;
+ overflow-x: scroll;
+}
+
+.last-related fieldset {
+ border: none;
+}
+
+.inline-group .tabular tr.has_original td {
+ padding-top: 2em;
+}
+
+.inline-group .tabular tr td.original {
+ padding: 2px 0 0 0;
+ width: 0;
+ _position: relative;
+}
+
+.inline-group .tabular th.original {
+ width: 0px;
+ padding: 0;
+}
+
+.inline-group .tabular td.original p {
+ position: absolute;
+ left: 0;
+ height: 1.1em;
+ padding: 2px 9px;
+ overflow: hidden;
+ font-size: 0.5625rem;
+ font-weight: bold;
+ color: var(--body-quiet-color);
+ _width: 700px;
+}
+
+.inline-group ul.tools {
+ padding: 0;
+ margin: 0;
+ list-style: none;
+}
+
+.inline-group ul.tools li {
+ display: inline;
+ padding: 0 5px;
+}
+
+.inline-group div.add-row,
+.inline-group .tabular tr.add-row td {
+ color: var(--body-quiet-color);
+ background: var(--darkened-bg);
+ padding: 8px 10px;
+ border-bottom: 1px solid var(--hairline-color);
+}
+
+.inline-group .tabular tr.add-row td {
+ padding: 8px 10px;
+ border-bottom: 1px solid var(--hairline-color);
+}
+
+.inline-group ul.tools a.add,
+.inline-group div.add-row a,
+.inline-group .tabular tr.add-row td a {
+ background: url(../img/icon-addlink.svg) 0 1px no-repeat;
+ padding-left: 16px;
+ font-size: 0.75rem;
+}
+
+.empty-form {
+ display: none;
+}
+
+/* RELATED FIELD ADD ONE / LOOKUP */
+
+.related-lookup {
+ margin-left: 5px;
+ display: inline-block;
+ vertical-align: middle;
+ background-repeat: no-repeat;
+ background-size: 14px;
+}
+
+.related-lookup {
+ width: 16px;
+ height: 16px;
+ background-image: url(../img/search.svg);
+}
+
+form .related-widget-wrapper ul {
+ display: inline-block;
+ margin-left: 0;
+ padding-left: 0;
+}
+
+.clearable-file-input input {
+ margin-top: 0;
+}
diff --git a/static/admin/css/login.css b/static/admin/css/login.css
new file mode 100644
index 0000000..389772f
--- /dev/null
+++ b/static/admin/css/login.css
@@ -0,0 +1,61 @@
+/* LOGIN FORM */
+
+.login {
+ background: var(--darkened-bg);
+ height: auto;
+}
+
+.login #header {
+ height: auto;
+ padding: 15px 16px;
+ justify-content: center;
+}
+
+.login #header h1 {
+ font-size: 1.125rem;
+ margin: 0;
+}
+
+.login #header h1 a {
+ color: var(--header-link-color);
+}
+
+.login #content {
+ padding: 20px 20px 0;
+}
+
+.login #container {
+ background: var(--body-bg);
+ border: 1px solid var(--hairline-color);
+ border-radius: 4px;
+ overflow: hidden;
+ width: 28em;
+ min-width: 300px;
+ margin: 100px auto;
+ height: auto;
+}
+
+.login .form-row {
+ padding: 4px 0;
+}
+
+.login .form-row label {
+ display: block;
+ line-height: 2em;
+}
+
+.login .form-row #id_username, .login .form-row #id_password {
+ padding: 8px;
+ width: 100%;
+ box-sizing: border-box;
+}
+
+.login .submit-row {
+ padding: 1em 0 0 0;
+ margin: 0;
+ text-align: center;
+}
+
+.login .password-reset-link {
+ text-align: center;
+}
diff --git a/static/admin/css/nav_sidebar.css b/static/admin/css/nav_sidebar.css
new file mode 100644
index 0000000..5fd2ff0
--- /dev/null
+++ b/static/admin/css/nav_sidebar.css
@@ -0,0 +1,139 @@
+.sticky {
+ position: sticky;
+ top: 0;
+ max-height: 100vh;
+}
+
+.toggle-nav-sidebar {
+ z-index: 20;
+ left: 0;
+ display: flex;
+ align-items: center;
+ justify-content: center;
+ flex: 0 0 23px;
+ width: 23px;
+ border: 0;
+ border-right: 1px solid var(--hairline-color);
+ background-color: var(--body-bg);
+ cursor: pointer;
+ font-size: 1.25rem;
+ color: var(--link-fg);
+ padding: 0;
+}
+
+[dir="rtl"] .toggle-nav-sidebar {
+ border-left: 1px solid var(--hairline-color);
+ border-right: 0;
+}
+
+.toggle-nav-sidebar:hover,
+.toggle-nav-sidebar:focus {
+ background-color: var(--darkened-bg);
+}
+
+#nav-sidebar {
+ z-index: 15;
+ flex: 0 0 275px;
+ left: -276px;
+ margin-left: -276px;
+ border-top: 1px solid transparent;
+ border-right: 1px solid var(--hairline-color);
+ background-color: var(--body-bg);
+ overflow: auto;
+}
+
+[dir="rtl"] #nav-sidebar {
+ border-left: 1px solid var(--hairline-color);
+ border-right: 0;
+ left: 0;
+ margin-left: 0;
+ right: -276px;
+ margin-right: -276px;
+}
+
+.toggle-nav-sidebar::before {
+ content: '\00BB';
+}
+
+.main.shifted .toggle-nav-sidebar::before {
+ content: '\00AB';
+}
+
+.main.shifted > #nav-sidebar {
+ margin-left: 0;
+}
+
+[dir="rtl"] .main.shifted > #nav-sidebar {
+ margin-right: 0;
+}
+
+#nav-sidebar .module th {
+ width: 100%;
+ overflow-wrap: anywhere;
+}
+
+#nav-sidebar .module th,
+#nav-sidebar .module caption {
+ padding-left: 16px;
+}
+
+#nav-sidebar .module td {
+ white-space: nowrap;
+}
+
+[dir="rtl"] #nav-sidebar .module th,
+[dir="rtl"] #nav-sidebar .module caption {
+ padding-left: 8px;
+ padding-right: 16px;
+}
+
+#nav-sidebar .current-app .section:link,
+#nav-sidebar .current-app .section:visited {
+ color: var(--header-color);
+ font-weight: bold;
+}
+
+#nav-sidebar .current-model {
+ background: var(--selected-row);
+}
+
+.main > #nav-sidebar + .content {
+ max-width: calc(100% - 23px);
+}
+
+.main.shifted > #nav-sidebar + .content {
+ max-width: calc(100% - 299px);
+}
+
+@media (max-width: 767px) {
+ #nav-sidebar, #toggle-nav-sidebar {
+ display: none;
+ }
+
+ .main > #nav-sidebar + .content,
+ .main.shifted > #nav-sidebar + .content {
+ max-width: 100%;
+ }
+}
+
+#nav-filter {
+ width: 100%;
+ box-sizing: border-box;
+ padding: 2px 5px;
+ margin: 5px 0;
+ border: 1px solid var(--border-color);
+ background-color: var(--darkened-bg);
+ color: var(--body-fg);
+}
+
+#nav-filter:focus {
+ border-color: var(--body-quiet-color);
+}
+
+#nav-filter.no-results {
+ background: var(--message-error-bg);
+}
+
+#nav-sidebar table {
+ width: 100%;
+}
diff --git a/static/admin/css/responsive.css b/static/admin/css/responsive.css
new file mode 100644
index 0000000..9a4615d
--- /dev/null
+++ b/static/admin/css/responsive.css
@@ -0,0 +1,1015 @@
+/* Tablets */
+
+input[type="submit"], button {
+ -webkit-appearance: none;
+ appearance: none;
+}
+
+@media (max-width: 1024px) {
+ /* Basic */
+
+ html {
+ -webkit-text-size-adjust: 100%;
+ }
+
+ td, th {
+ padding: 10px;
+ font-size: 0.875rem;
+ }
+
+ .small {
+ font-size: 0.75rem;
+ }
+
+ /* Layout */
+
+ #container {
+ min-width: 0;
+ }
+
+ #content {
+ padding: 15px 20px 20px;
+ }
+
+ div.breadcrumbs {
+ padding: 10px 30px;
+ }
+
+ /* Header */
+
+ #header {
+ flex-direction: column;
+ padding: 15px 30px;
+ justify-content: flex-start;
+ }
+
+ #branding h1 {
+ margin: 0 0 8px;
+ line-height: 1.2;
+ }
+
+ #user-tools {
+ margin: 0;
+ font-weight: 400;
+ line-height: 1.85;
+ text-align: left;
+ }
+
+ #user-tools a {
+ display: inline-block;
+ line-height: 1.4;
+ }
+
+ /* Dashboard */
+
+ .dashboard #content {
+ width: auto;
+ }
+
+ #content-related {
+ margin-right: -290px;
+ }
+
+ .colSM #content-related {
+ margin-left: -290px;
+ }
+
+ .colMS {
+ margin-right: 290px;
+ }
+
+ .colSM {
+ margin-left: 290px;
+ }
+
+ .dashboard .module table td a {
+ padding-right: 0;
+ }
+
+ td .changelink, td .addlink {
+ font-size: 0.8125rem;
+ }
+
+ /* Changelist */
+
+ #toolbar {
+ border: none;
+ padding: 15px;
+ }
+
+ #changelist-search > div {
+ display: flex;
+ flex-wrap: nowrap;
+ max-width: 480px;
+ }
+
+ #changelist-search label {
+ line-height: 22px;
+ }
+
+ #toolbar form #searchbar {
+ flex: 1 0 auto;
+ width: 0;
+ height: 22px;
+ margin: 0 10px 0 6px;
+ }
+
+ #toolbar form input[type=submit] {
+ flex: 0 1 auto;
+ }
+
+ #changelist-search .quiet {
+ width: 0;
+ flex: 1 0 auto;
+ margin: 5px 0 0 25px;
+ }
+
+ #changelist .actions {
+ display: flex;
+ flex-wrap: wrap;
+ padding: 15px 0;
+ }
+
+ #changelist .actions label {
+ display: flex;
+ }
+
+ #changelist .actions select {
+ background: var(--body-bg);
+ }
+
+ #changelist .actions .button {
+ min-width: 48px;
+ margin: 0 10px;
+ }
+
+ #changelist .actions span.all,
+ #changelist .actions span.clear,
+ #changelist .actions span.question,
+ #changelist .actions span.action-counter {
+ font-size: 0.6875rem;
+ margin: 0 10px 0 0;
+ }
+
+ #changelist-filter {
+ flex-basis: 200px;
+ }
+
+ .change-list .filtered .results,
+ .change-list .filtered .paginator,
+ .filtered #toolbar,
+ .filtered .actions,
+
+ #changelist .paginator {
+ border-top-color: var(--hairline-color); /* XXX Is this used at all? */
+ }
+
+ #changelist .results + .paginator {
+ border-top: none;
+ }
+
+ /* Forms */
+
+ label {
+ font-size: 0.875rem;
+ }
+
+ .form-row input[type=text],
+ .form-row input[type=password],
+ .form-row input[type=email],
+ .form-row input[type=url],
+ .form-row input[type=tel],
+ .form-row input[type=number],
+ .form-row textarea,
+ .form-row select,
+ .form-row .vTextField {
+ box-sizing: border-box;
+ margin: 0;
+ padding: 6px 8px;
+ min-height: 36px;
+ font-size: 0.875rem;
+ }
+
+ .form-row select {
+ height: 36px;
+ }
+
+ .form-row select[multiple] {
+ height: auto;
+ min-height: 0;
+ }
+
+ fieldset .fieldBox {
+ float: none;
+ margin: 0 -10px;
+ padding: 0 10px;
+ }
+
+ fieldset .fieldBox + .fieldBox {
+ margin-top: 10px;
+ padding-top: 10px;
+ border-top: 1px solid var(--hairline-color);
+ }
+
+ textarea {
+ max-width: 100%;
+ max-height: 120px;
+ }
+
+ .aligned label {
+ padding-top: 6px;
+ }
+
+ .aligned .related-lookup,
+ .aligned .datetimeshortcuts,
+ .aligned .related-lookup + strong {
+ align-self: center;
+ margin-left: 15px;
+ }
+
+ form .aligned div.radiolist {
+ margin-left: 2px;
+ }
+
+ .submit-row {
+ padding: 8px 8px 3px 8px;
+ }
+
+ .submit-row a.deletelink {
+ padding: 10px 7px;
+ }
+
+ .submit-row input.default {
+ margin: 0 0 5px 5px;
+ }
+
+ .button, input[type=submit], input[type=button], .submit-row input, a.button {
+ padding: 7px;
+ }
+
+ /* Related widget */
+
+ .related-widget-wrapper {
+ float: none;
+ }
+
+ .related-widget-wrapper-link + .selector {
+ max-width: calc(100% - 30px);
+ margin-right: 15px;
+ }
+
+ select + .related-widget-wrapper-link,
+ .related-widget-wrapper-link + .related-widget-wrapper-link {
+ margin-left: 10px;
+ }
+
+ /* Selector */
+
+ .selector {
+ display: flex;
+ width: 100%;
+ }
+
+ .selector .selector-filter {
+ display: flex;
+ align-items: center;
+ }
+
+ .selector .selector-filter label {
+ margin: 0 8px 0 0;
+ }
+
+ .selector .selector-filter input {
+ width: auto;
+ min-height: 0;
+ flex: 1 1;
+ }
+
+ .selector-available, .selector-chosen {
+ width: auto;
+ flex: 1 1;
+ display: flex;
+ flex-direction: column;
+ }
+
+ .selector select {
+ width: 100%;
+ flex: 1 0 auto;
+ margin-bottom: 5px;
+ }
+
+ .selector ul.selector-chooser {
+ width: 26px;
+ height: 52px;
+ padding: 2px 0;
+ margin: auto 15px;
+ border-radius: 20px;
+ transform: translateY(-10px);
+ }
+
+ .selector-add, .selector-remove {
+ width: 20px;
+ height: 20px;
+ background-size: 20px auto;
+ }
+
+ .selector-add {
+ background-position: 0 -120px;
+ }
+
+ .selector-remove {
+ background-position: 0 -80px;
+ }
+
+ a.selector-chooseall, a.selector-clearall {
+ align-self: center;
+ }
+
+ .stacked {
+ flex-direction: column;
+ max-width: 480px;
+ }
+
+ .stacked > * {
+ flex: 0 1 auto;
+ }
+
+ .stacked select {
+ margin-bottom: 0;
+ }
+
+ .stacked .selector-available, .stacked .selector-chosen {
+ width: auto;
+ }
+
+ .stacked ul.selector-chooser {
+ width: 52px;
+ height: 26px;
+ padding: 0 2px;
+ margin: 15px auto;
+ transform: none;
+ }
+
+ .stacked .selector-chooser li {
+ padding: 3px;
+ }
+
+ .stacked .selector-add, .stacked .selector-remove {
+ background-size: 20px auto;
+ }
+
+ .stacked .selector-add {
+ background-position: 0 -40px;
+ }
+
+ .stacked .active.selector-add {
+ background-position: 0 -40px;
+ }
+
+ .active.selector-add:focus, .active.selector-add:hover {
+ background-position: 0 -140px;
+ }
+
+ .stacked .active.selector-add:focus, .stacked .active.selector-add:hover {
+ background-position: 0 -60px;
+ }
+
+ .stacked .selector-remove {
+ background-position: 0 0;
+ }
+
+ .stacked .active.selector-remove {
+ background-position: 0 0;
+ }
+
+ .active.selector-remove:focus, .active.selector-remove:hover {
+ background-position: 0 -100px;
+ }
+
+ .stacked .active.selector-remove:focus, .stacked .active.selector-remove:hover {
+ background-position: 0 -20px;
+ }
+
+ .help-tooltip, .selector .help-icon {
+ display: none;
+ }
+
+ form .form-row p.datetime {
+ width: 100%;
+ }
+
+ .datetime input {
+ width: 50%;
+ max-width: 120px;
+ }
+
+ .datetime span {
+ font-size: 0.8125rem;
+ }
+
+ .datetime .timezonewarning {
+ display: block;
+ font-size: 0.6875rem;
+ color: var(--body-quiet-color);
+ }
+
+ .datetimeshortcuts {
+ color: var(--border-color); /* XXX Redundant, .datetime span also sets #ccc */
+ }
+
+ .form-row .datetime input.vDateField, .form-row .datetime input.vTimeField {
+ width: 75%;
+ }
+
+ .inline-group {
+ overflow: auto;
+ }
+
+ /* Messages */
+
+ ul.messagelist li {
+ padding-left: 55px;
+ background-position: 30px 12px;
+ }
+
+ ul.messagelist li.error {
+ background-position: 30px 12px;
+ }
+
+ ul.messagelist li.warning {
+ background-position: 30px 14px;
+ }
+
+ /* Login */
+
+ .login #header {
+ padding: 15px 20px;
+ }
+
+ .login #branding h1 {
+ margin: 0;
+ }
+
+ /* GIS */
+
+ div.olMap {
+ max-width: calc(100vw - 30px);
+ max-height: 300px;
+ }
+
+ .olMap + .clear_features {
+ display: block;
+ margin-top: 10px;
+ }
+
+ /* Docs */
+
+ .module table.xfull {
+ width: 100%;
+ }
+
+ pre.literal-block {
+ overflow: auto;
+ }
+}
+
+/* Mobile */
+
+@media (max-width: 767px) {
+ /* Layout */
+
+ #header, #content, #footer {
+ padding: 15px;
+ }
+
+ #footer:empty {
+ padding: 0;
+ }
+
+ div.breadcrumbs {
+ padding: 10px 15px;
+ }
+
+ /* Dashboard */
+
+ .colMS, .colSM {
+ margin: 0;
+ }
+
+ #content-related, .colSM #content-related {
+ width: 100%;
+ margin: 0;
+ }
+
+ #content-related .module {
+ margin-bottom: 0;
+ }
+
+ #content-related .module h2 {
+ padding: 10px 15px;
+ font-size: 1rem;
+ }
+
+ /* Changelist */
+
+ #changelist {
+ align-items: stretch;
+ flex-direction: column;
+ }
+
+ #toolbar {
+ padding: 10px;
+ }
+
+ #changelist-filter {
+ margin-left: 0;
+ }
+
+ #changelist .actions label {
+ flex: 1 1;
+ }
+
+ #changelist .actions select {
+ flex: 1 0;
+ width: 100%;
+ }
+
+ #changelist .actions span {
+ flex: 1 0 100%;
+ }
+
+ #changelist-filter {
+ position: static;
+ width: auto;
+ margin-top: 30px;
+ }
+
+ .object-tools {
+ float: none;
+ margin: 0 0 15px;
+ padding: 0;
+ overflow: hidden;
+ }
+
+ .object-tools li {
+ height: auto;
+ margin-left: 0;
+ }
+
+ .object-tools li + li {
+ margin-left: 15px;
+ }
+
+ /* Forms */
+
+ .form-row {
+ padding: 15px 0;
+ }
+
+ .aligned .form-row,
+ .aligned .form-row > div {
+ display: flex;
+ flex-wrap: wrap;
+ max-width: 100vw;
+ }
+
+ .aligned .form-row > div {
+ width: calc(100vw - 30px);
+ }
+
+ textarea {
+ max-width: none;
+ }
+
+ .vURLField {
+ width: auto;
+ }
+
+ fieldset .fieldBox + .fieldBox {
+ margin-top: 15px;
+ padding-top: 15px;
+ }
+
+ fieldset.collapsed .form-row {
+ display: none;
+ }
+
+ .aligned label {
+ width: 100%;
+ padding: 0 0 10px;
+ }
+
+ .aligned label:after {
+ max-height: 0;
+ }
+
+ .aligned .form-row input,
+ .aligned .form-row select,
+ .aligned .form-row textarea {
+ flex: 1 1 auto;
+ max-width: 100%;
+ }
+
+ .aligned .checkbox-row {
+ align-items: center;
+ }
+
+ .aligned .checkbox-row input {
+ flex: 0 1 auto;
+ margin: 0;
+ }
+
+ .aligned .vCheckboxLabel {
+ flex: 1 0;
+ padding: 1px 0 0 5px;
+ }
+
+ .aligned label + p,
+ .aligned label + div.help,
+ .aligned label + div.readonly {
+ padding: 0;
+ margin-left: 0;
+ }
+
+ .aligned p.file-upload {
+ margin-left: 0;
+ font-size: 0.8125rem;
+ }
+
+ span.clearable-file-input {
+ margin-left: 15px;
+ }
+
+ span.clearable-file-input label {
+ font-size: 0.8125rem;
+ padding-bottom: 0;
+ }
+
+ .aligned .timezonewarning {
+ flex: 1 0 100%;
+ margin-top: 5px;
+ }
+
+ form .aligned .form-row div.help {
+ width: 100%;
+ margin: 5px 0 0;
+ padding: 0;
+ }
+
+ form .aligned ul {
+ margin-left: 0;
+ padding-left: 0;
+ }
+
+ form .aligned div.radiolist {
+ margin-top: 5px;
+ margin-right: 15px;
+ margin-bottom: -3px;
+ }
+
+ form .aligned div.radiolist:not(.inline) div + div {
+ margin-top: 5px;
+ }
+
+ /* Related widget */
+
+ .related-widget-wrapper {
+ width: 100%;
+ display: flex;
+ align-items: flex-start;
+ }
+
+ .related-widget-wrapper .selector {
+ order: 1;
+ }
+
+ .related-widget-wrapper > a {
+ order: 2;
+ }
+
+ .related-widget-wrapper .radiolist ~ a {
+ align-self: flex-end;
+ }
+
+ .related-widget-wrapper > select ~ a {
+ align-self: center;
+ }
+
+ select + .related-widget-wrapper-link,
+ .related-widget-wrapper-link + .related-widget-wrapper-link {
+ margin-left: 15px;
+ }
+
+ /* Selector */
+
+ .selector {
+ flex-direction: column;
+ }
+
+ .selector > * {
+ float: none;
+ }
+
+ .selector-available, .selector-chosen {
+ margin-bottom: 0;
+ flex: 1 1 auto;
+ }
+
+ .selector select {
+ max-height: 96px;
+ }
+
+ .selector ul.selector-chooser {
+ display: block;
+ float: none;
+ width: 52px;
+ height: 26px;
+ padding: 0 2px;
+ margin: 15px auto 20px;
+ transform: none;
+ }
+
+ .selector ul.selector-chooser li {
+ float: left;
+ }
+
+ .selector-remove {
+ background-position: 0 0;
+ }
+
+ .active.selector-remove:focus, .active.selector-remove:hover {
+ background-position: 0 -20px;
+ }
+
+ .selector-add {
+ background-position: 0 -40px;
+ }
+
+ .active.selector-add:focus, .active.selector-add:hover {
+ background-position: 0 -60px;
+ }
+
+ /* Inlines */
+
+ .inline-group[data-inline-type="stacked"] .inline-related {
+ border: 1px solid var(--hairline-color);
+ border-radius: 4px;
+ margin-top: 15px;
+ overflow: auto;
+ }
+
+ .inline-group[data-inline-type="stacked"] .inline-related > * {
+ box-sizing: border-box;
+ }
+
+ .inline-group[data-inline-type="stacked"] .inline-related .module {
+ padding: 0 10px;
+ }
+
+ .inline-group[data-inline-type="stacked"] .inline-related .module .form-row {
+ border-top: 1px solid var(--hairline-color);
+ border-bottom: none;
+ }
+
+ .inline-group[data-inline-type="stacked"] .inline-related .module .form-row:first-child {
+ border-top: none;
+ }
+
+ .inline-group[data-inline-type="stacked"] .inline-related h3 {
+ padding: 10px;
+ border-top-width: 0;
+ border-bottom-width: 2px;
+ display: flex;
+ flex-wrap: wrap;
+ align-items: center;
+ }
+
+ .inline-group[data-inline-type="stacked"] .inline-related h3 .inline_label {
+ margin-right: auto;
+ }
+
+ .inline-group[data-inline-type="stacked"] .inline-related h3 span.delete {
+ float: none;
+ flex: 1 1 100%;
+ margin-top: 5px;
+ }
+
+ .inline-group[data-inline-type="stacked"] .aligned .form-row > div:not([class]) {
+ width: 100%;
+ }
+
+ .inline-group[data-inline-type="stacked"] .aligned label {
+ width: 100%;
+ }
+
+ .inline-group[data-inline-type="stacked"] div.add-row {
+ margin-top: 15px;
+ border: 1px solid var(--hairline-color);
+ border-radius: 4px;
+ }
+
+ .inline-group div.add-row,
+ .inline-group .tabular tr.add-row td {
+ padding: 0;
+ }
+
+ .inline-group div.add-row a,
+ .inline-group .tabular tr.add-row td a {
+ display: block;
+ padding: 8px 10px 8px 26px;
+ background-position: 8px 9px;
+ }
+
+ /* Submit row */
+
+ .submit-row {
+ padding: 10px 10px 5px;
+ margin: 0 0 15px;
+ display: flex;
+ flex-direction: column;
+ }
+
+ .submit-row > * {
+ width: 100%;
+ }
+
+ .submit-row input, .submit-row input.default, .submit-row a, .submit-row a.closelink {
+ float: none;
+ margin: 0 0 10px;
+ text-align: center;
+ }
+
+ .submit-row a.closelink {
+ padding: 10px 0;
+ }
+
+ .submit-row p.deletelink-box {
+ order: 4;
+ }
+
+ /* Messages */
+
+ ul.messagelist li {
+ padding-left: 40px;
+ background-position: 15px 12px;
+ }
+
+ ul.messagelist li.error {
+ background-position: 15px 12px;
+ }
+
+ ul.messagelist li.warning {
+ background-position: 15px 14px;
+ }
+
+ /* Paginator */
+
+ .paginator .this-page, .paginator a:link, .paginator a:visited {
+ padding: 4px 10px;
+ }
+
+ /* Login */
+
+ body.login {
+ padding: 0 15px;
+ }
+
+ .login #container {
+ width: auto;
+ max-width: 480px;
+ margin: 50px auto;
+ }
+
+ .login #header,
+ .login #content {
+ padding: 15px;
+ }
+
+ .login #content-main {
+ float: none;
+ }
+
+ .login .form-row {
+ padding: 0;
+ }
+
+ .login .form-row + .form-row {
+ margin-top: 15px;
+ }
+
+ .login .form-row label {
+ margin: 0 0 5px;
+ line-height: 1.2;
+ }
+
+ .login .submit-row {
+ padding: 15px 0 0;
+ }
+
+ .login br {
+ display: none;
+ }
+
+ .login .submit-row input {
+ margin: 0;
+ text-transform: uppercase;
+ }
+
+ .errornote {
+ margin: 0 0 20px;
+ padding: 8px 12px;
+ font-size: 0.8125rem;
+ }
+
+ /* Calendar and clock */
+
+ .calendarbox, .clockbox {
+ position: fixed !important;
+ top: 50% !important;
+ left: 50% !important;
+ transform: translate(-50%, -50%);
+ margin: 0;
+ border: none;
+ overflow: visible;
+ }
+
+ .calendarbox:before, .clockbox:before {
+ content: '';
+ position: fixed;
+ top: 50%;
+ left: 50%;
+ width: 100vw;
+ height: 100vh;
+ background: rgba(0, 0, 0, 0.75);
+ transform: translate(-50%, -50%);
+ }
+
+ .calendarbox > *, .clockbox > * {
+ position: relative;
+ z-index: 1;
+ }
+
+ .calendarbox > div:first-child {
+ z-index: 2;
+ }
+
+ .calendarbox .calendar, .clockbox h2 {
+ border-radius: 4px 4px 0 0;
+ overflow: hidden;
+ }
+
+ .calendarbox .calendar-cancel, .clockbox .calendar-cancel {
+ border-radius: 0 0 4px 4px;
+ overflow: hidden;
+ }
+
+ .calendar-shortcuts {
+ padding: 10px 0;
+ font-size: 0.75rem;
+ line-height: 12px;
+ }
+
+ .calendar-shortcuts a {
+ margin: 0 4px;
+ }
+
+ .timelist a {
+ background: var(--body-bg);
+ padding: 4px;
+ }
+
+ .calendar-cancel {
+ padding: 8px 10px;
+ }
+
+ .clockbox h2 {
+ padding: 8px 15px;
+ }
+
+ .calendar caption {
+ padding: 10px;
+ }
+
+ .calendarbox .calendarnav-previous, .calendarbox .calendarnav-next {
+ z-index: 1;
+ top: 10px;
+ }
+
+ /* History */
+
+ table#change-history tbody th, table#change-history tbody td {
+ font-size: 0.8125rem;
+ word-break: break-word;
+ }
+
+ table#change-history tbody th {
+ width: auto;
+ }
+
+ /* Docs */
+
+ table.model tbody th, table.model tbody td {
+ font-size: 0.8125rem;
+ word-break: break-word;
+ }
+}
diff --git a/static/admin/css/responsive_rtl.css b/static/admin/css/responsive_rtl.css
new file mode 100644
index 0000000..66d3c2f
--- /dev/null
+++ b/static/admin/css/responsive_rtl.css
@@ -0,0 +1,80 @@
+/* TABLETS */
+
+@media (max-width: 1024px) {
+ [dir="rtl"] .colMS {
+ margin-right: 0;
+ }
+
+ [dir="rtl"] #user-tools {
+ text-align: right;
+ }
+
+ [dir="rtl"] #changelist .actions label {
+ padding-left: 10px;
+ padding-right: 0;
+ }
+
+ [dir="rtl"] #changelist .actions select {
+ margin-left: 0;
+ margin-right: 15px;
+ }
+
+ [dir="rtl"] .change-list .filtered .results,
+ [dir="rtl"] .change-list .filtered .paginator,
+ [dir="rtl"] .filtered #toolbar,
+ [dir="rtl"] .filtered div.xfull,
+ [dir="rtl"] .filtered .actions,
+ [dir="rtl"] #changelist-filter {
+ margin-left: 0;
+ }
+
+ [dir="rtl"] .inline-group ul.tools a.add,
+ [dir="rtl"] .inline-group div.add-row a,
+ [dir="rtl"] .inline-group .tabular tr.add-row td a {
+ padding: 8px 26px 8px 10px;
+ background-position: calc(100% - 8px) 9px;
+ }
+
+ [dir="rtl"] .related-widget-wrapper-link + .selector {
+ margin-right: 0;
+ margin-left: 15px;
+ }
+
+ [dir="rtl"] .selector .selector-filter label {
+ margin-right: 0;
+ margin-left: 8px;
+ }
+
+ [dir="rtl"] .object-tools li {
+ float: right;
+ }
+
+ [dir="rtl"] .object-tools li + li {
+ margin-left: 0;
+ margin-right: 15px;
+ }
+
+ [dir="rtl"] .dashboard .module table td a {
+ padding-left: 0;
+ padding-right: 16px;
+ }
+}
+
+/* MOBILE */
+
+@media (max-width: 767px) {
+ [dir="rtl"] .aligned .related-lookup,
+ [dir="rtl"] .aligned .datetimeshortcuts {
+ margin-left: 0;
+ margin-right: 15px;
+ }
+
+ [dir="rtl"] .aligned ul {
+ margin-right: 0;
+ }
+
+ [dir="rtl"] #changelist-filter {
+ margin-left: 0;
+ margin-right: 0;
+ }
+}
diff --git a/static/admin/css/rtl.css b/static/admin/css/rtl.css
new file mode 100644
index 0000000..e0fadce
--- /dev/null
+++ b/static/admin/css/rtl.css
@@ -0,0 +1,239 @@
+/* GLOBAL */
+
+th {
+ text-align: right;
+}
+
+.module h2, .module caption {
+ text-align: right;
+}
+
+.module ul, .module ol {
+ margin-left: 0;
+ margin-right: 1.5em;
+}
+
+.viewlink, .addlink, .changelink {
+ padding-left: 0;
+ padding-right: 16px;
+ background-position: 100% 1px;
+}
+
+.deletelink {
+ padding-left: 0;
+ padding-right: 16px;
+ background-position: 100% 1px;
+}
+
+.object-tools {
+ float: left;
+}
+
+thead th:first-child,
+tfoot td:first-child {
+ border-left: none;
+}
+
+/* LAYOUT */
+
+#user-tools {
+ right: auto;
+ left: 0;
+ text-align: left;
+}
+
+div.breadcrumbs {
+ text-align: right;
+}
+
+#content-main {
+ float: right;
+}
+
+#content-related {
+ float: left;
+ margin-left: -300px;
+ margin-right: auto;
+}
+
+.colMS {
+ margin-left: 300px;
+ margin-right: 0;
+}
+
+/* SORTABLE TABLES */
+
+table thead th.sorted .sortoptions {
+ float: left;
+}
+
+thead th.sorted .text {
+ padding-right: 0;
+ padding-left: 42px;
+}
+
+/* dashboard styles */
+
+.dashboard .module table td a {
+ padding-left: .6em;
+ padding-right: 16px;
+}
+
+/* changelists styles */
+
+.change-list .filtered table {
+ border-left: none;
+ border-right: 0px none;
+}
+
+#changelist-filter {
+ border-left: none;
+ border-right: none;
+ margin-left: 0;
+ margin-right: 30px;
+}
+
+#changelist-filter li.selected {
+ border-left: none;
+ padding-left: 10px;
+ margin-left: 0;
+ border-right: 5px solid var(--hairline-color);
+ padding-right: 10px;
+ margin-right: -15px;
+}
+
+#changelist table tbody td:first-child, #changelist table tbody th:first-child {
+ border-right: none;
+ border-left: none;
+}
+
+/* FORMS */
+
+.aligned label {
+ padding: 0 0 3px 1em;
+ float: right;
+}
+
+.submit-row {
+ text-align: left
+}
+
+.submit-row p.deletelink-box {
+ float: right;
+}
+
+.submit-row input.default {
+ margin-left: 0;
+}
+
+.vDateField, .vTimeField {
+ margin-left: 2px;
+}
+
+.aligned .form-row input {
+ margin-left: 5px;
+}
+
+form .aligned p.help, form .aligned div.help {
+ clear: right;
+}
+
+form .aligned ul {
+ margin-right: 163px;
+ margin-left: 0;
+}
+
+form ul.inline li {
+ float: right;
+ padding-right: 0;
+ padding-left: 7px;
+}
+
+input[type=submit].default, .submit-row input.default {
+ float: left;
+}
+
+fieldset .fieldBox {
+ float: right;
+ margin-left: 20px;
+ margin-right: 0;
+}
+
+.errorlist li {
+ background-position: 100% 12px;
+ padding: 0;
+}
+
+.errornote {
+ background-position: 100% 12px;
+ padding: 10px 12px;
+}
+
+/* WIDGETS */
+
+.calendarnav-previous {
+ top: 0;
+ left: auto;
+ right: 10px;
+ background: url(../img/calendar-icons.svg) 0 -30px no-repeat;
+}
+
+.calendarbox .calendarnav-previous:focus,
+.calendarbox .calendarnav-previous:hover {
+ background-position: 0 -45px;
+}
+
+.calendarnav-next {
+ top: 0;
+ right: auto;
+ left: 10px;
+ background: url(../img/calendar-icons.svg) 0 0 no-repeat;
+}
+
+.calendarbox .calendarnav-next:focus,
+.calendarbox .calendarnav-next:hover {
+ background-position: 0 -15px;
+}
+
+.calendar caption, .calendarbox h2 {
+ text-align: center;
+}
+
+.selector {
+ float: right;
+}
+
+.selector .selector-filter {
+ text-align: right;
+}
+
+.inline-deletelink {
+ float: left;
+}
+
+form .form-row p.datetime {
+ overflow: hidden;
+}
+
+.related-widget-wrapper {
+ float: right;
+}
+
+/* MISC */
+
+.inline-related h2, .inline-group h2 {
+ text-align: right
+}
+
+.inline-related h3 span.delete {
+ padding-right: 20px;
+ padding-left: inherit;
+ left: 10px;
+ right: inherit;
+ float:left;
+}
+
+.inline-related h3 span.delete label {
+ margin-left: inherit;
+ margin-right: 2px;
+}
diff --git a/static/admin/css/unusable_password_field.css b/static/admin/css/unusable_password_field.css
new file mode 100644
index 0000000..d46eb03
--- /dev/null
+++ b/static/admin/css/unusable_password_field.css
@@ -0,0 +1,19 @@
+/* Hide warnings fields if usable password is selected */
+form:has(#id_usable_password input[value="true"]:checked) .messagelist {
+ display: none;
+}
+
+/* Hide password fields if unusable password is selected */
+form:has(#id_usable_password input[value="false"]:checked) .field-password1,
+form:has(#id_usable_password input[value="false"]:checked) .field-password2 {
+ display: none;
+}
+
+/* Select appropriate submit button */
+form:has(#id_usable_password input[value="true"]:checked) input[type="submit"].unset-password {
+ display: none;
+}
+
+form:has(#id_usable_password input[value="false"]:checked) input[type="submit"].set-password {
+ display: none;
+}
diff --git a/static/admin/css/vendor/select2/LICENSE-SELECT2.md b/static/admin/css/vendor/select2/LICENSE-SELECT2.md
new file mode 100644
index 0000000..8cb8a2b
--- /dev/null
+++ b/static/admin/css/vendor/select2/LICENSE-SELECT2.md
@@ -0,0 +1,21 @@
+The MIT License (MIT)
+
+Copyright (c) 2012-2017 Kevin Brown, Igor Vaynberg, and Select2 contributors
+
+Permission is hereby granted, free of charge, to any person obtaining a copy
+of this software and associated documentation files (the "Software"), to deal
+in the Software without restriction, including without limitation the rights
+to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+copies of the Software, and to permit persons to whom the Software is
+furnished to do so, subject to the following conditions:
+
+The above copyright notice and this permission notice shall be included in
+all copies or substantial portions of the Software.
+
+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
+THE SOFTWARE.
diff --git a/static/admin/css/vendor/select2/select2.css b/static/admin/css/vendor/select2/select2.css
new file mode 100644
index 0000000..750b320
--- /dev/null
+++ b/static/admin/css/vendor/select2/select2.css
@@ -0,0 +1,481 @@
+.select2-container {
+ box-sizing: border-box;
+ display: inline-block;
+ margin: 0;
+ position: relative;
+ vertical-align: middle; }
+ .select2-container .select2-selection--single {
+ box-sizing: border-box;
+ cursor: pointer;
+ display: block;
+ height: 28px;
+ user-select: none;
+ -webkit-user-select: none; }
+ .select2-container .select2-selection--single .select2-selection__rendered {
+ display: block;
+ padding-left: 8px;
+ padding-right: 20px;
+ overflow: hidden;
+ text-overflow: ellipsis;
+ white-space: nowrap; }
+ .select2-container .select2-selection--single .select2-selection__clear {
+ position: relative; }
+ .select2-container[dir="rtl"] .select2-selection--single .select2-selection__rendered {
+ padding-right: 8px;
+ padding-left: 20px; }
+ .select2-container .select2-selection--multiple {
+ box-sizing: border-box;
+ cursor: pointer;
+ display: block;
+ min-height: 32px;
+ user-select: none;
+ -webkit-user-select: none; }
+ .select2-container .select2-selection--multiple .select2-selection__rendered {
+ display: inline-block;
+ overflow: hidden;
+ padding-left: 8px;
+ text-overflow: ellipsis;
+ white-space: nowrap; }
+ .select2-container .select2-search--inline {
+ float: left; }
+ .select2-container .select2-search--inline .select2-search__field {
+ box-sizing: border-box;
+ border: none;
+ font-size: 100%;
+ margin-top: 5px;
+ padding: 0; }
+ .select2-container .select2-search--inline .select2-search__field::-webkit-search-cancel-button {
+ -webkit-appearance: none; }
+
+.select2-dropdown {
+ background-color: white;
+ border: 1px solid #aaa;
+ border-radius: 4px;
+ box-sizing: border-box;
+ display: block;
+ position: absolute;
+ left: -100000px;
+ width: 100%;
+ z-index: 1051; }
+
+.select2-results {
+ display: block; }
+
+.select2-results__options {
+ list-style: none;
+ margin: 0;
+ padding: 0; }
+
+.select2-results__option {
+ padding: 6px;
+ user-select: none;
+ -webkit-user-select: none; }
+ .select2-results__option[aria-selected] {
+ cursor: pointer; }
+
+.select2-container--open .select2-dropdown {
+ left: 0; }
+
+.select2-container--open .select2-dropdown--above {
+ border-bottom: none;
+ border-bottom-left-radius: 0;
+ border-bottom-right-radius: 0; }
+
+.select2-container--open .select2-dropdown--below {
+ border-top: none;
+ border-top-left-radius: 0;
+ border-top-right-radius: 0; }
+
+.select2-search--dropdown {
+ display: block;
+ padding: 4px; }
+ .select2-search--dropdown .select2-search__field {
+ padding: 4px;
+ width: 100%;
+ box-sizing: border-box; }
+ .select2-search--dropdown .select2-search__field::-webkit-search-cancel-button {
+ -webkit-appearance: none; }
+ .select2-search--dropdown.select2-search--hide {
+ display: none; }
+
+.select2-close-mask {
+ border: 0;
+ margin: 0;
+ padding: 0;
+ display: block;
+ position: fixed;
+ left: 0;
+ top: 0;
+ min-height: 100%;
+ min-width: 100%;
+ height: auto;
+ width: auto;
+ opacity: 0;
+ z-index: 99;
+ background-color: #fff;
+ filter: alpha(opacity=0); }
+
+.select2-hidden-accessible {
+ border: 0 !important;
+ clip: rect(0 0 0 0) !important;
+ -webkit-clip-path: inset(50%) !important;
+ clip-path: inset(50%) !important;
+ height: 1px !important;
+ overflow: hidden !important;
+ padding: 0 !important;
+ position: absolute !important;
+ width: 1px !important;
+ white-space: nowrap !important; }
+
+.select2-container--default .select2-selection--single {
+ background-color: #fff;
+ border: 1px solid #aaa;
+ border-radius: 4px; }
+ .select2-container--default .select2-selection--single .select2-selection__rendered {
+ color: #444;
+ line-height: 28px; }
+ .select2-container--default .select2-selection--single .select2-selection__clear {
+ cursor: pointer;
+ float: right;
+ font-weight: bold; }
+ .select2-container--default .select2-selection--single .select2-selection__placeholder {
+ color: #999; }
+ .select2-container--default .select2-selection--single .select2-selection__arrow {
+ height: 26px;
+ position: absolute;
+ top: 1px;
+ right: 1px;
+ width: 20px; }
+ .select2-container--default .select2-selection--single .select2-selection__arrow b {
+ border-color: #888 transparent transparent transparent;
+ border-style: solid;
+ border-width: 5px 4px 0 4px;
+ height: 0;
+ left: 50%;
+ margin-left: -4px;
+ margin-top: -2px;
+ position: absolute;
+ top: 50%;
+ width: 0; }
+
+.select2-container--default[dir="rtl"] .select2-selection--single .select2-selection__clear {
+ float: left; }
+
+.select2-container--default[dir="rtl"] .select2-selection--single .select2-selection__arrow {
+ left: 1px;
+ right: auto; }
+
+.select2-container--default.select2-container--disabled .select2-selection--single {
+ background-color: #eee;
+ cursor: default; }
+ .select2-container--default.select2-container--disabled .select2-selection--single .select2-selection__clear {
+ display: none; }
+
+.select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow b {
+ border-color: transparent transparent #888 transparent;
+ border-width: 0 4px 5px 4px; }
+
+.select2-container--default .select2-selection--multiple {
+ background-color: white;
+ border: 1px solid #aaa;
+ border-radius: 4px;
+ cursor: text; }
+ .select2-container--default .select2-selection--multiple .select2-selection__rendered {
+ box-sizing: border-box;
+ list-style: none;
+ margin: 0;
+ padding: 0 5px;
+ width: 100%; }
+ .select2-container--default .select2-selection--multiple .select2-selection__rendered li {
+ list-style: none; }
+ .select2-container--default .select2-selection--multiple .select2-selection__clear {
+ cursor: pointer;
+ float: right;
+ font-weight: bold;
+ margin-top: 5px;
+ margin-right: 10px;
+ padding: 1px; }
+ .select2-container--default .select2-selection--multiple .select2-selection__choice {
+ background-color: #e4e4e4;
+ border: 1px solid #aaa;
+ border-radius: 4px;
+ cursor: default;
+ float: left;
+ margin-right: 5px;
+ margin-top: 5px;
+ padding: 0 5px; }
+ .select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
+ color: #999;
+ cursor: pointer;
+ display: inline-block;
+ font-weight: bold;
+ margin-right: 2px; }
+ .select2-container--default .select2-selection--multiple .select2-selection__choice__remove:hover {
+ color: #333; }
+
+.select2-container--default[dir="rtl"] .select2-selection--multiple .select2-selection__choice, .select2-container--default[dir="rtl"] .select2-selection--multiple .select2-search--inline {
+ float: right; }
+
+.select2-container--default[dir="rtl"] .select2-selection--multiple .select2-selection__choice {
+ margin-left: 5px;
+ margin-right: auto; }
+
+.select2-container--default[dir="rtl"] .select2-selection--multiple .select2-selection__choice__remove {
+ margin-left: 2px;
+ margin-right: auto; }
+
+.select2-container--default.select2-container--focus .select2-selection--multiple {
+ border: solid black 1px;
+ outline: 0; }
+
+.select2-container--default.select2-container--disabled .select2-selection--multiple {
+ background-color: #eee;
+ cursor: default; }
+
+.select2-container--default.select2-container--disabled .select2-selection__choice__remove {
+ display: none; }
+
+.select2-container--default.select2-container--open.select2-container--above .select2-selection--single, .select2-container--default.select2-container--open.select2-container--above .select2-selection--multiple {
+ border-top-left-radius: 0;
+ border-top-right-radius: 0; }
+
+.select2-container--default.select2-container--open.select2-container--below .select2-selection--single, .select2-container--default.select2-container--open.select2-container--below .select2-selection--multiple {
+ border-bottom-left-radius: 0;
+ border-bottom-right-radius: 0; }
+
+.select2-container--default .select2-search--dropdown .select2-search__field {
+ border: 1px solid #aaa; }
+
+.select2-container--default .select2-search--inline .select2-search__field {
+ background: transparent;
+ border: none;
+ outline: 0;
+ box-shadow: none;
+ -webkit-appearance: textfield; }
+
+.select2-container--default .select2-results > .select2-results__options {
+ max-height: 200px;
+ overflow-y: auto; }
+
+.select2-container--default .select2-results__option[role=group] {
+ padding: 0; }
+
+.select2-container--default .select2-results__option[aria-disabled=true] {
+ color: #999; }
+
+.select2-container--default .select2-results__option[aria-selected=true] {
+ background-color: #ddd; }
+
+.select2-container--default .select2-results__option .select2-results__option {
+ padding-left: 1em; }
+ .select2-container--default .select2-results__option .select2-results__option .select2-results__group {
+ padding-left: 0; }
+ .select2-container--default .select2-results__option .select2-results__option .select2-results__option {
+ margin-left: -1em;
+ padding-left: 2em; }
+ .select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
+ margin-left: -2em;
+ padding-left: 3em; }
+ .select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
+ margin-left: -3em;
+ padding-left: 4em; }
+ .select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
+ margin-left: -4em;
+ padding-left: 5em; }
+ .select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
+ margin-left: -5em;
+ padding-left: 6em; }
+
+.select2-container--default .select2-results__option--highlighted[aria-selected] {
+ background-color: #5897fb;
+ color: white; }
+
+.select2-container--default .select2-results__group {
+ cursor: default;
+ display: block;
+ padding: 6px; }
+
+.select2-container--classic .select2-selection--single {
+ background-color: #f7f7f7;
+ border: 1px solid #aaa;
+ border-radius: 4px;
+ outline: 0;
+ background-image: -webkit-linear-gradient(top, white 50%, #eeeeee 100%);
+ background-image: -o-linear-gradient(top, white 50%, #eeeeee 100%);
+ background-image: linear-gradient(to bottom, white 50%, #eeeeee 100%);
+ background-repeat: repeat-x;
+ filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFFFFFFF', endColorstr='#FFEEEEEE', GradientType=0); }
+ .select2-container--classic .select2-selection--single:focus {
+ border: 1px solid #5897fb; }
+ .select2-container--classic .select2-selection--single .select2-selection__rendered {
+ color: #444;
+ line-height: 28px; }
+ .select2-container--classic .select2-selection--single .select2-selection__clear {
+ cursor: pointer;
+ float: right;
+ font-weight: bold;
+ margin-right: 10px; }
+ .select2-container--classic .select2-selection--single .select2-selection__placeholder {
+ color: #999; }
+ .select2-container--classic .select2-selection--single .select2-selection__arrow {
+ background-color: #ddd;
+ border: none;
+ border-left: 1px solid #aaa;
+ border-top-right-radius: 4px;
+ border-bottom-right-radius: 4px;
+ height: 26px;
+ position: absolute;
+ top: 1px;
+ right: 1px;
+ width: 20px;
+ background-image: -webkit-linear-gradient(top, #eeeeee 50%, #cccccc 100%);
+ background-image: -o-linear-gradient(top, #eeeeee 50%, #cccccc 100%);
+ background-image: linear-gradient(to bottom, #eeeeee 50%, #cccccc 100%);
+ background-repeat: repeat-x;
+ filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFEEEEEE', endColorstr='#FFCCCCCC', GradientType=0); }
+ .select2-container--classic .select2-selection--single .select2-selection__arrow b {
+ border-color: #888 transparent transparent transparent;
+ border-style: solid;
+ border-width: 5px 4px 0 4px;
+ height: 0;
+ left: 50%;
+ margin-left: -4px;
+ margin-top: -2px;
+ position: absolute;
+ top: 50%;
+ width: 0; }
+
+.select2-container--classic[dir="rtl"] .select2-selection--single .select2-selection__clear {
+ float: left; }
+
+.select2-container--classic[dir="rtl"] .select2-selection--single .select2-selection__arrow {
+ border: none;
+ border-right: 1px solid #aaa;
+ border-radius: 0;
+ border-top-left-radius: 4px;
+ border-bottom-left-radius: 4px;
+ left: 1px;
+ right: auto; }
+
+.select2-container--classic.select2-container--open .select2-selection--single {
+ border: 1px solid #5897fb; }
+ .select2-container--classic.select2-container--open .select2-selection--single .select2-selection__arrow {
+ background: transparent;
+ border: none; }
+ .select2-container--classic.select2-container--open .select2-selection--single .select2-selection__arrow b {
+ border-color: transparent transparent #888 transparent;
+ border-width: 0 4px 5px 4px; }
+
+.select2-container--classic.select2-container--open.select2-container--above .select2-selection--single {
+ border-top: none;
+ border-top-left-radius: 0;
+ border-top-right-radius: 0;
+ background-image: -webkit-linear-gradient(top, white 0%, #eeeeee 50%);
+ background-image: -o-linear-gradient(top, white 0%, #eeeeee 50%);
+ background-image: linear-gradient(to bottom, white 0%, #eeeeee 50%);
+ background-repeat: repeat-x;
+ filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFFFFFFF', endColorstr='#FFEEEEEE', GradientType=0); }
+
+.select2-container--classic.select2-container--open.select2-container--below .select2-selection--single {
+ border-bottom: none;
+ border-bottom-left-radius: 0;
+ border-bottom-right-radius: 0;
+ background-image: -webkit-linear-gradient(top, #eeeeee 50%, white 100%);
+ background-image: -o-linear-gradient(top, #eeeeee 50%, white 100%);
+ background-image: linear-gradient(to bottom, #eeeeee 50%, white 100%);
+ background-repeat: repeat-x;
+ filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFEEEEEE', endColorstr='#FFFFFFFF', GradientType=0); }
+
+.select2-container--classic .select2-selection--multiple {
+ background-color: white;
+ border: 1px solid #aaa;
+ border-radius: 4px;
+ cursor: text;
+ outline: 0; }
+ .select2-container--classic .select2-selection--multiple:focus {
+ border: 1px solid #5897fb; }
+ .select2-container--classic .select2-selection--multiple .select2-selection__rendered {
+ list-style: none;
+ margin: 0;
+ padding: 0 5px; }
+ .select2-container--classic .select2-selection--multiple .select2-selection__clear {
+ display: none; }
+ .select2-container--classic .select2-selection--multiple .select2-selection__choice {
+ background-color: #e4e4e4;
+ border: 1px solid #aaa;
+ border-radius: 4px;
+ cursor: default;
+ float: left;
+ margin-right: 5px;
+ margin-top: 5px;
+ padding: 0 5px; }
+ .select2-container--classic .select2-selection--multiple .select2-selection__choice__remove {
+ color: #888;
+ cursor: pointer;
+ display: inline-block;
+ font-weight: bold;
+ margin-right: 2px; }
+ .select2-container--classic .select2-selection--multiple .select2-selection__choice__remove:hover {
+ color: #555; }
+
+.select2-container--classic[dir="rtl"] .select2-selection--multiple .select2-selection__choice {
+ float: right;
+ margin-left: 5px;
+ margin-right: auto; }
+
+.select2-container--classic[dir="rtl"] .select2-selection--multiple .select2-selection__choice__remove {
+ margin-left: 2px;
+ margin-right: auto; }
+
+.select2-container--classic.select2-container--open .select2-selection--multiple {
+ border: 1px solid #5897fb; }
+
+.select2-container--classic.select2-container--open.select2-container--above .select2-selection--multiple {
+ border-top: none;
+ border-top-left-radius: 0;
+ border-top-right-radius: 0; }
+
+.select2-container--classic.select2-container--open.select2-container--below .select2-selection--multiple {
+ border-bottom: none;
+ border-bottom-left-radius: 0;
+ border-bottom-right-radius: 0; }
+
+.select2-container--classic .select2-search--dropdown .select2-search__field {
+ border: 1px solid #aaa;
+ outline: 0; }
+
+.select2-container--classic .select2-search--inline .select2-search__field {
+ outline: 0;
+ box-shadow: none; }
+
+.select2-container--classic .select2-dropdown {
+ background-color: white;
+ border: 1px solid transparent; }
+
+.select2-container--classic .select2-dropdown--above {
+ border-bottom: none; }
+
+.select2-container--classic .select2-dropdown--below {
+ border-top: none; }
+
+.select2-container--classic .select2-results > .select2-results__options {
+ max-height: 200px;
+ overflow-y: auto; }
+
+.select2-container--classic .select2-results__option[role=group] {
+ padding: 0; }
+
+.select2-container--classic .select2-results__option[aria-disabled=true] {
+ color: grey; }
+
+.select2-container--classic .select2-results__option--highlighted[aria-selected] {
+ background-color: #3875d7;
+ color: white; }
+
+.select2-container--classic .select2-results__group {
+ cursor: default;
+ display: block;
+ padding: 6px; }
+
+.select2-container--classic.select2-container--open .select2-dropdown {
+ border-color: #5897fb; }
diff --git a/static/admin/css/vendor/select2/select2.min.css b/static/admin/css/vendor/select2/select2.min.css
new file mode 100644
index 0000000..7c18ad5
--- /dev/null
+++ b/static/admin/css/vendor/select2/select2.min.css
@@ -0,0 +1 @@
+.select2-container{box-sizing:border-box;display:inline-block;margin:0;position:relative;vertical-align:middle}.select2-container .select2-selection--single{box-sizing:border-box;cursor:pointer;display:block;height:28px;user-select:none;-webkit-user-select:none}.select2-container .select2-selection--single .select2-selection__rendered{display:block;padding-left:8px;padding-right:20px;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.select2-container .select2-selection--single .select2-selection__clear{position:relative}.select2-container[dir="rtl"] .select2-selection--single .select2-selection__rendered{padding-right:8px;padding-left:20px}.select2-container .select2-selection--multiple{box-sizing:border-box;cursor:pointer;display:block;min-height:32px;user-select:none;-webkit-user-select:none}.select2-container .select2-selection--multiple .select2-selection__rendered{display:inline-block;overflow:hidden;padding-left:8px;text-overflow:ellipsis;white-space:nowrap}.select2-container .select2-search--inline{float:left}.select2-container .select2-search--inline .select2-search__field{box-sizing:border-box;border:none;font-size:100%;margin-top:5px;padding:0}.select2-container .select2-search--inline .select2-search__field::-webkit-search-cancel-button{-webkit-appearance:none}.select2-dropdown{background-color:white;border:1px solid #aaa;border-radius:4px;box-sizing:border-box;display:block;position:absolute;left:-100000px;width:100%;z-index:1051}.select2-results{display:block}.select2-results__options{list-style:none;margin:0;padding:0}.select2-results__option{padding:6px;user-select:none;-webkit-user-select:none}.select2-results__option[aria-selected]{cursor:pointer}.select2-container--open .select2-dropdown{left:0}.select2-container--open .select2-dropdown--above{border-bottom:none;border-bottom-left-radius:0;border-bottom-right-radius:0}.select2-container--open .select2-dropdown--below{border-top:none;border-top-left-radius:0;border-top-right-radius:0}.select2-search--dropdown{display:block;padding:4px}.select2-search--dropdown .select2-search__field{padding:4px;width:100%;box-sizing:border-box}.select2-search--dropdown .select2-search__field::-webkit-search-cancel-button{-webkit-appearance:none}.select2-search--dropdown.select2-search--hide{display:none}.select2-close-mask{border:0;margin:0;padding:0;display:block;position:fixed;left:0;top:0;min-height:100%;min-width:100%;height:auto;width:auto;opacity:0;z-index:99;background-color:#fff;filter:alpha(opacity=0)}.select2-hidden-accessible{border:0 !important;clip:rect(0 0 0 0) !important;-webkit-clip-path:inset(50%) !important;clip-path:inset(50%) !important;height:1px !important;overflow:hidden !important;padding:0 !important;position:absolute !important;width:1px !important;white-space:nowrap !important}.select2-container--default .select2-selection--single{background-color:#fff;border:1px solid #aaa;border-radius:4px}.select2-container--default .select2-selection--single .select2-selection__rendered{color:#444;line-height:28px}.select2-container--default .select2-selection--single .select2-selection__clear{cursor:pointer;float:right;font-weight:bold}.select2-container--default .select2-selection--single .select2-selection__placeholder{color:#999}.select2-container--default .select2-selection--single .select2-selection__arrow{height:26px;position:absolute;top:1px;right:1px;width:20px}.select2-container--default .select2-selection--single .select2-selection__arrow b{border-color:#888 transparent transparent transparent;border-style:solid;border-width:5px 4px 0 4px;height:0;left:50%;margin-left:-4px;margin-top:-2px;position:absolute;top:50%;width:0}.select2-container--default[dir="rtl"] .select2-selection--single .select2-selection__clear{float:left}.select2-container--default[dir="rtl"] .select2-selection--single .select2-selection__arrow{left:1px;right:auto}.select2-container--default.select2-container--disabled .select2-selection--single{background-color:#eee;cursor:default}.select2-container--default.select2-container--disabled .select2-selection--single .select2-selection__clear{display:none}.select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow b{border-color:transparent transparent #888 transparent;border-width:0 4px 5px 4px}.select2-container--default .select2-selection--multiple{background-color:white;border:1px solid #aaa;border-radius:4px;cursor:text}.select2-container--default .select2-selection--multiple .select2-selection__rendered{box-sizing:border-box;list-style:none;margin:0;padding:0 5px;width:100%}.select2-container--default .select2-selection--multiple .select2-selection__rendered li{list-style:none}.select2-container--default .select2-selection--multiple .select2-selection__clear{cursor:pointer;float:right;font-weight:bold;margin-top:5px;margin-right:10px;padding:1px}.select2-container--default .select2-selection--multiple .select2-selection__choice{background-color:#e4e4e4;border:1px solid #aaa;border-radius:4px;cursor:default;float:left;margin-right:5px;margin-top:5px;padding:0 5px}.select2-container--default .select2-selection--multiple .select2-selection__choice__remove{color:#999;cursor:pointer;display:inline-block;font-weight:bold;margin-right:2px}.select2-container--default .select2-selection--multiple .select2-selection__choice__remove:hover{color:#333}.select2-container--default[dir="rtl"] .select2-selection--multiple .select2-selection__choice,.select2-container--default[dir="rtl"] .select2-selection--multiple .select2-search--inline{float:right}.select2-container--default[dir="rtl"] .select2-selection--multiple .select2-selection__choice{margin-left:5px;margin-right:auto}.select2-container--default[dir="rtl"] .select2-selection--multiple .select2-selection__choice__remove{margin-left:2px;margin-right:auto}.select2-container--default.select2-container--focus .select2-selection--multiple{border:solid black 1px;outline:0}.select2-container--default.select2-container--disabled .select2-selection--multiple{background-color:#eee;cursor:default}.select2-container--default.select2-container--disabled .select2-selection__choice__remove{display:none}.select2-container--default.select2-container--open.select2-container--above .select2-selection--single,.select2-container--default.select2-container--open.select2-container--above .select2-selection--multiple{border-top-left-radius:0;border-top-right-radius:0}.select2-container--default.select2-container--open.select2-container--below .select2-selection--single,.select2-container--default.select2-container--open.select2-container--below .select2-selection--multiple{border-bottom-left-radius:0;border-bottom-right-radius:0}.select2-container--default .select2-search--dropdown .select2-search__field{border:1px solid #aaa}.select2-container--default .select2-search--inline .select2-search__field{background:transparent;border:none;outline:0;box-shadow:none;-webkit-appearance:textfield}.select2-container--default .select2-results>.select2-results__options{max-height:200px;overflow-y:auto}.select2-container--default .select2-results__option[role=group]{padding:0}.select2-container--default .select2-results__option[aria-disabled=true]{color:#999}.select2-container--default .select2-results__option[aria-selected=true]{background-color:#ddd}.select2-container--default .select2-results__option .select2-results__option{padding-left:1em}.select2-container--default .select2-results__option .select2-results__option .select2-results__group{padding-left:0}.select2-container--default .select2-results__option .select2-results__option .select2-results__option{margin-left:-1em;padding-left:2em}.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option{margin-left:-2em;padding-left:3em}.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option{margin-left:-3em;padding-left:4em}.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option{margin-left:-4em;padding-left:5em}.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option{margin-left:-5em;padding-left:6em}.select2-container--default .select2-results__option--highlighted[aria-selected]{background-color:#5897fb;color:white}.select2-container--default .select2-results__group{cursor:default;display:block;padding:6px}.select2-container--classic .select2-selection--single{background-color:#f7f7f7;border:1px solid #aaa;border-radius:4px;outline:0;background-image:-webkit-linear-gradient(top, #fff 50%, #eee 100%);background-image:-o-linear-gradient(top, #fff 50%, #eee 100%);background-image:linear-gradient(to bottom, #fff 50%, #eee 100%);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFFFFFFF', endColorstr='#FFEEEEEE', GradientType=0)}.select2-container--classic .select2-selection--single:focus{border:1px solid #5897fb}.select2-container--classic .select2-selection--single .select2-selection__rendered{color:#444;line-height:28px}.select2-container--classic .select2-selection--single .select2-selection__clear{cursor:pointer;float:right;font-weight:bold;margin-right:10px}.select2-container--classic .select2-selection--single .select2-selection__placeholder{color:#999}.select2-container--classic .select2-selection--single .select2-selection__arrow{background-color:#ddd;border:none;border-left:1px solid #aaa;border-top-right-radius:4px;border-bottom-right-radius:4px;height:26px;position:absolute;top:1px;right:1px;width:20px;background-image:-webkit-linear-gradient(top, #eee 50%, #ccc 100%);background-image:-o-linear-gradient(top, #eee 50%, #ccc 100%);background-image:linear-gradient(to bottom, #eee 50%, #ccc 100%);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFEEEEEE', endColorstr='#FFCCCCCC', GradientType=0)}.select2-container--classic .select2-selection--single .select2-selection__arrow b{border-color:#888 transparent transparent transparent;border-style:solid;border-width:5px 4px 0 4px;height:0;left:50%;margin-left:-4px;margin-top:-2px;position:absolute;top:50%;width:0}.select2-container--classic[dir="rtl"] .select2-selection--single .select2-selection__clear{float:left}.select2-container--classic[dir="rtl"] .select2-selection--single .select2-selection__arrow{border:none;border-right:1px solid #aaa;border-radius:0;border-top-left-radius:4px;border-bottom-left-radius:4px;left:1px;right:auto}.select2-container--classic.select2-container--open .select2-selection--single{border:1px solid #5897fb}.select2-container--classic.select2-container--open .select2-selection--single .select2-selection__arrow{background:transparent;border:none}.select2-container--classic.select2-container--open .select2-selection--single .select2-selection__arrow b{border-color:transparent transparent #888 transparent;border-width:0 4px 5px 4px}.select2-container--classic.select2-container--open.select2-container--above .select2-selection--single{border-top:none;border-top-left-radius:0;border-top-right-radius:0;background-image:-webkit-linear-gradient(top, #fff 0%, #eee 50%);background-image:-o-linear-gradient(top, #fff 0%, #eee 50%);background-image:linear-gradient(to bottom, #fff 0%, #eee 50%);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFFFFFFF', endColorstr='#FFEEEEEE', GradientType=0)}.select2-container--classic.select2-container--open.select2-container--below .select2-selection--single{border-bottom:none;border-bottom-left-radius:0;border-bottom-right-radius:0;background-image:-webkit-linear-gradient(top, #eee 50%, #fff 100%);background-image:-o-linear-gradient(top, #eee 50%, #fff 100%);background-image:linear-gradient(to bottom, #eee 50%, #fff 100%);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFEEEEEE', endColorstr='#FFFFFFFF', GradientType=0)}.select2-container--classic .select2-selection--multiple{background-color:white;border:1px solid #aaa;border-radius:4px;cursor:text;outline:0}.select2-container--classic .select2-selection--multiple:focus{border:1px solid #5897fb}.select2-container--classic .select2-selection--multiple .select2-selection__rendered{list-style:none;margin:0;padding:0 5px}.select2-container--classic .select2-selection--multiple .select2-selection__clear{display:none}.select2-container--classic .select2-selection--multiple .select2-selection__choice{background-color:#e4e4e4;border:1px solid #aaa;border-radius:4px;cursor:default;float:left;margin-right:5px;margin-top:5px;padding:0 5px}.select2-container--classic .select2-selection--multiple .select2-selection__choice__remove{color:#888;cursor:pointer;display:inline-block;font-weight:bold;margin-right:2px}.select2-container--classic .select2-selection--multiple .select2-selection__choice__remove:hover{color:#555}.select2-container--classic[dir="rtl"] .select2-selection--multiple .select2-selection__choice{float:right;margin-left:5px;margin-right:auto}.select2-container--classic[dir="rtl"] .select2-selection--multiple .select2-selection__choice__remove{margin-left:2px;margin-right:auto}.select2-container--classic.select2-container--open .select2-selection--multiple{border:1px solid #5897fb}.select2-container--classic.select2-container--open.select2-container--above .select2-selection--multiple{border-top:none;border-top-left-radius:0;border-top-right-radius:0}.select2-container--classic.select2-container--open.select2-container--below .select2-selection--multiple{border-bottom:none;border-bottom-left-radius:0;border-bottom-right-radius:0}.select2-container--classic .select2-search--dropdown .select2-search__field{border:1px solid #aaa;outline:0}.select2-container--classic .select2-search--inline .select2-search__field{outline:0;box-shadow:none}.select2-container--classic .select2-dropdown{background-color:#fff;border:1px solid transparent}.select2-container--classic .select2-dropdown--above{border-bottom:none}.select2-container--classic .select2-dropdown--below{border-top:none}.select2-container--classic .select2-results>.select2-results__options{max-height:200px;overflow-y:auto}.select2-container--classic .select2-results__option[role=group]{padding:0}.select2-container--classic .select2-results__option[aria-disabled=true]{color:grey}.select2-container--classic .select2-results__option--highlighted[aria-selected]{background-color:#3875d7;color:#fff}.select2-container--classic .select2-results__group{cursor:default;display:block;padding:6px}.select2-container--classic.select2-container--open .select2-dropdown{border-color:#5897fb}
diff --git a/static/admin/css/widgets.css b/static/admin/css/widgets.css
new file mode 100644
index 0000000..cd1d6b4
--- /dev/null
+++ b/static/admin/css/widgets.css
@@ -0,0 +1,580 @@
+/* SELECTOR (FILTER INTERFACE) */
+
+.selector {
+ width: 800px;
+ float: left;
+ display: flex;
+}
+
+.selector select {
+ width: 380px;
+ height: 17.2em;
+ flex: 1 0 auto;
+}
+
+.selector-available, .selector-chosen {
+ width: 380px;
+ text-align: center;
+ margin-bottom: 5px;
+ display: flex;
+ flex-direction: column;
+}
+
+.selector-chosen select {
+ border-top: none;
+}
+
+.selector-available h2, .selector-chosen h2 {
+ border: 1px solid var(--border-color);
+ border-radius: 4px 4px 0 0;
+}
+
+.selector-chosen h2 {
+ background: var(--primary);
+ color: var(--header-link-color);
+}
+
+.selector .selector-available h2 {
+ background: var(--darkened-bg);
+ color: var(--body-quiet-color);
+}
+
+.selector .selector-filter {
+ border: 1px solid var(--border-color);
+ border-width: 0 1px;
+ padding: 8px;
+ color: var(--body-quiet-color);
+ font-size: 0.625rem;
+ margin: 0;
+ text-align: left;
+}
+
+.selector .selector-filter label,
+.inline-group .aligned .selector .selector-filter label {
+ float: left;
+ margin: 7px 0 0;
+ width: 18px;
+ height: 18px;
+ padding: 0;
+ overflow: hidden;
+ line-height: 1;
+}
+
+.selector .selector-available input {
+ width: 320px;
+ margin-left: 8px;
+}
+
+.selector ul.selector-chooser {
+ align-self: center;
+ width: 22px;
+ background-color: var(--selected-bg);
+ border-radius: 10px;
+ margin: 0 5px;
+ padding: 0;
+ transform: translateY(-17px);
+}
+
+.selector-chooser li {
+ margin: 0;
+ padding: 3px;
+ list-style-type: none;
+}
+
+.selector select {
+ padding: 0 10px;
+ margin: 0 0 10px;
+ border-radius: 0 0 4px 4px;
+}
+
+.selector-add, .selector-remove {
+ width: 16px;
+ height: 16px;
+ display: block;
+ text-indent: -3000px;
+ overflow: hidden;
+ cursor: default;
+ opacity: 0.55;
+}
+
+.active.selector-add, .active.selector-remove {
+ opacity: 1;
+}
+
+.active.selector-add:hover, .active.selector-remove:hover {
+ cursor: pointer;
+}
+
+.selector-add {
+ background: url(../img/selector-icons.svg) 0 -96px no-repeat;
+}
+
+.active.selector-add:focus, .active.selector-add:hover {
+ background-position: 0 -112px;
+}
+
+.selector-remove {
+ background: url(../img/selector-icons.svg) 0 -64px no-repeat;
+}
+
+.active.selector-remove:focus, .active.selector-remove:hover {
+ background-position: 0 -80px;
+}
+
+a.selector-chooseall, a.selector-clearall {
+ display: inline-block;
+ height: 16px;
+ text-align: left;
+ margin: 1px auto 3px;
+ overflow: hidden;
+ font-weight: bold;
+ line-height: 16px;
+ color: var(--body-quiet-color);
+ text-decoration: none;
+ opacity: 0.55;
+}
+
+a.active.selector-chooseall:focus, a.active.selector-clearall:focus,
+a.active.selector-chooseall:hover, a.active.selector-clearall:hover {
+ color: var(--link-fg);
+}
+
+a.active.selector-chooseall, a.active.selector-clearall {
+ opacity: 1;
+}
+
+a.active.selector-chooseall:hover, a.active.selector-clearall:hover {
+ cursor: pointer;
+}
+
+a.selector-chooseall {
+ padding: 0 18px 0 0;
+ background: url(../img/selector-icons.svg) right -160px no-repeat;
+ cursor: default;
+}
+
+a.active.selector-chooseall:focus, a.active.selector-chooseall:hover {
+ background-position: 100% -176px;
+}
+
+a.selector-clearall {
+ padding: 0 0 0 18px;
+ background: url(../img/selector-icons.svg) 0 -128px no-repeat;
+ cursor: default;
+}
+
+a.active.selector-clearall:focus, a.active.selector-clearall:hover {
+ background-position: 0 -144px;
+}
+
+/* STACKED SELECTORS */
+
+.stacked {
+ float: left;
+ width: 490px;
+ display: block;
+}
+
+.stacked select {
+ width: 480px;
+ height: 10.1em;
+}
+
+.stacked .selector-available, .stacked .selector-chosen {
+ width: 480px;
+}
+
+.stacked .selector-available {
+ margin-bottom: 0;
+}
+
+.stacked .selector-available input {
+ width: 422px;
+}
+
+.stacked ul.selector-chooser {
+ height: 22px;
+ width: 50px;
+ margin: 0 0 10px 40%;
+ background-color: #eee;
+ border-radius: 10px;
+ transform: none;
+}
+
+.stacked .selector-chooser li {
+ float: left;
+ padding: 3px 3px 3px 5px;
+}
+
+.stacked .selector-chooseall, .stacked .selector-clearall {
+ display: none;
+}
+
+.stacked .selector-add {
+ background: url(../img/selector-icons.svg) 0 -32px no-repeat;
+ cursor: default;
+}
+
+.stacked .active.selector-add {
+ background-position: 0 -32px;
+ cursor: pointer;
+}
+
+.stacked .active.selector-add:focus, .stacked .active.selector-add:hover {
+ background-position: 0 -48px;
+ cursor: pointer;
+}
+
+.stacked .selector-remove {
+ background: url(../img/selector-icons.svg) 0 0 no-repeat;
+ cursor: default;
+}
+
+.stacked .active.selector-remove {
+ background-position: 0 0px;
+ cursor: pointer;
+}
+
+.stacked .active.selector-remove:focus, .stacked .active.selector-remove:hover {
+ background-position: 0 -16px;
+ cursor: pointer;
+}
+
+.selector .help-icon {
+ background: url(../img/icon-unknown.svg) 0 0 no-repeat;
+ display: inline-block;
+ vertical-align: middle;
+ margin: -2px 0 0 2px;
+ width: 13px;
+ height: 13px;
+}
+
+.selector .selector-chosen .help-icon {
+ background: url(../img/icon-unknown-alt.svg) 0 0 no-repeat;
+}
+
+.selector .search-label-icon {
+ background: url(../img/search.svg) 0 0 no-repeat;
+ display: inline-block;
+ height: 18px;
+ width: 18px;
+}
+
+/* DATE AND TIME */
+
+p.datetime {
+ line-height: 20px;
+ margin: 0;
+ padding: 0;
+ color: var(--body-quiet-color);
+ font-weight: bold;
+}
+
+.datetime span {
+ white-space: nowrap;
+ font-weight: normal;
+ font-size: 0.6875rem;
+ color: var(--body-quiet-color);
+}
+
+.datetime input, .form-row .datetime input.vDateField, .form-row .datetime input.vTimeField {
+ margin-left: 5px;
+ margin-bottom: 4px;
+}
+
+table p.datetime {
+ font-size: 0.6875rem;
+ margin-left: 0;
+ padding-left: 0;
+}
+
+.datetimeshortcuts .clock-icon, .datetimeshortcuts .date-icon {
+ position: relative;
+ display: inline-block;
+ vertical-align: middle;
+ height: 16px;
+ width: 16px;
+ overflow: hidden;
+}
+
+.datetimeshortcuts .clock-icon {
+ background: url(../img/icon-clock.svg) 0 0 no-repeat;
+}
+
+.datetimeshortcuts a:focus .clock-icon,
+.datetimeshortcuts a:hover .clock-icon {
+ background-position: 0 -16px;
+}
+
+.datetimeshortcuts .date-icon {
+ background: url(../img/icon-calendar.svg) 0 0 no-repeat;
+ top: -1px;
+}
+
+.datetimeshortcuts a:focus .date-icon,
+.datetimeshortcuts a:hover .date-icon {
+ background-position: 0 -16px;
+}
+
+.timezonewarning {
+ font-size: 0.6875rem;
+ color: var(--body-quiet-color);
+}
+
+/* URL */
+
+p.url {
+ line-height: 20px;
+ margin: 0;
+ padding: 0;
+ color: var(--body-quiet-color);
+ font-size: 0.6875rem;
+ font-weight: bold;
+}
+
+.url a {
+ font-weight: normal;
+}
+
+/* FILE UPLOADS */
+
+p.file-upload {
+ line-height: 20px;
+ margin: 0;
+ padding: 0;
+ color: var(--body-quiet-color);
+ font-size: 0.6875rem;
+ font-weight: bold;
+}
+
+.aligned p.file-upload {
+ margin-left: 170px;
+}
+
+.file-upload a {
+ font-weight: normal;
+}
+
+.file-upload .deletelink {
+ margin-left: 5px;
+}
+
+span.clearable-file-input label {
+ color: var(--body-fg);
+ font-size: 0.6875rem;
+ display: inline;
+ float: none;
+}
+
+/* CALENDARS & CLOCKS */
+
+.calendarbox, .clockbox {
+ margin: 5px auto;
+ font-size: 0.75rem;
+ width: 19em;
+ text-align: center;
+ background: var(--body-bg);
+ color: var(--body-fg);
+ border: 1px solid var(--hairline-color);
+ border-radius: 4px;
+ box-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
+ overflow: hidden;
+ position: relative;
+}
+
+.clockbox {
+ width: auto;
+}
+
+.calendar {
+ margin: 0;
+ padding: 0;
+}
+
+.calendar table {
+ margin: 0;
+ padding: 0;
+ border-collapse: collapse;
+ background: white;
+ width: 100%;
+}
+
+.calendar caption, .calendarbox h2 {
+ margin: 0;
+ text-align: center;
+ border-top: none;
+ font-weight: 700;
+ font-size: 0.75rem;
+ color: #333;
+ background: var(--accent);
+}
+
+.calendar th {
+ padding: 8px 5px;
+ background: var(--darkened-bg);
+ border-bottom: 1px solid var(--border-color);
+ font-weight: 400;
+ font-size: 0.75rem;
+ text-align: center;
+ color: var(--body-quiet-color);
+}
+
+.calendar td {
+ font-weight: 400;
+ font-size: 0.75rem;
+ text-align: center;
+ padding: 0;
+ border-top: 1px solid var(--hairline-color);
+ border-bottom: none;
+}
+
+.calendar td.selected a {
+ background: var(--primary);
+ color: var(--button-fg);
+}
+
+.calendar td.nonday {
+ background: var(--darkened-bg);
+}
+
+.calendar td.today a {
+ font-weight: 700;
+}
+
+.calendar td a, .timelist a {
+ display: block;
+ font-weight: 400;
+ padding: 6px;
+ text-decoration: none;
+ color: var(--body-quiet-color);
+}
+
+.calendar td a:focus, .timelist a:focus,
+.calendar td a:hover, .timelist a:hover {
+ background: var(--primary);
+ color: white;
+}
+
+.calendar td a:active, .timelist a:active {
+ background: var(--header-bg);
+ color: white;
+}
+
+.calendarnav {
+ font-size: 0.625rem;
+ text-align: center;
+ color: #ccc;
+ margin: 0;
+ padding: 1px 3px;
+}
+
+.calendarnav a:link, #calendarnav a:visited,
+#calendarnav a:focus, #calendarnav a:hover {
+ color: var(--body-quiet-color);
+}
+
+.calendar-shortcuts {
+ background: var(--body-bg);
+ color: var(--body-quiet-color);
+ font-size: 0.6875rem;
+ line-height: 11px;
+ border-top: 1px solid var(--hairline-color);
+ padding: 8px 0;
+}
+
+.calendarbox .calendarnav-previous, .calendarbox .calendarnav-next {
+ display: block;
+ position: absolute;
+ top: 8px;
+ width: 15px;
+ height: 15px;
+ text-indent: -9999px;
+ padding: 0;
+}
+
+.calendarnav-previous {
+ left: 10px;
+ background: url(../img/calendar-icons.svg) 0 0 no-repeat;
+}
+
+.calendarbox .calendarnav-previous:focus,
+.calendarbox .calendarnav-previous:hover {
+ background-position: 0 -15px;
+}
+
+.calendarnav-next {
+ right: 10px;
+ background: url(../img/calendar-icons.svg) 0 -30px no-repeat;
+}
+
+.calendarbox .calendarnav-next:focus,
+.calendarbox .calendarnav-next:hover {
+ background-position: 0 -45px;
+}
+
+.calendar-cancel {
+ margin: 0;
+ padding: 4px 0;
+ font-size: 0.75rem;
+ background: #eee;
+ border-top: 1px solid var(--border-color);
+ color: var(--body-fg);
+}
+
+.calendar-cancel:focus, .calendar-cancel:hover {
+ background: #ddd;
+}
+
+.calendar-cancel a {
+ color: black;
+ display: block;
+}
+
+ul.timelist, .timelist li {
+ list-style-type: none;
+ margin: 0;
+ padding: 0;
+}
+
+.timelist a {
+ padding: 2px;
+}
+
+/* EDIT INLINE */
+
+.inline-deletelink {
+ float: right;
+ text-indent: -9999px;
+ background: url(../img/inline-delete.svg) 0 0 no-repeat;
+ width: 16px;
+ height: 16px;
+ border: 0px none;
+}
+
+.inline-deletelink:focus, .inline-deletelink:hover {
+ cursor: pointer;
+}
+
+/* RELATED WIDGET WRAPPER */
+.related-widget-wrapper {
+ float: left; /* display properly in form rows with multiple fields */
+ overflow: hidden; /* clear floated contents */
+}
+
+.related-widget-wrapper-link {
+ opacity: 0.3;
+}
+
+.related-widget-wrapper-link:link {
+ opacity: .8;
+}
+
+.related-widget-wrapper-link:link:focus,
+.related-widget-wrapper-link:link:hover {
+ opacity: 1;
+}
+
+select + .related-widget-wrapper-link,
+.related-widget-wrapper-link + .related-widget-wrapper-link {
+ margin-left: 7px;
+}
diff --git a/static/admin/fonts/LICENSE.txt b/static/admin/fonts/LICENSE.txt
new file mode 100644
index 0000000..75b5248
--- /dev/null
+++ b/static/admin/fonts/LICENSE.txt
@@ -0,0 +1,202 @@
+
+ Apache License
+ Version 2.0, January 2004
+ http://www.apache.org/licenses/
+
+ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
+
+ 1. Definitions.
+
+ "License" shall mean the terms and conditions for use, reproduction,
+ and distribution as defined by Sections 1 through 9 of this document.
+
+ "Licensor" shall mean the copyright owner or entity authorized by
+ the copyright owner that is granting the License.
+
+ "Legal Entity" shall mean the union of the acting entity and all
+ other entities that control, are controlled by, or are under common
+ control with that entity. For the purposes of this definition,
+ "control" means (i) the power, direct or indirect, to cause the
+ direction or management of such entity, whether by contract or
+ otherwise, or (ii) ownership of fifty percent (50%) or more of the
+ outstanding shares, or (iii) beneficial ownership of such entity.
+
+ "You" (or "Your") shall mean an individual or Legal Entity
+ exercising permissions granted by this License.
+
+ "Source" form shall mean the preferred form for making modifications,
+ including but not limited to software source code, documentation
+ source, and configuration files.
+
+ "Object" form shall mean any form resulting from mechanical
+ transformation or translation of a Source form, including but
+ not limited to compiled object code, generated documentation,
+ and conversions to other media types.
+
+ "Work" shall mean the work of authorship, whether in Source or
+ Object form, made available under the License, as indicated by a
+ copyright notice that is included in or attached to the work
+ (an example is provided in the Appendix below).
+
+ "Derivative Works" shall mean any work, whether in Source or Object
+ form, that is based on (or derived from) the Work and for which the
+ editorial revisions, annotations, elaborations, or other modifications
+ represent, as a whole, an original work of authorship. For the purposes
+ of this License, Derivative Works shall not include works that remain
+ separable from, or merely link (or bind by name) to the interfaces of,
+ the Work and Derivative Works thereof.
+
+ "Contribution" shall mean any work of authorship, including
+ the original version of the Work and any modifications or additions
+ to that Work or Derivative Works thereof, that is intentionally
+ submitted to Licensor for inclusion in the Work by the copyright owner
+ or by an individual or Legal Entity authorized to submit on behalf of
+ the copyright owner. For the purposes of this definition, "submitted"
+ means any form of electronic, verbal, or written communication sent
+ to the Licensor or its representatives, including but not limited to
+ communication on electronic mailing lists, source code control systems,
+ and issue tracking systems that are managed by, or on behalf of, the
+ Licensor for the purpose of discussing and improving the Work, but
+ excluding communication that is conspicuously marked or otherwise
+ designated in writing by the copyright owner as "Not a Contribution."
+
+ "Contributor" shall mean Licensor and any individual or Legal Entity
+ on behalf of whom a Contribution has been received by Licensor and
+ subsequently incorporated within the Work.
+
+ 2. Grant of Copyright License. Subject to the terms and conditions of
+ this License, each Contributor hereby grants to You a perpetual,
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
+ copyright license to reproduce, prepare Derivative Works of,
+ publicly display, publicly perform, sublicense, and distribute the
+ Work and such Derivative Works in Source or Object form.
+
+ 3. Grant of Patent License. Subject to the terms and conditions of
+ this License, each Contributor hereby grants to You a perpetual,
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
+ (except as stated in this section) patent license to make, have made,
+ use, offer to sell, sell, import, and otherwise transfer the Work,
+ where such license applies only to those patent claims licensable
+ by such Contributor that are necessarily infringed by their
+ Contribution(s) alone or by combination of their Contribution(s)
+ with the Work to which such Contribution(s) was submitted. If You
+ institute patent litigation against any entity (including a
+ cross-claim or counterclaim in a lawsuit) alleging that the Work
+ or a Contribution incorporated within the Work constitutes direct
+ or contributory patent infringement, then any patent licenses
+ granted to You under this License for that Work shall terminate
+ as of the date such litigation is filed.
+
+ 4. Redistribution. You may reproduce and distribute copies of the
+ Work or Derivative Works thereof in any medium, with or without
+ modifications, and in Source or Object form, provided that You
+ meet the following conditions:
+
+ (a) You must give any other recipients of the Work or
+ Derivative Works a copy of this License; and
+
+ (b) You must cause any modified files to carry prominent notices
+ stating that You changed the files; and
+
+ (c) You must retain, in the Source form of any Derivative Works
+ that You distribute, all copyright, patent, trademark, and
+ attribution notices from the Source form of the Work,
+ excluding those notices that do not pertain to any part of
+ the Derivative Works; and
+
+ (d) If the Work includes a "NOTICE" text file as part of its
+ distribution, then any Derivative Works that You distribute must
+ include a readable copy of the attribution notices contained
+ within such NOTICE file, excluding those notices that do not
+ pertain to any part of the Derivative Works, in at least one
+ of the following places: within a NOTICE text file distributed
+ as part of the Derivative Works; within the Source form or
+ documentation, if provided along with the Derivative Works; or,
+ within a display generated by the Derivative Works, if and
+ wherever such third-party notices normally appear. The contents
+ of the NOTICE file are for informational purposes only and
+ do not modify the License. You may add Your own attribution
+ notices within Derivative Works that You distribute, alongside
+ or as an addendum to the NOTICE text from the Work, provided
+ that such additional attribution notices cannot be construed
+ as modifying the License.
+
+ You may add Your own copyright statement to Your modifications and
+ may provide additional or different license terms and conditions
+ for use, reproduction, or distribution of Your modifications, or
+ for any such Derivative Works as a whole, provided Your use,
+ reproduction, and distribution of the Work otherwise complies with
+ the conditions stated in this License.
+
+ 5. Submission of Contributions. Unless You explicitly state otherwise,
+ any Contribution intentionally submitted for inclusion in the Work
+ by You to the Licensor shall be under the terms and conditions of
+ this License, without any additional terms or conditions.
+ Notwithstanding the above, nothing herein shall supersede or modify
+ the terms of any separate license agreement you may have executed
+ with Licensor regarding such Contributions.
+
+ 6. Trademarks. This License does not grant permission to use the trade
+ names, trademarks, service marks, or product names of the Licensor,
+ except as required for reasonable and customary use in describing the
+ origin of the Work and reproducing the content of the NOTICE file.
+
+ 7. Disclaimer of Warranty. Unless required by applicable law or
+ agreed to in writing, Licensor provides the Work (and each
+ Contributor provides its Contributions) on an "AS IS" BASIS,
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
+ implied, including, without limitation, any warranties or conditions
+ of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
+ PARTICULAR PURPOSE. You are solely responsible for determining the
+ appropriateness of using or redistributing the Work and assume any
+ risks associated with Your exercise of permissions under this License.
+
+ 8. Limitation of Liability. In no event and under no legal theory,
+ whether in tort (including negligence), contract, or otherwise,
+ unless required by applicable law (such as deliberate and grossly
+ negligent acts) or agreed to in writing, shall any Contributor be
+ liable to You for damages, including any direct, indirect, special,
+ incidental, or consequential damages of any character arising as a
+ result of this License or out of the use or inability to use the
+ Work (including but not limited to damages for loss of goodwill,
+ work stoppage, computer failure or malfunction, or any and all
+ other commercial damages or losses), even if such Contributor
+ has been advised of the possibility of such damages.
+
+ 9. Accepting Warranty or Additional Liability. While redistributing
+ the Work or Derivative Works thereof, You may choose to offer,
+ and charge a fee for, acceptance of support, warranty, indemnity,
+ or other liability obligations and/or rights consistent with this
+ License. However, in accepting such obligations, You may act only
+ on Your own behalf and on Your sole responsibility, not on behalf
+ of any other Contributor, and only if You agree to indemnify,
+ defend, and hold each Contributor harmless for any liability
+ incurred by, or claims asserted against, such Contributor by reason
+ of your accepting any such warranty or additional liability.
+
+ END OF TERMS AND CONDITIONS
+
+ APPENDIX: How to apply the Apache License to your work.
+
+ To apply the Apache License to your work, attach the following
+ boilerplate notice, with the fields enclosed by brackets "[]"
+ replaced with your own identifying information. (Don't include
+ the brackets!) The text should be enclosed in the appropriate
+ comment syntax for the file format. We also recommend that a
+ file or class name and description of purpose be included on the
+ same "printed page" as the copyright notice for easier
+ identification within third-party archives.
+
+ Copyright [yyyy] [name of copyright owner]
+
+ Licensed under the Apache License, Version 2.0 (the "License");
+ you may not use this file except in compliance with the License.
+ You may obtain a copy of the License at
+
+ http://www.apache.org/licenses/LICENSE-2.0
+
+ Unless required by applicable law or agreed to in writing, software
+ distributed under the License is distributed on an "AS IS" BASIS,
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ See the License for the specific language governing permissions and
+ limitations under the License.
diff --git a/static/admin/fonts/README.txt b/static/admin/fonts/README.txt
new file mode 100644
index 0000000..b247bef
--- /dev/null
+++ b/static/admin/fonts/README.txt
@@ -0,0 +1,3 @@
+Roboto webfont source: https://www.google.com/fonts/specimen/Roboto
+WOFF files extracted using https://github.com/majodev/google-webfonts-helper
+Weights used in this project: Light (300), Regular (400), Bold (700)
diff --git a/static/admin/fonts/Roboto-Bold-webfont.woff b/static/admin/fonts/Roboto-Bold-webfont.woff
new file mode 100644
index 0000000..6e0f562
Binary files /dev/null and b/static/admin/fonts/Roboto-Bold-webfont.woff differ
diff --git a/static/admin/fonts/Roboto-Light-webfont.woff b/static/admin/fonts/Roboto-Light-webfont.woff
new file mode 100644
index 0000000..b9e9918
Binary files /dev/null and b/static/admin/fonts/Roboto-Light-webfont.woff differ
diff --git a/static/admin/fonts/Roboto-Regular-webfont.woff b/static/admin/fonts/Roboto-Regular-webfont.woff
new file mode 100644
index 0000000..96c1986
Binary files /dev/null and b/static/admin/fonts/Roboto-Regular-webfont.woff differ
diff --git a/static/admin/img/LICENSE b/static/admin/img/LICENSE
new file mode 100644
index 0000000..a4faaa1
--- /dev/null
+++ b/static/admin/img/LICENSE
@@ -0,0 +1,20 @@
+The MIT License (MIT)
+
+Copyright (c) 2014 Code Charm Ltd
+
+Permission is hereby granted, free of charge, to any person obtaining a copy of
+this software and associated documentation files (the "Software"), to deal in
+the Software without restriction, including without limitation the rights to
+use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
+the Software, and to permit persons to whom the Software is furnished to do so,
+subject to the following conditions:
+
+The above copyright notice and this permission notice shall be included in all
+copies or substantial portions of the Software.
+
+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
+FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
+COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
+IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
+CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
diff --git a/static/admin/img/README.txt b/static/admin/img/README.txt
new file mode 100644
index 0000000..4eb2e49
--- /dev/null
+++ b/static/admin/img/README.txt
@@ -0,0 +1,7 @@
+All icons are taken from Font Awesome (http://fontawesome.io/) project.
+The Font Awesome font is licensed under the SIL OFL 1.1:
+- https://scripts.sil.org/OFL
+
+SVG icons source: https://github.com/encharm/Font-Awesome-SVG-PNG
+Font-Awesome-SVG-PNG is licensed under the MIT license (see file license
+in current folder).
diff --git a/static/admin/img/calendar-icons.svg b/static/admin/img/calendar-icons.svg
new file mode 100644
index 0000000..dbf21c3
--- /dev/null
+++ b/static/admin/img/calendar-icons.svg
@@ -0,0 +1,14 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/static/admin/img/gis/move_vertex_off.svg b/static/admin/img/gis/move_vertex_off.svg
new file mode 100644
index 0000000..228854f
--- /dev/null
+++ b/static/admin/img/gis/move_vertex_off.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/static/admin/img/gis/move_vertex_on.svg b/static/admin/img/gis/move_vertex_on.svg
new file mode 100644
index 0000000..96b87fd
--- /dev/null
+++ b/static/admin/img/gis/move_vertex_on.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/static/admin/img/icon-addlink.svg b/static/admin/img/icon-addlink.svg
new file mode 100644
index 0000000..e004fb1
--- /dev/null
+++ b/static/admin/img/icon-addlink.svg
@@ -0,0 +1,3 @@
+
+
+
diff --git a/static/admin/img/icon-alert.svg b/static/admin/img/icon-alert.svg
new file mode 100644
index 0000000..e51ea83
--- /dev/null
+++ b/static/admin/img/icon-alert.svg
@@ -0,0 +1,3 @@
+
+
+
diff --git a/static/admin/img/icon-calendar.svg b/static/admin/img/icon-calendar.svg
new file mode 100644
index 0000000..97910a9
--- /dev/null
+++ b/static/admin/img/icon-calendar.svg
@@ -0,0 +1,9 @@
+
+
+
+
+
+
+
+
+
diff --git a/static/admin/img/icon-changelink.svg b/static/admin/img/icon-changelink.svg
new file mode 100644
index 0000000..bbb137a
--- /dev/null
+++ b/static/admin/img/icon-changelink.svg
@@ -0,0 +1,3 @@
+
+
+
diff --git a/static/admin/img/icon-clock.svg b/static/admin/img/icon-clock.svg
new file mode 100644
index 0000000..bf9985d
--- /dev/null
+++ b/static/admin/img/icon-clock.svg
@@ -0,0 +1,9 @@
+
+
+
+
+
+
+
+
+
diff --git a/static/admin/img/icon-deletelink.svg b/static/admin/img/icon-deletelink.svg
new file mode 100644
index 0000000..4059b15
--- /dev/null
+++ b/static/admin/img/icon-deletelink.svg
@@ -0,0 +1,3 @@
+
+
+
diff --git a/static/admin/img/icon-hidelink.svg b/static/admin/img/icon-hidelink.svg
new file mode 100644
index 0000000..2a8b404
--- /dev/null
+++ b/static/admin/img/icon-hidelink.svg
@@ -0,0 +1,3 @@
+
+
+
diff --git a/static/admin/img/icon-no.svg b/static/admin/img/icon-no.svg
new file mode 100644
index 0000000..2e0d383
--- /dev/null
+++ b/static/admin/img/icon-no.svg
@@ -0,0 +1,3 @@
+
+
+
diff --git a/static/admin/img/icon-unknown-alt.svg b/static/admin/img/icon-unknown-alt.svg
new file mode 100644
index 0000000..1c6b99f
--- /dev/null
+++ b/static/admin/img/icon-unknown-alt.svg
@@ -0,0 +1,3 @@
+
+
+
diff --git a/static/admin/img/icon-unknown.svg b/static/admin/img/icon-unknown.svg
new file mode 100644
index 0000000..50b4f97
--- /dev/null
+++ b/static/admin/img/icon-unknown.svg
@@ -0,0 +1,3 @@
+
+
+
diff --git a/static/admin/img/icon-viewlink.svg b/static/admin/img/icon-viewlink.svg
new file mode 100644
index 0000000..a1ca1d3
--- /dev/null
+++ b/static/admin/img/icon-viewlink.svg
@@ -0,0 +1,3 @@
+
+
+
diff --git a/static/admin/img/icon-yes.svg b/static/admin/img/icon-yes.svg
new file mode 100644
index 0000000..5883d87
--- /dev/null
+++ b/static/admin/img/icon-yes.svg
@@ -0,0 +1,3 @@
+
+
+
diff --git a/static/admin/img/inline-delete.svg b/static/admin/img/inline-delete.svg
new file mode 100644
index 0000000..17d1ad6
--- /dev/null
+++ b/static/admin/img/inline-delete.svg
@@ -0,0 +1,3 @@
+
+
+
diff --git a/static/admin/img/search.svg b/static/admin/img/search.svg
new file mode 100644
index 0000000..c8c69b2
--- /dev/null
+++ b/static/admin/img/search.svg
@@ -0,0 +1,3 @@
+
+
+
diff --git a/static/admin/img/selector-icons.svg b/static/admin/img/selector-icons.svg
new file mode 100644
index 0000000..926b8e2
--- /dev/null
+++ b/static/admin/img/selector-icons.svg
@@ -0,0 +1,34 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/static/admin/img/sorting-icons.svg b/static/admin/img/sorting-icons.svg
new file mode 100644
index 0000000..7c31ec9
--- /dev/null
+++ b/static/admin/img/sorting-icons.svg
@@ -0,0 +1,19 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/static/admin/img/tooltag-add.svg b/static/admin/img/tooltag-add.svg
new file mode 100644
index 0000000..1ca64ae
--- /dev/null
+++ b/static/admin/img/tooltag-add.svg
@@ -0,0 +1,3 @@
+
+
+
diff --git a/static/admin/img/tooltag-arrowright.svg b/static/admin/img/tooltag-arrowright.svg
new file mode 100644
index 0000000..b664d61
--- /dev/null
+++ b/static/admin/img/tooltag-arrowright.svg
@@ -0,0 +1,3 @@
+
+
+
diff --git a/static/admin/js/SelectBox.js b/static/admin/js/SelectBox.js
new file mode 100644
index 0000000..ace6d9d
--- /dev/null
+++ b/static/admin/js/SelectBox.js
@@ -0,0 +1,112 @@
+'use strict';
+{
+ const SelectBox = {
+ cache: {},
+ init: function(id) {
+ const box = document.getElementById(id);
+ SelectBox.cache[id] = [];
+ const cache = SelectBox.cache[id];
+ for (const node of box.options) {
+ cache.push({value: node.value, text: node.text, displayed: 1});
+ }
+ },
+ redisplay: function(id) {
+ // Repopulate HTML select box from cache
+ const box = document.getElementById(id);
+ const scroll_value_from_top = box.scrollTop;
+ box.innerHTML = '';
+ for (const node of SelectBox.cache[id]) {
+ if (node.displayed) {
+ const new_option = new Option(node.text, node.value, false, false);
+ // Shows a tooltip when hovering over the option
+ new_option.title = node.text;
+ box.appendChild(new_option);
+ }
+ }
+ box.scrollTop = scroll_value_from_top;
+ },
+ filter: function(id, text) {
+ // Redisplay the HTML select box, displaying only the choices containing ALL
+ // the words in text. (It's an AND search.)
+ const tokens = text.toLowerCase().split(/\s+/);
+ for (const node of SelectBox.cache[id]) {
+ node.displayed = 1;
+ const node_text = node.text.toLowerCase();
+ for (const token of tokens) {
+ if (!node_text.includes(token)) {
+ node.displayed = 0;
+ break; // Once the first token isn't found we're done
+ }
+ }
+ }
+ SelectBox.redisplay(id);
+ },
+ delete_from_cache: function(id, value) {
+ let delete_index = null;
+ const cache = SelectBox.cache[id];
+ for (const [i, node] of cache.entries()) {
+ if (node.value === value) {
+ delete_index = i;
+ break;
+ }
+ }
+ cache.splice(delete_index, 1);
+ },
+ add_to_cache: function(id, option) {
+ SelectBox.cache[id].push({value: option.value, text: option.text, displayed: 1});
+ },
+ cache_contains: function(id, value) {
+ // Check if an item is contained in the cache
+ for (const node of SelectBox.cache[id]) {
+ if (node.value === value) {
+ return true;
+ }
+ }
+ return false;
+ },
+ move: function(from, to) {
+ const from_box = document.getElementById(from);
+ for (const option of from_box.options) {
+ const option_value = option.value;
+ if (option.selected && SelectBox.cache_contains(from, option_value)) {
+ SelectBox.add_to_cache(to, {value: option_value, text: option.text, displayed: 1});
+ SelectBox.delete_from_cache(from, option_value);
+ }
+ }
+ SelectBox.redisplay(from);
+ SelectBox.redisplay(to);
+ },
+ move_all: function(from, to) {
+ const from_box = document.getElementById(from);
+ for (const option of from_box.options) {
+ const option_value = option.value;
+ if (SelectBox.cache_contains(from, option_value)) {
+ SelectBox.add_to_cache(to, {value: option_value, text: option.text, displayed: 1});
+ SelectBox.delete_from_cache(from, option_value);
+ }
+ }
+ SelectBox.redisplay(from);
+ SelectBox.redisplay(to);
+ },
+ sort: function(id) {
+ SelectBox.cache[id].sort(function(a, b) {
+ a = a.text.toLowerCase();
+ b = b.text.toLowerCase();
+ if (a > b) {
+ return 1;
+ }
+ if (a < b) {
+ return -1;
+ }
+ return 0;
+ } );
+ },
+ select_all: function(id) {
+ const box = document.getElementById(id);
+ for (const option of box.options) {
+ option.selected = true;
+ }
+ }
+ };
+ window.SelectBox = SelectBox;
+}
diff --git a/static/admin/js/SelectFilter2.js b/static/admin/js/SelectFilter2.js
new file mode 100644
index 0000000..194c2db
--- /dev/null
+++ b/static/admin/js/SelectFilter2.js
@@ -0,0 +1,218 @@
+/*global SelectBox, gettext, interpolate, quickElement, SelectFilter*/
+/*
+SelectFilter2 - Turns a multiple-select box into a filter interface.
+
+Requires core.js and SelectBox.js.
+*/
+'use strict';
+{
+ window.SelectFilter = {
+ init: function(field_id, field_name, is_stacked) {
+ if (field_id.match(/__prefix__/)) {
+ // Don't initialize on empty forms.
+ return;
+ }
+ const from_box = document.getElementById(field_id);
+ from_box.id += '_from'; // change its ID
+ from_box.className = 'filtered';
+
+ for (const p of from_box.parentNode.getElementsByTagName('p')) {
+ if (p.classList.contains("info")) {
+ // Remove , because it just gets in the way.
+ from_box.parentNode.removeChild(p);
+ } else if (p.classList.contains("help")) {
+ // Move help text up to the top so it isn't below the select
+ // boxes or wrapped off on the side to the right of the add
+ // button:
+ from_box.parentNode.insertBefore(p, from_box.parentNode.firstChild);
+ }
+ }
+
+ //
or
+ const selector_div = quickElement('div', from_box.parentNode);
+ selector_div.className = is_stacked ? 'selector stacked' : 'selector';
+
+ //
+ const selector_available = quickElement('div', selector_div);
+ selector_available.className = 'selector-available';
+ const title_available = quickElement('h2', selector_available, interpolate(gettext('Available %s') + ' ', [field_name]));
+ quickElement(
+ 'span', title_available, '',
+ 'class', 'help help-tooltip help-icon',
+ 'title', interpolate(
+ gettext(
+ 'This is the list of available %s. You may choose some by ' +
+ 'selecting them in the box below and then clicking the ' +
+ '"Choose" arrow between the two boxes.'
+ ),
+ [field_name]
+ )
+ );
+
+ const filter_p = quickElement('p', selector_available, '', 'id', field_id + '_filter');
+ filter_p.className = 'selector-filter';
+
+ const search_filter_label = quickElement('label', filter_p, '', 'for', field_id + '_input');
+
+ quickElement(
+ 'span', search_filter_label, '',
+ 'class', 'help-tooltip search-label-icon',
+ 'title', interpolate(gettext("Type into this box to filter down the list of available %s."), [field_name])
+ );
+
+ filter_p.appendChild(document.createTextNode(' '));
+
+ const filter_input = quickElement('input', filter_p, '', 'type', 'text', 'placeholder', gettext("Filter"));
+ filter_input.id = field_id + '_input';
+
+ selector_available.appendChild(from_box);
+ const choose_all = quickElement('a', selector_available, gettext('Choose all'), 'title', interpolate(gettext('Click to choose all %s at once.'), [field_name]), 'href', '#', 'id', field_id + '_add_all_link');
+ choose_all.className = 'selector-chooseall';
+
+ //
+ const selector_chooser = quickElement('ul', selector_div);
+ selector_chooser.className = 'selector-chooser';
+ const add_link = quickElement('a', quickElement('li', selector_chooser), gettext('Choose'), 'title', gettext('Choose'), 'href', '#', 'id', field_id + '_add_link');
+ add_link.className = 'selector-add';
+ const remove_link = quickElement('a', quickElement('li', selector_chooser), gettext('Remove'), 'title', gettext('Remove'), 'href', '#', 'id', field_id + '_remove_link');
+ remove_link.className = 'selector-remove';
+
+ //
+ const selector_chosen = quickElement('div', selector_div);
+ selector_chosen.className = 'selector-chosen';
+ const title_chosen = quickElement('h2', selector_chosen, interpolate(gettext('Chosen %s') + ' ', [field_name]));
+ quickElement(
+ 'span', title_chosen, '',
+ 'class', 'help help-tooltip help-icon',
+ 'title', interpolate(
+ gettext(
+ 'This is the list of chosen %s. You may remove some by ' +
+ 'selecting them in the box below and then clicking the ' +
+ '"Remove" arrow between the two boxes.'
+ ),
+ [field_name]
+ )
+ );
+
+ const to_box = quickElement('select', selector_chosen, '', 'id', field_id + '_to', 'multiple', '', 'size', from_box.size, 'name', from_box.name);
+ to_box.className = 'filtered';
+ const clear_all = quickElement('a', selector_chosen, gettext('Remove all'), 'title', interpolate(gettext('Click to remove all chosen %s at once.'), [field_name]), 'href', '#', 'id', field_id + '_remove_all_link');
+ clear_all.className = 'selector-clearall';
+
+ from_box.name = from_box.name + '_old';
+
+ // Set up the JavaScript event handlers for the select box filter interface
+ const move_selection = function(e, elem, move_func, from, to) {
+ if (elem.classList.contains('active')) {
+ move_func(from, to);
+ SelectFilter.refresh_icons(field_id);
+ }
+ e.preventDefault();
+ };
+ choose_all.addEventListener('click', function(e) {
+ move_selection(e, this, SelectBox.move_all, field_id + '_from', field_id + '_to');
+ });
+ add_link.addEventListener('click', function(e) {
+ move_selection(e, this, SelectBox.move, field_id + '_from', field_id + '_to');
+ });
+ remove_link.addEventListener('click', function(e) {
+ move_selection(e, this, SelectBox.move, field_id + '_to', field_id + '_from');
+ });
+ clear_all.addEventListener('click', function(e) {
+ move_selection(e, this, SelectBox.move_all, field_id + '_to', field_id + '_from');
+ });
+ filter_input.addEventListener('keypress', function(e) {
+ SelectFilter.filter_key_press(e, field_id);
+ });
+ filter_input.addEventListener('keyup', function(e) {
+ SelectFilter.filter_key_up(e, field_id);
+ });
+ filter_input.addEventListener('keydown', function(e) {
+ SelectFilter.filter_key_down(e, field_id);
+ });
+ selector_div.addEventListener('change', function(e) {
+ if (e.target.tagName === 'SELECT') {
+ SelectFilter.refresh_icons(field_id);
+ }
+ });
+ selector_div.addEventListener('dblclick', function(e) {
+ if (e.target.tagName === 'OPTION') {
+ if (e.target.closest('select').id === field_id + '_to') {
+ SelectBox.move(field_id + '_to', field_id + '_from');
+ } else {
+ SelectBox.move(field_id + '_from', field_id + '_to');
+ }
+ SelectFilter.refresh_icons(field_id);
+ }
+ });
+ from_box.closest('form').addEventListener('submit', function() {
+ SelectBox.select_all(field_id + '_to');
+ });
+ SelectBox.init(field_id + '_from');
+ SelectBox.init(field_id + '_to');
+ // Move selected from_box options to to_box
+ SelectBox.move(field_id + '_from', field_id + '_to');
+
+ // Initial icon refresh
+ SelectFilter.refresh_icons(field_id);
+ },
+ any_selected: function(field) {
+ // Temporarily add the required attribute and check validity.
+ field.required = true;
+ const any_selected = field.checkValidity();
+ field.required = false;
+ return any_selected;
+ },
+ refresh_icons: function(field_id) {
+ const from = document.getElementById(field_id + '_from');
+ const to = document.getElementById(field_id + '_to');
+ // Active if at least one item is selected
+ document.getElementById(field_id + '_add_link').classList.toggle('active', SelectFilter.any_selected(from));
+ document.getElementById(field_id + '_remove_link').classList.toggle('active', SelectFilter.any_selected(to));
+ // Active if the corresponding box isn't empty
+ document.getElementById(field_id + '_add_all_link').classList.toggle('active', from.querySelector('option'));
+ document.getElementById(field_id + '_remove_all_link').classList.toggle('active', to.querySelector('option'));
+ },
+ filter_key_press: function(event, field_id) {
+ const from = document.getElementById(field_id + '_from');
+ // don't submit form if user pressed Enter
+ if ((event.which && event.which === 13) || (event.keyCode && event.keyCode === 13)) {
+ from.selectedIndex = 0;
+ SelectBox.move(field_id + '_from', field_id + '_to');
+ from.selectedIndex = 0;
+ event.preventDefault();
+ }
+ },
+ filter_key_up: function(event, field_id) {
+ const from = document.getElementById(field_id + '_from');
+ const temp = from.selectedIndex;
+ SelectBox.filter(field_id + '_from', document.getElementById(field_id + '_input').value);
+ from.selectedIndex = temp;
+ },
+ filter_key_down: function(event, field_id) {
+ const from = document.getElementById(field_id + '_from');
+ // right arrow -- move across
+ if ((event.which && event.which === 39) || (event.keyCode && event.keyCode === 39)) {
+ const old_index = from.selectedIndex;
+ SelectBox.move(field_id + '_from', field_id + '_to');
+ from.selectedIndex = (old_index === from.length) ? from.length - 1 : old_index;
+ return;
+ }
+ // down arrow -- wrap around
+ if ((event.which && event.which === 40) || (event.keyCode && event.keyCode === 40)) {
+ from.selectedIndex = (from.length === from.selectedIndex + 1) ? 0 : from.selectedIndex + 1;
+ }
+ // up arrow -- wrap around
+ if ((event.which && event.which === 38) || (event.keyCode && event.keyCode === 38)) {
+ from.selectedIndex = (from.selectedIndex === 0) ? from.length - 1 : from.selectedIndex - 1;
+ }
+ }
+ };
+
+ window.addEventListener('load', function(e) {
+ document.querySelectorAll('select.selectfilter, select.selectfilterstacked').forEach(function(el) {
+ const data = el.dataset;
+ SelectFilter.init(el.id, data.fieldName, parseInt(data.isStacked, 10));
+ });
+ });
+}
diff --git a/static/admin/js/actions.js b/static/admin/js/actions.js
new file mode 100644
index 0000000..20a5c14
--- /dev/null
+++ b/static/admin/js/actions.js
@@ -0,0 +1,201 @@
+/*global gettext, interpolate, ngettext*/
+'use strict';
+{
+ function show(selector) {
+ document.querySelectorAll(selector).forEach(function(el) {
+ el.classList.remove('hidden');
+ });
+ }
+
+ function hide(selector) {
+ document.querySelectorAll(selector).forEach(function(el) {
+ el.classList.add('hidden');
+ });
+ }
+
+ function showQuestion(options) {
+ hide(options.acrossClears);
+ show(options.acrossQuestions);
+ hide(options.allContainer);
+ }
+
+ function showClear(options) {
+ show(options.acrossClears);
+ hide(options.acrossQuestions);
+ document.querySelector(options.actionContainer).classList.remove(options.selectedClass);
+ show(options.allContainer);
+ hide(options.counterContainer);
+ }
+
+ function reset(options) {
+ hide(options.acrossClears);
+ hide(options.acrossQuestions);
+ hide(options.allContainer);
+ show(options.counterContainer);
+ }
+
+ function clearAcross(options) {
+ reset(options);
+ const acrossInputs = document.querySelectorAll(options.acrossInput);
+ acrossInputs.forEach(function(acrossInput) {
+ acrossInput.value = 0;
+ });
+ document.querySelector(options.actionContainer).classList.remove(options.selectedClass);
+ }
+
+ function checker(actionCheckboxes, options, checked) {
+ if (checked) {
+ showQuestion(options);
+ } else {
+ reset(options);
+ }
+ actionCheckboxes.forEach(function(el) {
+ el.checked = checked;
+ el.closest('tr').classList.toggle(options.selectedClass, checked);
+ });
+ }
+
+ function updateCounter(actionCheckboxes, options) {
+ const sel = Array.from(actionCheckboxes).filter(function(el) {
+ return el.checked;
+ }).length;
+ const counter = document.querySelector(options.counterContainer);
+ // data-actions-icnt is defined in the generated HTML
+ // and contains the total amount of objects in the queryset
+ const actions_icnt = Number(counter.dataset.actionsIcnt);
+ counter.textContent = interpolate(
+ ngettext('%(sel)s of %(cnt)s selected', '%(sel)s of %(cnt)s selected', sel), {
+ sel: sel,
+ cnt: actions_icnt
+ }, true);
+ const allToggle = document.getElementById(options.allToggleId);
+ allToggle.checked = sel === actionCheckboxes.length;
+ if (allToggle.checked) {
+ showQuestion(options);
+ } else {
+ clearAcross(options);
+ }
+ }
+
+ const defaults = {
+ actionContainer: "div.actions",
+ counterContainer: "span.action-counter",
+ allContainer: "div.actions span.all",
+ acrossInput: "div.actions input.select-across",
+ acrossQuestions: "div.actions span.question",
+ acrossClears: "div.actions span.clear",
+ allToggleId: "action-toggle",
+ selectedClass: "selected"
+ };
+
+ window.Actions = function(actionCheckboxes, options) {
+ options = Object.assign({}, defaults, options);
+ let list_editable_changed = false;
+ let lastChecked = null;
+ let shiftPressed = false;
+
+ document.addEventListener('keydown', (event) => {
+ shiftPressed = event.shiftKey;
+ });
+
+ document.addEventListener('keyup', (event) => {
+ shiftPressed = event.shiftKey;
+ });
+
+ document.getElementById(options.allToggleId).addEventListener('click', function(event) {
+ checker(actionCheckboxes, options, this.checked);
+ updateCounter(actionCheckboxes, options);
+ });
+
+ document.querySelectorAll(options.acrossQuestions + " a").forEach(function(el) {
+ el.addEventListener('click', function(event) {
+ event.preventDefault();
+ const acrossInputs = document.querySelectorAll(options.acrossInput);
+ acrossInputs.forEach(function(acrossInput) {
+ acrossInput.value = 1;
+ });
+ showClear(options);
+ });
+ });
+
+ document.querySelectorAll(options.acrossClears + " a").forEach(function(el) {
+ el.addEventListener('click', function(event) {
+ event.preventDefault();
+ document.getElementById(options.allToggleId).checked = false;
+ clearAcross(options);
+ checker(actionCheckboxes, options, false);
+ updateCounter(actionCheckboxes, options);
+ });
+ });
+
+ function affectedCheckboxes(target, withModifier) {
+ const multiSelect = (lastChecked && withModifier && lastChecked !== target);
+ if (!multiSelect) {
+ return [target];
+ }
+ const checkboxes = Array.from(actionCheckboxes);
+ const targetIndex = checkboxes.findIndex(el => el === target);
+ const lastCheckedIndex = checkboxes.findIndex(el => el === lastChecked);
+ const startIndex = Math.min(targetIndex, lastCheckedIndex);
+ const endIndex = Math.max(targetIndex, lastCheckedIndex);
+ const filtered = checkboxes.filter((el, index) => (startIndex <= index) && (index <= endIndex));
+ return filtered;
+ };
+
+ Array.from(document.getElementById('result_list').tBodies).forEach(function(el) {
+ el.addEventListener('change', function(event) {
+ const target = event.target;
+ if (target.classList.contains('action-select')) {
+ const checkboxes = affectedCheckboxes(target, shiftPressed);
+ checker(checkboxes, options, target.checked);
+ updateCounter(actionCheckboxes, options);
+ lastChecked = target;
+ } else {
+ list_editable_changed = true;
+ }
+ });
+ });
+
+ document.querySelector('#changelist-form button[name=index]').addEventListener('click', function(event) {
+ if (list_editable_changed) {
+ const confirmed = confirm(gettext("You have unsaved changes on individual editable fields. If you run an action, your unsaved changes will be lost."));
+ if (!confirmed) {
+ event.preventDefault();
+ }
+ }
+ });
+
+ const el = document.querySelector('#changelist-form input[name=_save]');
+ // The button does not exist if no fields are editable.
+ if (el) {
+ el.addEventListener('click', function(event) {
+ if (document.querySelector('[name=action]').value) {
+ const text = list_editable_changed
+ ? gettext("You have selected an action, but you haven’t saved your changes to individual fields yet. Please click OK to save. You’ll need to re-run the action.")
+ : gettext("You have selected an action, and you haven’t made any changes on individual fields. You’re probably looking for the Go button rather than the Save button.");
+ if (!confirm(text)) {
+ event.preventDefault();
+ }
+ }
+ });
+ }
+ };
+
+ // Call function fn when the DOM is loaded and ready. If it is already
+ // loaded, call the function now.
+ // http://youmightnotneedjquery.com/#ready
+ function ready(fn) {
+ if (document.readyState !== 'loading') {
+ fn();
+ } else {
+ document.addEventListener('DOMContentLoaded', fn);
+ }
+ }
+
+ ready(function() {
+ const actionsEls = document.querySelectorAll('tr input.action-select');
+ if (actionsEls.length > 0) {
+ Actions(actionsEls);
+ }
+ });
+}
diff --git a/static/admin/js/admin/DateTimeShortcuts.js b/static/admin/js/admin/DateTimeShortcuts.js
new file mode 100644
index 0000000..176b0e3
--- /dev/null
+++ b/static/admin/js/admin/DateTimeShortcuts.js
@@ -0,0 +1,409 @@
+/*global Calendar, findPosX, findPosY, get_format, gettext, gettext_noop, interpolate, ngettext, quickElement*/
+// Inserts shortcut buttons after all of the following:
+//
+//
+'use strict';
+{
+ const DateTimeShortcuts = {
+ calendars: [],
+ calendarInputs: [],
+ clockInputs: [],
+ clockHours: {
+ default_: [
+ [gettext_noop('Now'), -1],
+ [gettext_noop('Midnight'), 0],
+ [gettext_noop('6 a.m.'), 6],
+ [gettext_noop('Noon'), 12],
+ [gettext_noop('6 p.m.'), 18]
+ ]
+ },
+ dismissClockFunc: [],
+ dismissCalendarFunc: [],
+ calendarDivName1: 'calendarbox', // name of calendar
that gets toggled
+ calendarDivName2: 'calendarin', // name of
that contains calendar
+ calendarLinkName: 'calendarlink', // name of the link that is used to toggle
+ clockDivName: 'clockbox', // name of clock
that gets toggled
+ clockLinkName: 'clocklink', // name of the link that is used to toggle
+ shortCutsClass: 'datetimeshortcuts', // class of the clock and cal shortcuts
+ timezoneWarningClass: 'timezonewarning', // class of the warning for timezone mismatch
+ timezoneOffset: 0,
+ init: function() {
+ const serverOffset = document.body.dataset.adminUtcOffset;
+ if (serverOffset) {
+ const localOffset = new Date().getTimezoneOffset() * -60;
+ DateTimeShortcuts.timezoneOffset = localOffset - serverOffset;
+ }
+
+ for (const inp of document.getElementsByTagName('input')) {
+ if (inp.type === 'text' && inp.classList.contains('vTimeField')) {
+ DateTimeShortcuts.addClock(inp);
+ DateTimeShortcuts.addTimezoneWarning(inp);
+ }
+ else if (inp.type === 'text' && inp.classList.contains('vDateField')) {
+ DateTimeShortcuts.addCalendar(inp);
+ DateTimeShortcuts.addTimezoneWarning(inp);
+ }
+ }
+ },
+ // Return the current time while accounting for the server timezone.
+ now: function() {
+ const serverOffset = document.body.dataset.adminUtcOffset;
+ if (serverOffset) {
+ const localNow = new Date();
+ const localOffset = localNow.getTimezoneOffset() * -60;
+ localNow.setTime(localNow.getTime() + 1000 * (serverOffset - localOffset));
+ return localNow;
+ } else {
+ return new Date();
+ }
+ },
+ // Add a warning when the time zone in the browser and backend do not match.
+ addTimezoneWarning: function(inp) {
+ const warningClass = DateTimeShortcuts.timezoneWarningClass;
+ let timezoneOffset = DateTimeShortcuts.timezoneOffset / 3600;
+
+ // Only warn if there is a time zone mismatch.
+ if (!timezoneOffset) {
+ return;
+ }
+
+ // Check if warning is already there.
+ if (inp.parentNode.querySelectorAll('.' + warningClass).length) {
+ return;
+ }
+
+ let message;
+ if (timezoneOffset > 0) {
+ message = ngettext(
+ 'Note: You are %s hour ahead of server time.',
+ 'Note: You are %s hours ahead of server time.',
+ timezoneOffset
+ );
+ }
+ else {
+ timezoneOffset *= -1;
+ message = ngettext(
+ 'Note: You are %s hour behind server time.',
+ 'Note: You are %s hours behind server time.',
+ timezoneOffset
+ );
+ }
+ message = interpolate(message, [timezoneOffset]);
+
+ const warning = document.createElement('span');
+ warning.className = warningClass;
+ warning.textContent = message;
+ inp.parentNode.appendChild(document.createElement('br'));
+ inp.parentNode.appendChild(warning);
+ },
+ // Add clock widget to a given field
+ addClock: function(inp) {
+ const num = DateTimeShortcuts.clockInputs.length;
+ DateTimeShortcuts.clockInputs[num] = inp;
+ DateTimeShortcuts.dismissClockFunc[num] = function() { DateTimeShortcuts.dismissClock(num); return true; };
+
+ // Shortcut links (clock icon and "Now" link)
+ const shortcuts_span = document.createElement('span');
+ shortcuts_span.className = DateTimeShortcuts.shortCutsClass;
+ inp.parentNode.insertBefore(shortcuts_span, inp.nextSibling);
+ const now_link = document.createElement('a');
+ now_link.href = "#";
+ now_link.textContent = gettext('Now');
+ now_link.addEventListener('click', function(e) {
+ e.preventDefault();
+ DateTimeShortcuts.handleClockQuicklink(num, -1);
+ });
+ const clock_link = document.createElement('a');
+ clock_link.href = '#';
+ clock_link.id = DateTimeShortcuts.clockLinkName + num;
+ clock_link.addEventListener('click', function(e) {
+ e.preventDefault();
+ // avoid triggering the document click handler to dismiss the clock
+ e.stopPropagation();
+ DateTimeShortcuts.openClock(num);
+ });
+
+ quickElement(
+ 'span', clock_link, '',
+ 'class', 'clock-icon',
+ 'title', gettext('Choose a Time')
+ );
+ shortcuts_span.appendChild(document.createTextNode('\u00A0'));
+ shortcuts_span.appendChild(now_link);
+ shortcuts_span.appendChild(document.createTextNode('\u00A0|\u00A0'));
+ shortcuts_span.appendChild(clock_link);
+
+ // Create clock link div
+ //
+ // Markup looks like:
+ //
+ //
Choose a time
+ //
+ //
Cancel
+ //
+
+ const clock_box = document.createElement('div');
+ clock_box.style.display = 'none';
+ clock_box.style.position = 'absolute';
+ clock_box.className = 'clockbox module';
+ clock_box.id = DateTimeShortcuts.clockDivName + num;
+ document.body.appendChild(clock_box);
+ clock_box.addEventListener('click', function(e) { e.stopPropagation(); });
+
+ quickElement('h2', clock_box, gettext('Choose a time'));
+ const time_list = quickElement('ul', clock_box);
+ time_list.className = 'timelist';
+ // The list of choices can be overridden in JavaScript like this:
+ // DateTimeShortcuts.clockHours.name = [['3 a.m.', 3]];
+ // where name is the name attribute of the
.
+ const name = typeof DateTimeShortcuts.clockHours[inp.name] === 'undefined' ? 'default_' : inp.name;
+ DateTimeShortcuts.clockHours[name].forEach(function(element) {
+ const time_link = quickElement('a', quickElement('li', time_list), gettext(element[0]), 'href', '#');
+ time_link.addEventListener('click', function(e) {
+ e.preventDefault();
+ DateTimeShortcuts.handleClockQuicklink(num, element[1]);
+ });
+ });
+
+ const cancel_p = quickElement('p', clock_box);
+ cancel_p.className = 'calendar-cancel';
+ const cancel_link = quickElement('a', cancel_p, gettext('Cancel'), 'href', '#');
+ cancel_link.addEventListener('click', function(e) {
+ e.preventDefault();
+ DateTimeShortcuts.dismissClock(num);
+ });
+
+ document.addEventListener('keyup', function(event) {
+ if (event.which === 27) {
+ // ESC key closes popup
+ DateTimeShortcuts.dismissClock(num);
+ event.preventDefault();
+ }
+ });
+ },
+ openClock: function(num) {
+ const clock_box = document.getElementById(DateTimeShortcuts.clockDivName + num);
+ const clock_link = document.getElementById(DateTimeShortcuts.clockLinkName + num);
+
+ // Recalculate the clockbox position
+ // is it left-to-right or right-to-left layout ?
+ if (window.getComputedStyle(document.body).direction !== 'rtl') {
+ clock_box.style.left = findPosX(clock_link) + 17 + 'px';
+ }
+ else {
+ // since style's width is in em, it'd be tough to calculate
+ // px value of it. let's use an estimated px for now
+ clock_box.style.left = findPosX(clock_link) - 110 + 'px';
+ }
+ clock_box.style.top = Math.max(0, findPosY(clock_link) - 30) + 'px';
+
+ // Show the clock box
+ clock_box.style.display = 'block';
+ document.addEventListener('click', DateTimeShortcuts.dismissClockFunc[num]);
+ },
+ dismissClock: function(num) {
+ document.getElementById(DateTimeShortcuts.clockDivName + num).style.display = 'none';
+ document.removeEventListener('click', DateTimeShortcuts.dismissClockFunc[num]);
+ },
+ handleClockQuicklink: function(num, val) {
+ let d;
+ if (val === -1) {
+ d = DateTimeShortcuts.now();
+ }
+ else {
+ d = new Date(1970, 1, 1, val, 0, 0, 0);
+ }
+ DateTimeShortcuts.clockInputs[num].value = d.strftime(get_format('TIME_INPUT_FORMATS')[0]);
+ DateTimeShortcuts.clockInputs[num].focus();
+ DateTimeShortcuts.dismissClock(num);
+ },
+ // Add calendar widget to a given field.
+ addCalendar: function(inp) {
+ const num = DateTimeShortcuts.calendars.length;
+
+ DateTimeShortcuts.calendarInputs[num] = inp;
+ DateTimeShortcuts.dismissCalendarFunc[num] = function() { DateTimeShortcuts.dismissCalendar(num); return true; };
+
+ // Shortcut links (calendar icon and "Today" link)
+ const shortcuts_span = document.createElement('span');
+ shortcuts_span.className = DateTimeShortcuts.shortCutsClass;
+ inp.parentNode.insertBefore(shortcuts_span, inp.nextSibling);
+ const today_link = document.createElement('a');
+ today_link.href = '#';
+ today_link.appendChild(document.createTextNode(gettext('Today')));
+ today_link.addEventListener('click', function(e) {
+ e.preventDefault();
+ DateTimeShortcuts.handleCalendarQuickLink(num, 0);
+ });
+ const cal_link = document.createElement('a');
+ cal_link.href = '#';
+ cal_link.id = DateTimeShortcuts.calendarLinkName + num;
+ cal_link.addEventListener('click', function(e) {
+ e.preventDefault();
+ // avoid triggering the document click handler to dismiss the calendar
+ e.stopPropagation();
+ DateTimeShortcuts.openCalendar(num);
+ });
+ quickElement(
+ 'span', cal_link, '',
+ 'class', 'date-icon',
+ 'title', gettext('Choose a Date')
+ );
+ shortcuts_span.appendChild(document.createTextNode('\u00A0'));
+ shortcuts_span.appendChild(today_link);
+ shortcuts_span.appendChild(document.createTextNode('\u00A0|\u00A0'));
+ shortcuts_span.appendChild(cal_link);
+
+ // Create calendarbox div.
+ //
+ // Markup looks like:
+ //
+ //
+ //
+ // ‹
+ // › February 2003
+ //
+ //
+ //
+ //
+ //
+ //
Cancel
+ //
+ const cal_box = document.createElement('div');
+ cal_box.style.display = 'none';
+ cal_box.style.position = 'absolute';
+ cal_box.className = 'calendarbox module';
+ cal_box.id = DateTimeShortcuts.calendarDivName1 + num;
+ document.body.appendChild(cal_box);
+ cal_box.addEventListener('click', function(e) { e.stopPropagation(); });
+
+ // next-prev links
+ const cal_nav = quickElement('div', cal_box);
+ const cal_nav_prev = quickElement('a', cal_nav, '<', 'href', '#');
+ cal_nav_prev.className = 'calendarnav-previous';
+ cal_nav_prev.addEventListener('click', function(e) {
+ e.preventDefault();
+ DateTimeShortcuts.drawPrev(num);
+ });
+
+ const cal_nav_next = quickElement('a', cal_nav, '>', 'href', '#');
+ cal_nav_next.className = 'calendarnav-next';
+ cal_nav_next.addEventListener('click', function(e) {
+ e.preventDefault();
+ DateTimeShortcuts.drawNext(num);
+ });
+
+ // main box
+ const cal_main = quickElement('div', cal_box, '', 'id', DateTimeShortcuts.calendarDivName2 + num);
+ cal_main.className = 'calendar';
+ DateTimeShortcuts.calendars[num] = new Calendar(DateTimeShortcuts.calendarDivName2 + num, DateTimeShortcuts.handleCalendarCallback(num));
+ DateTimeShortcuts.calendars[num].drawCurrent();
+
+ // calendar shortcuts
+ const shortcuts = quickElement('div', cal_box);
+ shortcuts.className = 'calendar-shortcuts';
+ let day_link = quickElement('a', shortcuts, gettext('Yesterday'), 'href', '#');
+ day_link.addEventListener('click', function(e) {
+ e.preventDefault();
+ DateTimeShortcuts.handleCalendarQuickLink(num, -1);
+ });
+ shortcuts.appendChild(document.createTextNode('\u00A0|\u00A0'));
+ day_link = quickElement('a', shortcuts, gettext('Today'), 'href', '#');
+ day_link.addEventListener('click', function(e) {
+ e.preventDefault();
+ DateTimeShortcuts.handleCalendarQuickLink(num, 0);
+ });
+ shortcuts.appendChild(document.createTextNode('\u00A0|\u00A0'));
+ day_link = quickElement('a', shortcuts, gettext('Tomorrow'), 'href', '#');
+ day_link.addEventListener('click', function(e) {
+ e.preventDefault();
+ DateTimeShortcuts.handleCalendarQuickLink(num, +1);
+ });
+
+ // cancel bar
+ const cancel_p = quickElement('p', cal_box);
+ cancel_p.className = 'calendar-cancel';
+ const cancel_link = quickElement('a', cancel_p, gettext('Cancel'), 'href', '#');
+ cancel_link.addEventListener('click', function(e) {
+ e.preventDefault();
+ DateTimeShortcuts.dismissCalendar(num);
+ });
+ document.addEventListener('keyup', function(event) {
+ if (event.which === 27) {
+ // ESC key closes popup
+ DateTimeShortcuts.dismissCalendar(num);
+ event.preventDefault();
+ }
+ });
+ },
+ openCalendar: function(num) {
+ const cal_box = document.getElementById(DateTimeShortcuts.calendarDivName1 + num);
+ const cal_link = document.getElementById(DateTimeShortcuts.calendarLinkName + num);
+ const inp = DateTimeShortcuts.calendarInputs[num];
+
+ // Determine if the current value in the input has a valid date.
+ // If so, draw the calendar with that date's year and month.
+ if (inp.value) {
+ const format = get_format('DATE_INPUT_FORMATS')[0];
+ const selected = inp.value.strptime(format);
+ const year = selected.getUTCFullYear();
+ const month = selected.getUTCMonth() + 1;
+ const re = /\d{4}/;
+ if (re.test(year.toString()) && month >= 1 && month <= 12) {
+ DateTimeShortcuts.calendars[num].drawDate(month, year, selected);
+ }
+ }
+
+ // Recalculate the clockbox position
+ // is it left-to-right or right-to-left layout ?
+ if (window.getComputedStyle(document.body).direction !== 'rtl') {
+ cal_box.style.left = findPosX(cal_link) + 17 + 'px';
+ }
+ else {
+ // since style's width is in em, it'd be tough to calculate
+ // px value of it. let's use an estimated px for now
+ cal_box.style.left = findPosX(cal_link) - 180 + 'px';
+ }
+ cal_box.style.top = Math.max(0, findPosY(cal_link) - 75) + 'px';
+
+ cal_box.style.display = 'block';
+ document.addEventListener('click', DateTimeShortcuts.dismissCalendarFunc[num]);
+ },
+ dismissCalendar: function(num) {
+ document.getElementById(DateTimeShortcuts.calendarDivName1 + num).style.display = 'none';
+ document.removeEventListener('click', DateTimeShortcuts.dismissCalendarFunc[num]);
+ },
+ drawPrev: function(num) {
+ DateTimeShortcuts.calendars[num].drawPreviousMonth();
+ },
+ drawNext: function(num) {
+ DateTimeShortcuts.calendars[num].drawNextMonth();
+ },
+ handleCalendarCallback: function(num) {
+ const format = get_format('DATE_INPUT_FORMATS')[0];
+ return function(y, m, d) {
+ DateTimeShortcuts.calendarInputs[num].value = new Date(y, m - 1, d).strftime(format);
+ DateTimeShortcuts.calendarInputs[num].focus();
+ document.getElementById(DateTimeShortcuts.calendarDivName1 + num).style.display = 'none';
+ };
+ },
+ handleCalendarQuickLink: function(num, offset) {
+ const d = DateTimeShortcuts.now();
+ d.setDate(d.getDate() + offset);
+ DateTimeShortcuts.calendarInputs[num].value = d.strftime(get_format('DATE_INPUT_FORMATS')[0]);
+ DateTimeShortcuts.calendarInputs[num].focus();
+ DateTimeShortcuts.dismissCalendar(num);
+ }
+ };
+
+ window.addEventListener('load', DateTimeShortcuts.init);
+ window.DateTimeShortcuts = DateTimeShortcuts;
+}
diff --git a/static/admin/js/admin/RelatedObjectLookups.js b/static/admin/js/admin/RelatedObjectLookups.js
new file mode 100644
index 0000000..752dcad
--- /dev/null
+++ b/static/admin/js/admin/RelatedObjectLookups.js
@@ -0,0 +1,240 @@
+/*global SelectBox, interpolate*/
+// Handles related-objects functionality: lookup link for raw_id_fields
+// and Add Another links.
+'use strict';
+{
+ const $ = django.jQuery;
+ let popupIndex = 0;
+ const relatedWindows = [];
+
+ function dismissChildPopups() {
+ relatedWindows.forEach(function(win) {
+ if(!win.closed) {
+ win.dismissChildPopups();
+ win.close();
+ }
+ });
+ }
+
+ function setPopupIndex() {
+ if(document.getElementsByName("_popup").length > 0) {
+ const index = window.name.lastIndexOf("__") + 2;
+ popupIndex = parseInt(window.name.substring(index));
+ } else {
+ popupIndex = 0;
+ }
+ }
+
+ function addPopupIndex(name) {
+ name = name + "__" + (popupIndex + 1);
+ return name;
+ }
+
+ function removePopupIndex(name) {
+ name = name.replace(new RegExp("__" + (popupIndex + 1) + "$"), '');
+ return name;
+ }
+
+ function showAdminPopup(triggeringLink, name_regexp, add_popup) {
+ const name = addPopupIndex(triggeringLink.id.replace(name_regexp, ''));
+ const href = new URL(triggeringLink.href);
+ if (add_popup) {
+ href.searchParams.set('_popup', 1);
+ }
+ const win = window.open(href, name, 'height=500,width=800,resizable=yes,scrollbars=yes');
+ relatedWindows.push(win);
+ win.focus();
+ return false;
+ }
+
+ function showRelatedObjectLookupPopup(triggeringLink) {
+ return showAdminPopup(triggeringLink, /^lookup_/, true);
+ }
+
+ function dismissRelatedLookupPopup(win, chosenId) {
+ const name = removePopupIndex(win.name);
+ const elem = document.getElementById(name);
+ if (elem.classList.contains('vManyToManyRawIdAdminField') && elem.value) {
+ elem.value += ',' + chosenId;
+ } else {
+ document.getElementById(name).value = chosenId;
+ }
+ const index = relatedWindows.indexOf(win);
+ if (index > -1) {
+ relatedWindows.splice(index, 1);
+ }
+ win.close();
+ }
+
+ function showRelatedObjectPopup(triggeringLink) {
+ return showAdminPopup(triggeringLink, /^(change|add|delete)_/, false);
+ }
+
+ function updateRelatedObjectLinks(triggeringLink) {
+ const $this = $(triggeringLink);
+ const siblings = $this.nextAll('.view-related, .change-related, .delete-related');
+ if (!siblings.length) {
+ return;
+ }
+ const value = $this.val();
+ if (value) {
+ siblings.each(function() {
+ const elm = $(this);
+ elm.attr('href', elm.attr('data-href-template').replace('__fk__', value));
+ });
+ } else {
+ siblings.removeAttr('href');
+ }
+ }
+
+ function updateRelatedSelectsOptions(currentSelect, win, objId, newRepr, newId) {
+ // After create/edit a model from the options next to the current
+ // select (+ or :pencil:) update ForeignKey PK of the rest of selects
+ // in the page.
+
+ const path = win.location.pathname;
+ // Extract the model from the popup url '.../
/add/' or
+ // '...///change/' depending the action (add or change).
+ const modelName = path.split('/')[path.split('/').length - (objId ? 4 : 3)];
+ // Exclude autocomplete selects.
+ const selectsRelated = document.querySelectorAll(`[data-model-ref="${modelName}"] select:not(.admin-autocomplete)`);
+
+ selectsRelated.forEach(function(select) {
+ if (currentSelect === select) {
+ return;
+ }
+
+ let option = select.querySelector(`option[value="${objId}"]`);
+
+ if (!option) {
+ option = new Option(newRepr, newId);
+ select.options.add(option);
+ return;
+ }
+
+ option.textContent = newRepr;
+ option.value = newId;
+ });
+ }
+
+ function dismissAddRelatedObjectPopup(win, newId, newRepr) {
+ const name = removePopupIndex(win.name);
+ const elem = document.getElementById(name);
+ if (elem) {
+ const elemName = elem.nodeName.toUpperCase();
+ if (elemName === 'SELECT') {
+ elem.options[elem.options.length] = new Option(newRepr, newId, true, true);
+ updateRelatedSelectsOptions(elem, win, null, newRepr, newId);
+ } else if (elemName === 'INPUT') {
+ if (elem.classList.contains('vManyToManyRawIdAdminField') && elem.value) {
+ elem.value += ',' + newId;
+ } else {
+ elem.value = newId;
+ }
+ }
+ // Trigger a change event to update related links if required.
+ $(elem).trigger('change');
+ } else {
+ const toId = name + "_to";
+ const o = new Option(newRepr, newId);
+ SelectBox.add_to_cache(toId, o);
+ SelectBox.redisplay(toId);
+ }
+ const index = relatedWindows.indexOf(win);
+ if (index > -1) {
+ relatedWindows.splice(index, 1);
+ }
+ win.close();
+ }
+
+ function dismissChangeRelatedObjectPopup(win, objId, newRepr, newId) {
+ const id = removePopupIndex(win.name.replace(/^edit_/, ''));
+ const selectsSelector = interpolate('#%s, #%s_from, #%s_to', [id, id, id]);
+ const selects = $(selectsSelector);
+ selects.find('option').each(function() {
+ if (this.value === objId) {
+ this.textContent = newRepr;
+ this.value = newId;
+ }
+ }).trigger('change');
+ updateRelatedSelectsOptions(selects[0], win, objId, newRepr, newId);
+ selects.next().find('.select2-selection__rendered').each(function() {
+ // The element can have a clear button as a child.
+ // Use the lastChild to modify only the displayed value.
+ this.lastChild.textContent = newRepr;
+ this.title = newRepr;
+ });
+ const index = relatedWindows.indexOf(win);
+ if (index > -1) {
+ relatedWindows.splice(index, 1);
+ }
+ win.close();
+ }
+
+ function dismissDeleteRelatedObjectPopup(win, objId) {
+ const id = removePopupIndex(win.name.replace(/^delete_/, ''));
+ const selectsSelector = interpolate('#%s, #%s_from, #%s_to', [id, id, id]);
+ const selects = $(selectsSelector);
+ selects.find('option').each(function() {
+ if (this.value === objId) {
+ $(this).remove();
+ }
+ }).trigger('change');
+ const index = relatedWindows.indexOf(win);
+ if (index > -1) {
+ relatedWindows.splice(index, 1);
+ }
+ win.close();
+ }
+
+ window.showRelatedObjectLookupPopup = showRelatedObjectLookupPopup;
+ window.dismissRelatedLookupPopup = dismissRelatedLookupPopup;
+ window.showRelatedObjectPopup = showRelatedObjectPopup;
+ window.updateRelatedObjectLinks = updateRelatedObjectLinks;
+ window.dismissAddRelatedObjectPopup = dismissAddRelatedObjectPopup;
+ window.dismissChangeRelatedObjectPopup = dismissChangeRelatedObjectPopup;
+ window.dismissDeleteRelatedObjectPopup = dismissDeleteRelatedObjectPopup;
+ window.dismissChildPopups = dismissChildPopups;
+
+ // Kept for backward compatibility
+ window.showAddAnotherPopup = showRelatedObjectPopup;
+ window.dismissAddAnotherPopup = dismissAddRelatedObjectPopup;
+
+ window.addEventListener('unload', function(evt) {
+ window.dismissChildPopups();
+ });
+
+ $(document).ready(function() {
+ setPopupIndex();
+ $("a[data-popup-opener]").on('click', function(event) {
+ event.preventDefault();
+ opener.dismissRelatedLookupPopup(window, $(this).data("popup-opener"));
+ });
+ $('body').on('click', '.related-widget-wrapper-link[data-popup="yes"]', function(e) {
+ e.preventDefault();
+ if (this.href) {
+ const event = $.Event('django:show-related', {href: this.href});
+ $(this).trigger(event);
+ if (!event.isDefaultPrevented()) {
+ showRelatedObjectPopup(this);
+ }
+ }
+ });
+ $('body').on('change', '.related-widget-wrapper select', function(e) {
+ const event = $.Event('django:update-related');
+ $(this).trigger(event);
+ if (!event.isDefaultPrevented()) {
+ updateRelatedObjectLinks(this);
+ }
+ });
+ $('.related-widget-wrapper select').trigger('change');
+ $('body').on('click', '.related-lookup', function(e) {
+ e.preventDefault();
+ const event = $.Event('django:lookup-related');
+ $(this).trigger(event);
+ if (!event.isDefaultPrevented()) {
+ showRelatedObjectLookupPopup(this);
+ }
+ });
+ });
+}
diff --git a/static/admin/js/autocomplete.js b/static/admin/js/autocomplete.js
new file mode 100644
index 0000000..d3daeab
--- /dev/null
+++ b/static/admin/js/autocomplete.js
@@ -0,0 +1,33 @@
+'use strict';
+{
+ const $ = django.jQuery;
+
+ $.fn.djangoAdminSelect2 = function() {
+ $.each(this, function(i, element) {
+ $(element).select2({
+ ajax: {
+ data: (params) => {
+ return {
+ term: params.term,
+ page: params.page,
+ app_label: element.dataset.appLabel,
+ model_name: element.dataset.modelName,
+ field_name: element.dataset.fieldName
+ };
+ }
+ }
+ });
+ });
+ return this;
+ };
+
+ $(function() {
+ // Initialize all autocomplete widgets except the one in the template
+ // form used when a new formset is added.
+ $('.admin-autocomplete').not('[name*=__prefix__]').djangoAdminSelect2();
+ });
+
+ document.addEventListener('formset:added', (event) => {
+ $(event.target).find('.admin-autocomplete').djangoAdminSelect2();
+ });
+}
diff --git a/static/admin/js/calendar.js b/static/admin/js/calendar.js
new file mode 100644
index 0000000..a62d10a
--- /dev/null
+++ b/static/admin/js/calendar.js
@@ -0,0 +1,221 @@
+/*global gettext, pgettext, get_format, quickElement, removeChildren*/
+/*
+calendar.js - Calendar functions by Adrian Holovaty
+depends on core.js for utility functions like removeChildren or quickElement
+*/
+'use strict';
+{
+ // CalendarNamespace -- Provides a collection of HTML calendar-related helper functions
+ const CalendarNamespace = {
+ monthsOfYear: [
+ gettext('January'),
+ gettext('February'),
+ gettext('March'),
+ gettext('April'),
+ gettext('May'),
+ gettext('June'),
+ gettext('July'),
+ gettext('August'),
+ gettext('September'),
+ gettext('October'),
+ gettext('November'),
+ gettext('December')
+ ],
+ monthsOfYearAbbrev: [
+ pgettext('abbrev. month January', 'Jan'),
+ pgettext('abbrev. month February', 'Feb'),
+ pgettext('abbrev. month March', 'Mar'),
+ pgettext('abbrev. month April', 'Apr'),
+ pgettext('abbrev. month May', 'May'),
+ pgettext('abbrev. month June', 'Jun'),
+ pgettext('abbrev. month July', 'Jul'),
+ pgettext('abbrev. month August', 'Aug'),
+ pgettext('abbrev. month September', 'Sep'),
+ pgettext('abbrev. month October', 'Oct'),
+ pgettext('abbrev. month November', 'Nov'),
+ pgettext('abbrev. month December', 'Dec')
+ ],
+ daysOfWeek: [
+ pgettext('one letter Sunday', 'S'),
+ pgettext('one letter Monday', 'M'),
+ pgettext('one letter Tuesday', 'T'),
+ pgettext('one letter Wednesday', 'W'),
+ pgettext('one letter Thursday', 'T'),
+ pgettext('one letter Friday', 'F'),
+ pgettext('one letter Saturday', 'S')
+ ],
+ firstDayOfWeek: parseInt(get_format('FIRST_DAY_OF_WEEK')),
+ isLeapYear: function(year) {
+ return (((year % 4) === 0) && ((year % 100) !== 0 ) || ((year % 400) === 0));
+ },
+ getDaysInMonth: function(month, year) {
+ let days;
+ if (month === 1 || month === 3 || month === 5 || month === 7 || month === 8 || month === 10 || month === 12) {
+ days = 31;
+ }
+ else if (month === 4 || month === 6 || month === 9 || month === 11) {
+ days = 30;
+ }
+ else if (month === 2 && CalendarNamespace.isLeapYear(year)) {
+ days = 29;
+ }
+ else {
+ days = 28;
+ }
+ return days;
+ },
+ draw: function(month, year, div_id, callback, selected) { // month = 1-12, year = 1-9999
+ const today = new Date();
+ const todayDay = today.getDate();
+ const todayMonth = today.getMonth() + 1;
+ const todayYear = today.getFullYear();
+ let todayClass = '';
+
+ // Use UTC functions here because the date field does not contain time
+ // and using the UTC function variants prevent the local time offset
+ // from altering the date, specifically the day field. For example:
+ //
+ // ```
+ // var x = new Date('2013-10-02');
+ // var day = x.getDate();
+ // ```
+ //
+ // The day variable above will be 1 instead of 2 in, say, US Pacific time
+ // zone.
+ let isSelectedMonth = false;
+ if (typeof selected !== 'undefined') {
+ isSelectedMonth = (selected.getUTCFullYear() === year && (selected.getUTCMonth() + 1) === month);
+ }
+
+ month = parseInt(month);
+ year = parseInt(year);
+ const calDiv = document.getElementById(div_id);
+ removeChildren(calDiv);
+ const calTable = document.createElement('table');
+ quickElement('caption', calTable, CalendarNamespace.monthsOfYear[month - 1] + ' ' + year);
+ const tableBody = quickElement('tbody', calTable);
+
+ // Draw days-of-week header
+ let tableRow = quickElement('tr', tableBody);
+ for (let i = 0; i < 7; i++) {
+ quickElement('th', tableRow, CalendarNamespace.daysOfWeek[(i + CalendarNamespace.firstDayOfWeek) % 7]);
+ }
+
+ const startingPos = new Date(year, month - 1, 1 - CalendarNamespace.firstDayOfWeek).getDay();
+ const days = CalendarNamespace.getDaysInMonth(month, year);
+
+ let nonDayCell;
+
+ // Draw blanks before first of month
+ tableRow = quickElement('tr', tableBody);
+ for (let i = 0; i < startingPos; i++) {
+ nonDayCell = quickElement('td', tableRow, ' ');
+ nonDayCell.className = "nonday";
+ }
+
+ function calendarMonth(y, m) {
+ function onClick(e) {
+ e.preventDefault();
+ callback(y, m, this.textContent);
+ }
+ return onClick;
+ }
+
+ // Draw days of month
+ let currentDay = 1;
+ for (let i = startingPos; currentDay <= days; i++) {
+ if (i % 7 === 0 && currentDay !== 1) {
+ tableRow = quickElement('tr', tableBody);
+ }
+ if ((currentDay === todayDay) && (month === todayMonth) && (year === todayYear)) {
+ todayClass = 'today';
+ } else {
+ todayClass = '';
+ }
+
+ // use UTC function; see above for explanation.
+ if (isSelectedMonth && currentDay === selected.getUTCDate()) {
+ if (todayClass !== '') {
+ todayClass += " ";
+ }
+ todayClass += "selected";
+ }
+
+ const cell = quickElement('td', tableRow, '', 'class', todayClass);
+ const link = quickElement('a', cell, currentDay, 'href', '#');
+ link.addEventListener('click', calendarMonth(year, month));
+ currentDay++;
+ }
+
+ // Draw blanks after end of month (optional, but makes for valid code)
+ while (tableRow.childNodes.length < 7) {
+ nonDayCell = quickElement('td', tableRow, ' ');
+ nonDayCell.className = "nonday";
+ }
+
+ calDiv.appendChild(calTable);
+ }
+ };
+
+ // Calendar -- A calendar instance
+ function Calendar(div_id, callback, selected) {
+ // div_id (string) is the ID of the element in which the calendar will
+ // be displayed
+ // callback (string) is the name of a JavaScript function that will be
+ // called with the parameters (year, month, day) when a day in the
+ // calendar is clicked
+ this.div_id = div_id;
+ this.callback = callback;
+ this.today = new Date();
+ this.currentMonth = this.today.getMonth() + 1;
+ this.currentYear = this.today.getFullYear();
+ if (typeof selected !== 'undefined') {
+ this.selected = selected;
+ }
+ }
+ Calendar.prototype = {
+ drawCurrent: function() {
+ CalendarNamespace.draw(this.currentMonth, this.currentYear, this.div_id, this.callback, this.selected);
+ },
+ drawDate: function(month, year, selected) {
+ this.currentMonth = month;
+ this.currentYear = year;
+
+ if(selected) {
+ this.selected = selected;
+ }
+
+ this.drawCurrent();
+ },
+ drawPreviousMonth: function() {
+ if (this.currentMonth === 1) {
+ this.currentMonth = 12;
+ this.currentYear--;
+ }
+ else {
+ this.currentMonth--;
+ }
+ this.drawCurrent();
+ },
+ drawNextMonth: function() {
+ if (this.currentMonth === 12) {
+ this.currentMonth = 1;
+ this.currentYear++;
+ }
+ else {
+ this.currentMonth++;
+ }
+ this.drawCurrent();
+ },
+ drawPreviousYear: function() {
+ this.currentYear--;
+ this.drawCurrent();
+ },
+ drawNextYear: function() {
+ this.currentYear++;
+ this.drawCurrent();
+ }
+ };
+ window.Calendar = Calendar;
+ window.CalendarNamespace = CalendarNamespace;
+}
diff --git a/static/admin/js/cancel.js b/static/admin/js/cancel.js
new file mode 100644
index 0000000..3069c6f
--- /dev/null
+++ b/static/admin/js/cancel.js
@@ -0,0 +1,29 @@
+'use strict';
+{
+ // Call function fn when the DOM is loaded and ready. If it is already
+ // loaded, call the function now.
+ // http://youmightnotneedjquery.com/#ready
+ function ready(fn) {
+ if (document.readyState !== 'loading') {
+ fn();
+ } else {
+ document.addEventListener('DOMContentLoaded', fn);
+ }
+ }
+
+ ready(function() {
+ function handleClick(event) {
+ event.preventDefault();
+ const params = new URLSearchParams(window.location.search);
+ if (params.has('_popup')) {
+ window.close(); // Close the popup.
+ } else {
+ window.history.back(); // Otherwise, go back.
+ }
+ }
+
+ document.querySelectorAll('.cancel-link').forEach(function(el) {
+ el.addEventListener('click', handleClick);
+ });
+ });
+}
diff --git a/static/admin/js/change_form.js b/static/admin/js/change_form.js
new file mode 100644
index 0000000..96a4c62
--- /dev/null
+++ b/static/admin/js/change_form.js
@@ -0,0 +1,16 @@
+'use strict';
+{
+ const inputTags = ['BUTTON', 'INPUT', 'SELECT', 'TEXTAREA'];
+ const modelName = document.getElementById('django-admin-form-add-constants').dataset.modelName;
+ if (modelName) {
+ const form = document.getElementById(modelName + '_form');
+ for (const element of form.elements) {
+ // HTMLElement.offsetParent returns null when the element is not
+ // rendered.
+ if (inputTags.includes(element.tagName) && !element.disabled && element.offsetParent) {
+ element.focus();
+ break;
+ }
+ }
+ }
+}
diff --git a/static/admin/js/collapse.js b/static/admin/js/collapse.js
new file mode 100644
index 0000000..c6c7b0f
--- /dev/null
+++ b/static/admin/js/collapse.js
@@ -0,0 +1,43 @@
+/*global gettext*/
+'use strict';
+{
+ window.addEventListener('load', function() {
+ // Add anchor tag for Show/Hide link
+ const fieldsets = document.querySelectorAll('fieldset.collapse');
+ for (const [i, elem] of fieldsets.entries()) {
+ // Don't hide if fields in this fieldset have errors
+ if (elem.querySelectorAll('div.errors, ul.errorlist').length === 0) {
+ elem.classList.add('collapsed');
+ const h2 = elem.querySelector('h2');
+ const link = document.createElement('a');
+ link.id = 'fieldsetcollapser' + i;
+ link.className = 'collapse-toggle';
+ link.href = '#';
+ link.textContent = gettext('Show');
+ h2.appendChild(document.createTextNode(' ('));
+ h2.appendChild(link);
+ h2.appendChild(document.createTextNode(')'));
+ }
+ }
+ // Add toggle to hide/show anchor tag
+ const toggleFunc = function(ev) {
+ if (ev.target.matches('.collapse-toggle')) {
+ ev.preventDefault();
+ ev.stopPropagation();
+ const fieldset = ev.target.closest('fieldset');
+ if (fieldset.classList.contains('collapsed')) {
+ // Show
+ ev.target.textContent = gettext('Hide');
+ fieldset.classList.remove('collapsed');
+ } else {
+ // Hide
+ ev.target.textContent = gettext('Show');
+ fieldset.classList.add('collapsed');
+ }
+ }
+ };
+ document.querySelectorAll('fieldset.module').forEach(function(el) {
+ el.addEventListener('click', toggleFunc);
+ });
+ });
+}
diff --git a/static/admin/js/core.js b/static/admin/js/core.js
new file mode 100644
index 0000000..afdae28
--- /dev/null
+++ b/static/admin/js/core.js
@@ -0,0 +1,170 @@
+// Core JavaScript helper functions
+'use strict';
+
+// quickElement(tagType, parentReference [, textInChildNode, attribute, attributeValue ...]);
+function quickElement() {
+ const obj = document.createElement(arguments[0]);
+ if (arguments[2]) {
+ const textNode = document.createTextNode(arguments[2]);
+ obj.appendChild(textNode);
+ }
+ const len = arguments.length;
+ for (let i = 3; i < len; i += 2) {
+ obj.setAttribute(arguments[i], arguments[i + 1]);
+ }
+ arguments[1].appendChild(obj);
+ return obj;
+}
+
+// "a" is reference to an object
+function removeChildren(a) {
+ while (a.hasChildNodes()) {
+ a.removeChild(a.lastChild);
+ }
+}
+
+// ----------------------------------------------------------------------------
+// Find-position functions by PPK
+// See https://www.quirksmode.org/js/findpos.html
+// ----------------------------------------------------------------------------
+function findPosX(obj) {
+ let curleft = 0;
+ if (obj.offsetParent) {
+ while (obj.offsetParent) {
+ curleft += obj.offsetLeft - obj.scrollLeft;
+ obj = obj.offsetParent;
+ }
+ } else if (obj.x) {
+ curleft += obj.x;
+ }
+ return curleft;
+}
+
+function findPosY(obj) {
+ let curtop = 0;
+ if (obj.offsetParent) {
+ while (obj.offsetParent) {
+ curtop += obj.offsetTop - obj.scrollTop;
+ obj = obj.offsetParent;
+ }
+ } else if (obj.y) {
+ curtop += obj.y;
+ }
+ return curtop;
+}
+
+//-----------------------------------------------------------------------------
+// Date object extensions
+// ----------------------------------------------------------------------------
+{
+ Date.prototype.getTwelveHours = function() {
+ return this.getHours() % 12 || 12;
+ };
+
+ Date.prototype.getTwoDigitMonth = function() {
+ return (this.getMonth() < 9) ? '0' + (this.getMonth() + 1) : (this.getMonth() + 1);
+ };
+
+ Date.prototype.getTwoDigitDate = function() {
+ return (this.getDate() < 10) ? '0' + this.getDate() : this.getDate();
+ };
+
+ Date.prototype.getTwoDigitTwelveHour = function() {
+ return (this.getTwelveHours() < 10) ? '0' + this.getTwelveHours() : this.getTwelveHours();
+ };
+
+ Date.prototype.getTwoDigitHour = function() {
+ return (this.getHours() < 10) ? '0' + this.getHours() : this.getHours();
+ };
+
+ Date.prototype.getTwoDigitMinute = function() {
+ return (this.getMinutes() < 10) ? '0' + this.getMinutes() : this.getMinutes();
+ };
+
+ Date.prototype.getTwoDigitSecond = function() {
+ return (this.getSeconds() < 10) ? '0' + this.getSeconds() : this.getSeconds();
+ };
+
+ Date.prototype.getAbbrevMonthName = function() {
+ return typeof window.CalendarNamespace === "undefined"
+ ? this.getTwoDigitMonth()
+ : window.CalendarNamespace.monthsOfYearAbbrev[this.getMonth()];
+ };
+
+ Date.prototype.getFullMonthName = function() {
+ return typeof window.CalendarNamespace === "undefined"
+ ? this.getTwoDigitMonth()
+ : window.CalendarNamespace.monthsOfYear[this.getMonth()];
+ };
+
+ Date.prototype.strftime = function(format) {
+ const fields = {
+ b: this.getAbbrevMonthName(),
+ B: this.getFullMonthName(),
+ c: this.toString(),
+ d: this.getTwoDigitDate(),
+ H: this.getTwoDigitHour(),
+ I: this.getTwoDigitTwelveHour(),
+ m: this.getTwoDigitMonth(),
+ M: this.getTwoDigitMinute(),
+ p: (this.getHours() >= 12) ? 'PM' : 'AM',
+ S: this.getTwoDigitSecond(),
+ w: '0' + this.getDay(),
+ x: this.toLocaleDateString(),
+ X: this.toLocaleTimeString(),
+ y: ('' + this.getFullYear()).substr(2, 4),
+ Y: '' + this.getFullYear(),
+ '%': '%'
+ };
+ let result = '', i = 0;
+ while (i < format.length) {
+ if (format.charAt(i) === '%') {
+ result = result + fields[format.charAt(i + 1)];
+ ++i;
+ }
+ else {
+ result = result + format.charAt(i);
+ }
+ ++i;
+ }
+ return result;
+ };
+
+ // ----------------------------------------------------------------------------
+ // String object extensions
+ // ----------------------------------------------------------------------------
+ String.prototype.strptime = function(format) {
+ const split_format = format.split(/[.\-/]/);
+ const date = this.split(/[.\-/]/);
+ let i = 0;
+ let day, month, year;
+ while (i < split_format.length) {
+ switch (split_format[i]) {
+ case "%d":
+ day = date[i];
+ break;
+ case "%m":
+ month = date[i] - 1;
+ break;
+ case "%Y":
+ year = date[i];
+ break;
+ case "%y":
+ // A %y value in the range of [00, 68] is in the current
+ // century, while [69, 99] is in the previous century,
+ // according to the Open Group Specification.
+ if (parseInt(date[i], 10) >= 69) {
+ year = date[i];
+ } else {
+ year = (new Date(Date.UTC(date[i], 0))).getUTCFullYear() + 100;
+ }
+ break;
+ }
+ ++i;
+ }
+ // Create Date object from UTC since the parsed value is supposed to be
+ // in UTC, not local time. Also, the calendar uses UTC functions for
+ // date extraction.
+ return new Date(Date.UTC(year, month, day));
+ };
+}
diff --git a/static/admin/js/filters.js b/static/admin/js/filters.js
new file mode 100644
index 0000000..ba691ac
--- /dev/null
+++ b/static/admin/js/filters.js
@@ -0,0 +1,30 @@
+/**
+ * Persist changelist filters state (collapsed/expanded).
+ */
+'use strict';
+{
+ // Init filters.
+ let filters = JSON.parse(sessionStorage.getItem('django.admin.filtersState'));
+
+ if (!filters) {
+ filters = {};
+ }
+
+ Object.entries(filters).forEach(([key, value]) => {
+ const detailElement = document.querySelector(`[data-filter-title='${key}']`);
+
+ // Check if the filter is present, it could be from other view.
+ if (detailElement) {
+ value ? detailElement.setAttribute('open', '') : detailElement.removeAttribute('open');
+ }
+ });
+
+ // Save filter state when clicks.
+ const details = document.querySelectorAll('details');
+ details.forEach(detail => {
+ detail.addEventListener('toggle', event => {
+ filters[`${event.target.dataset.filterTitle}`] = detail.open;
+ sessionStorage.setItem('django.admin.filtersState', JSON.stringify(filters));
+ });
+ });
+}
diff --git a/static/admin/js/inlines.js b/static/admin/js/inlines.js
new file mode 100644
index 0000000..e9a1dfe
--- /dev/null
+++ b/static/admin/js/inlines.js
@@ -0,0 +1,359 @@
+/*global DateTimeShortcuts, SelectFilter*/
+/**
+ * Django admin inlines
+ *
+ * Based on jQuery Formset 1.1
+ * @author Stanislaus Madueke (stan DOT madueke AT gmail DOT com)
+ * @requires jQuery 1.2.6 or later
+ *
+ * Copyright (c) 2009, Stanislaus Madueke
+ * All rights reserved.
+ *
+ * Spiced up with Code from Zain Memon's GSoC project 2009
+ * and modified for Django by Jannis Leidel, Travis Swicegood and Julien Phalip.
+ *
+ * Licensed under the New BSD License
+ * See: https://opensource.org/licenses/bsd-license.php
+ */
+'use strict';
+{
+ const $ = django.jQuery;
+ $.fn.formset = function(opts) {
+ const options = $.extend({}, $.fn.formset.defaults, opts);
+ const $this = $(this);
+ const $parent = $this.parent();
+ const updateElementIndex = function(el, prefix, ndx) {
+ const id_regex = new RegExp("(" + prefix + "-(\\d+|__prefix__))");
+ const replacement = prefix + "-" + ndx;
+ if ($(el).prop("for")) {
+ $(el).prop("for", $(el).prop("for").replace(id_regex, replacement));
+ }
+ if (el.id) {
+ el.id = el.id.replace(id_regex, replacement);
+ }
+ if (el.name) {
+ el.name = el.name.replace(id_regex, replacement);
+ }
+ };
+ const totalForms = $("#id_" + options.prefix + "-TOTAL_FORMS").prop("autocomplete", "off");
+ let nextIndex = parseInt(totalForms.val(), 10);
+ const maxForms = $("#id_" + options.prefix + "-MAX_NUM_FORMS").prop("autocomplete", "off");
+ const minForms = $("#id_" + options.prefix + "-MIN_NUM_FORMS").prop("autocomplete", "off");
+ let addButton;
+
+ /**
+ * The "Add another MyModel" button below the inline forms.
+ */
+ const addInlineAddButton = function() {
+ if (addButton === null) {
+ if ($this.prop("tagName") === "TR") {
+ // If forms are laid out as table rows, insert the
+ // "add" button in a new table row:
+ const numCols = $this.eq(-1).children().length;
+ $parent.append('' + options.addText + " ");
+ addButton = $parent.find("tr:last a");
+ } else {
+ // Otherwise, insert it immediately after the last form:
+ $this.filter(":last").after('");
+ addButton = $this.filter(":last").next().find("a");
+ }
+ }
+ addButton.on('click', addInlineClickHandler);
+ };
+
+ const addInlineClickHandler = function(e) {
+ e.preventDefault();
+ const template = $("#" + options.prefix + "-empty");
+ const row = template.clone(true);
+ row.removeClass(options.emptyCssClass)
+ .addClass(options.formCssClass)
+ .attr("id", options.prefix + "-" + nextIndex);
+ addInlineDeleteButton(row);
+ row.find("*").each(function() {
+ updateElementIndex(this, options.prefix, totalForms.val());
+ });
+ // Insert the new form when it has been fully edited.
+ row.insertBefore($(template));
+ // Update number of total forms.
+ $(totalForms).val(parseInt(totalForms.val(), 10) + 1);
+ nextIndex += 1;
+ // Hide the add button if there's a limit and it's been reached.
+ if ((maxForms.val() !== '') && (maxForms.val() - totalForms.val()) <= 0) {
+ addButton.parent().hide();
+ }
+ // Show the remove buttons if there are more than min_num.
+ toggleDeleteButtonVisibility(row.closest('.inline-group'));
+
+ // Pass the new form to the post-add callback, if provided.
+ if (options.added) {
+ options.added(row);
+ }
+ row.get(0).dispatchEvent(new CustomEvent("formset:added", {
+ bubbles: true,
+ detail: {
+ formsetName: options.prefix
+ }
+ }));
+ };
+
+ /**
+ * The "X" button that is part of every unsaved inline.
+ * (When saved, it is replaced with a "Delete" checkbox.)
+ */
+ const addInlineDeleteButton = function(row) {
+ if (row.is("tr")) {
+ // If the forms are laid out in table rows, insert
+ // the remove button into the last table cell:
+ row.children(":last").append('");
+ } else if (row.is("ul") || row.is("ol")) {
+ // If they're laid out as an ordered/unordered list,
+ // insert an after the last list item:
+ row.append(' ' + options.deleteText + " ");
+ } else {
+ // Otherwise, just insert the remove button as the
+ // last child element of the form's container:
+ row.children(":first").append('' + options.deleteText + " ");
+ }
+ // Add delete handler for each row.
+ row.find("a." + options.deleteCssClass).on('click', inlineDeleteHandler.bind(this));
+ };
+
+ const inlineDeleteHandler = function(e1) {
+ e1.preventDefault();
+ const deleteButton = $(e1.target);
+ const row = deleteButton.closest('.' + options.formCssClass);
+ const inlineGroup = row.closest('.inline-group');
+ // Remove the parent form containing this button,
+ // and also remove the relevant row with non-field errors:
+ const prevRow = row.prev();
+ if (prevRow.length && prevRow.hasClass('row-form-errors')) {
+ prevRow.remove();
+ }
+ row.remove();
+ nextIndex -= 1;
+ // Pass the deleted form to the post-delete callback, if provided.
+ if (options.removed) {
+ options.removed(row);
+ }
+ document.dispatchEvent(new CustomEvent("formset:removed", {
+ detail: {
+ formsetName: options.prefix
+ }
+ }));
+ // Update the TOTAL_FORMS form count.
+ const forms = $("." + options.formCssClass);
+ $("#id_" + options.prefix + "-TOTAL_FORMS").val(forms.length);
+ // Show add button again once below maximum number.
+ if ((maxForms.val() === '') || (maxForms.val() - forms.length) > 0) {
+ addButton.parent().show();
+ }
+ // Hide the remove buttons if at min_num.
+ toggleDeleteButtonVisibility(inlineGroup);
+ // Also, update names and ids for all remaining form controls so
+ // they remain in sequence:
+ let i, formCount;
+ const updateElementCallback = function() {
+ updateElementIndex(this, options.prefix, i);
+ };
+ for (i = 0, formCount = forms.length; i < formCount; i++) {
+ updateElementIndex($(forms).get(i), options.prefix, i);
+ $(forms.get(i)).find("*").each(updateElementCallback);
+ }
+ };
+
+ const toggleDeleteButtonVisibility = function(inlineGroup) {
+ if ((minForms.val() !== '') && (minForms.val() - totalForms.val()) >= 0) {
+ inlineGroup.find('.inline-deletelink').hide();
+ } else {
+ inlineGroup.find('.inline-deletelink').show();
+ }
+ };
+
+ $this.each(function(i) {
+ $(this).not("." + options.emptyCssClass).addClass(options.formCssClass);
+ });
+
+ // Create the delete buttons for all unsaved inlines:
+ $this.filter('.' + options.formCssClass + ':not(.has_original):not(.' + options.emptyCssClass + ')').each(function() {
+ addInlineDeleteButton($(this));
+ });
+ toggleDeleteButtonVisibility($this);
+
+ // Create the add button, initially hidden.
+ addButton = options.addButton;
+ addInlineAddButton();
+
+ // Show the add button if allowed to add more items.
+ // Note that max_num = None translates to a blank string.
+ const showAddButton = maxForms.val() === '' || (maxForms.val() - totalForms.val()) > 0;
+ if ($this.length && showAddButton) {
+ addButton.parent().show();
+ } else {
+ addButton.parent().hide();
+ }
+
+ return this;
+ };
+
+ /* Setup plugin defaults */
+ $.fn.formset.defaults = {
+ prefix: "form", // The form prefix for your django formset
+ addText: "add another", // Text for the add link
+ deleteText: "remove", // Text for the delete link
+ addCssClass: "add-row", // CSS class applied to the add link
+ deleteCssClass: "delete-row", // CSS class applied to the delete link
+ emptyCssClass: "empty-row", // CSS class applied to the empty row
+ formCssClass: "dynamic-form", // CSS class applied to each form in a formset
+ added: null, // Function called each time a new form is added
+ removed: null, // Function called each time a form is deleted
+ addButton: null // Existing add button to use
+ };
+
+
+ // Tabular inlines ---------------------------------------------------------
+ $.fn.tabularFormset = function(selector, options) {
+ const $rows = $(this);
+
+ const reinitDateTimeShortCuts = function() {
+ // Reinitialize the calendar and clock widgets by force
+ if (typeof DateTimeShortcuts !== "undefined") {
+ $(".datetimeshortcuts").remove();
+ DateTimeShortcuts.init();
+ }
+ };
+
+ const updateSelectFilter = function() {
+ // If any SelectFilter widgets are a part of the new form,
+ // instantiate a new SelectFilter instance for it.
+ if (typeof SelectFilter !== 'undefined') {
+ $('.selectfilter').each(function(index, value) {
+ SelectFilter.init(value.id, this.dataset.fieldName, false);
+ });
+ $('.selectfilterstacked').each(function(index, value) {
+ SelectFilter.init(value.id, this.dataset.fieldName, true);
+ });
+ }
+ };
+
+ const initPrepopulatedFields = function(row) {
+ row.find('.prepopulated_field').each(function() {
+ const field = $(this),
+ input = field.find('input, select, textarea'),
+ dependency_list = input.data('dependency_list') || [],
+ dependencies = [];
+ $.each(dependency_list, function(i, field_name) {
+ dependencies.push('#' + row.find('.field-' + field_name).find('input, select, textarea').attr('id'));
+ });
+ if (dependencies.length) {
+ input.prepopulate(dependencies, input.attr('maxlength'));
+ }
+ });
+ };
+
+ $rows.formset({
+ prefix: options.prefix,
+ addText: options.addText,
+ formCssClass: "dynamic-" + options.prefix,
+ deleteCssClass: "inline-deletelink",
+ deleteText: options.deleteText,
+ emptyCssClass: "empty-form",
+ added: function(row) {
+ initPrepopulatedFields(row);
+ reinitDateTimeShortCuts();
+ updateSelectFilter();
+ },
+ addButton: options.addButton
+ });
+
+ return $rows;
+ };
+
+ // Stacked inlines ---------------------------------------------------------
+ $.fn.stackedFormset = function(selector, options) {
+ const $rows = $(this);
+ const updateInlineLabel = function(row) {
+ $(selector).find(".inline_label").each(function(i) {
+ const count = i + 1;
+ $(this).html($(this).html().replace(/(#\d+)/g, "#" + count));
+ });
+ };
+
+ const reinitDateTimeShortCuts = function() {
+ // Reinitialize the calendar and clock widgets by force, yuck.
+ if (typeof DateTimeShortcuts !== "undefined") {
+ $(".datetimeshortcuts").remove();
+ DateTimeShortcuts.init();
+ }
+ };
+
+ const updateSelectFilter = function() {
+ // If any SelectFilter widgets were added, instantiate a new instance.
+ if (typeof SelectFilter !== "undefined") {
+ $(".selectfilter").each(function(index, value) {
+ SelectFilter.init(value.id, this.dataset.fieldName, false);
+ });
+ $(".selectfilterstacked").each(function(index, value) {
+ SelectFilter.init(value.id, this.dataset.fieldName, true);
+ });
+ }
+ };
+
+ const initPrepopulatedFields = function(row) {
+ row.find('.prepopulated_field').each(function() {
+ const field = $(this),
+ input = field.find('input, select, textarea'),
+ dependency_list = input.data('dependency_list') || [],
+ dependencies = [];
+ $.each(dependency_list, function(i, field_name) {
+ // Dependency in a fieldset.
+ let field_element = row.find('.form-row .field-' + field_name);
+ // Dependency without a fieldset.
+ if (!field_element.length) {
+ field_element = row.find('.form-row.field-' + field_name);
+ }
+ dependencies.push('#' + field_element.find('input, select, textarea').attr('id'));
+ });
+ if (dependencies.length) {
+ input.prepopulate(dependencies, input.attr('maxlength'));
+ }
+ });
+ };
+
+ $rows.formset({
+ prefix: options.prefix,
+ addText: options.addText,
+ formCssClass: "dynamic-" + options.prefix,
+ deleteCssClass: "inline-deletelink",
+ deleteText: options.deleteText,
+ emptyCssClass: "empty-form",
+ removed: updateInlineLabel,
+ added: function(row) {
+ initPrepopulatedFields(row);
+ reinitDateTimeShortCuts();
+ updateSelectFilter();
+ updateInlineLabel(row);
+ },
+ addButton: options.addButton
+ });
+
+ return $rows;
+ };
+
+ $(document).ready(function() {
+ $(".js-inline-admin-formset").each(function() {
+ const data = $(this).data(),
+ inlineOptions = data.inlineFormset;
+ let selector;
+ switch(data.inlineType) {
+ case "stacked":
+ selector = inlineOptions.name + "-group .inline-related";
+ $(selector).stackedFormset(selector, inlineOptions.options);
+ break;
+ case "tabular":
+ selector = inlineOptions.name + "-group .tabular.inline-related tbody:first > tr.form-row";
+ $(selector).tabularFormset(selector, inlineOptions.options);
+ break;
+ }
+ });
+ });
+}
diff --git a/static/admin/js/jquery.init.js b/static/admin/js/jquery.init.js
new file mode 100644
index 0000000..f40b27f
--- /dev/null
+++ b/static/admin/js/jquery.init.js
@@ -0,0 +1,8 @@
+/*global jQuery:false*/
+'use strict';
+/* Puts the included jQuery into our own namespace using noConflict and passing
+ * it 'true'. This ensures that the included jQuery doesn't pollute the global
+ * namespace (i.e. this preserves pre-existing values for both window.$ and
+ * window.jQuery).
+ */
+window.django = {jQuery: jQuery.noConflict(true)};
diff --git a/static/admin/js/nav_sidebar.js b/static/admin/js/nav_sidebar.js
new file mode 100644
index 0000000..261a9d4
--- /dev/null
+++ b/static/admin/js/nav_sidebar.js
@@ -0,0 +1,102 @@
+'use strict';
+{
+ const toggleNavSidebar = document.getElementById('toggle-nav-sidebar');
+ if (toggleNavSidebar !== null) {
+ const navLinks = document.querySelectorAll('#nav-sidebar a');
+ function disableNavLinkTabbing() {
+ for (const navLink of navLinks) {
+ navLink.tabIndex = -1;
+ }
+ }
+ function enableNavLinkTabbing() {
+ for (const navLink of navLinks) {
+ navLink.tabIndex = 0;
+ }
+ }
+ function disableNavFilterTabbing() {
+ document.getElementById('nav-filter').tabIndex = -1;
+ }
+ function enableNavFilterTabbing() {
+ document.getElementById('nav-filter').tabIndex = 0;
+ }
+
+ const main = document.getElementById('main');
+ let navSidebarIsOpen = localStorage.getItem('django.admin.navSidebarIsOpen');
+ if (navSidebarIsOpen === null) {
+ navSidebarIsOpen = 'true';
+ }
+ if (navSidebarIsOpen === 'false') {
+ disableNavLinkTabbing();
+ disableNavFilterTabbing();
+ }
+ main.classList.toggle('shifted', navSidebarIsOpen === 'true');
+
+ toggleNavSidebar.addEventListener('click', function() {
+ if (navSidebarIsOpen === 'true') {
+ navSidebarIsOpen = 'false';
+ disableNavLinkTabbing();
+ disableNavFilterTabbing();
+ } else {
+ navSidebarIsOpen = 'true';
+ enableNavLinkTabbing();
+ enableNavFilterTabbing();
+ }
+ localStorage.setItem('django.admin.navSidebarIsOpen', navSidebarIsOpen);
+ main.classList.toggle('shifted');
+ });
+ }
+
+ function initSidebarQuickFilter() {
+ const options = [];
+ const navSidebar = document.getElementById('nav-sidebar');
+ if (!navSidebar) {
+ return;
+ }
+ navSidebar.querySelectorAll('th[scope=row] a').forEach((container) => {
+ options.push({title: container.innerHTML, node: container});
+ });
+
+ function checkValue(event) {
+ let filterValue = event.target.value;
+ if (filterValue) {
+ filterValue = filterValue.toLowerCase();
+ }
+ if (event.key === 'Escape') {
+ filterValue = '';
+ event.target.value = ''; // clear input
+ }
+ let matches = false;
+ for (const o of options) {
+ let displayValue = '';
+ if (filterValue) {
+ if (o.title.toLowerCase().indexOf(filterValue) === -1) {
+ displayValue = 'none';
+ } else {
+ matches = true;
+ }
+ }
+ // show/hide parent
+ o.node.parentNode.parentNode.style.display = displayValue;
+ }
+ if (!filterValue || matches) {
+ event.target.classList.remove('no-results');
+ } else {
+ event.target.classList.add('no-results');
+ }
+ sessionStorage.setItem('django.admin.navSidebarFilterValue', filterValue);
+ }
+
+ const nav = document.getElementById('nav-filter');
+ nav.addEventListener('change', checkValue, false);
+ nav.addEventListener('input', checkValue, false);
+ nav.addEventListener('keyup', checkValue, false);
+
+ const storedValue = sessionStorage.getItem('django.admin.navSidebarFilterValue');
+ if (storedValue) {
+ nav.value = storedValue;
+ checkValue({target: nav, key: ''});
+ }
+ }
+ window.initSidebarQuickFilter = initSidebarQuickFilter;
+ initSidebarQuickFilter();
+}
diff --git a/static/admin/js/popup_response.js b/static/admin/js/popup_response.js
new file mode 100644
index 0000000..2b1d3dd
--- /dev/null
+++ b/static/admin/js/popup_response.js
@@ -0,0 +1,16 @@
+/*global opener */
+'use strict';
+{
+ const initData = JSON.parse(document.getElementById('django-admin-popup-response-constants').dataset.popupResponse);
+ switch(initData.action) {
+ case 'change':
+ opener.dismissChangeRelatedObjectPopup(window, initData.value, initData.obj, initData.new_value);
+ break;
+ case 'delete':
+ opener.dismissDeleteRelatedObjectPopup(window, initData.value);
+ break;
+ default:
+ opener.dismissAddRelatedObjectPopup(window, initData.value, initData.obj);
+ break;
+ }
+}
diff --git a/static/admin/js/prepopulate.js b/static/admin/js/prepopulate.js
new file mode 100644
index 0000000..89e95ab
--- /dev/null
+++ b/static/admin/js/prepopulate.js
@@ -0,0 +1,43 @@
+/*global URLify*/
+'use strict';
+{
+ const $ = django.jQuery;
+ $.fn.prepopulate = function(dependencies, maxLength, allowUnicode) {
+ /*
+ Depends on urlify.js
+ Populates a selected field with the values of the dependent fields,
+ URLifies and shortens the string.
+ dependencies - array of dependent fields ids
+ maxLength - maximum length of the URLify'd string
+ allowUnicode - Unicode support of the URLify'd string
+ */
+ return this.each(function() {
+ const prepopulatedField = $(this);
+
+ const populate = function() {
+ // Bail if the field's value has been changed by the user
+ if (prepopulatedField.data('_changed')) {
+ return;
+ }
+
+ const values = [];
+ $.each(dependencies, function(i, field) {
+ field = $(field);
+ if (field.val().length > 0) {
+ values.push(field.val());
+ }
+ });
+ prepopulatedField.val(URLify(values.join(' '), maxLength, allowUnicode));
+ };
+
+ prepopulatedField.data('_changed', false);
+ prepopulatedField.on('change', function() {
+ prepopulatedField.data('_changed', true);
+ });
+
+ if (!prepopulatedField.val()) {
+ $(dependencies.join(',')).on('keyup change focus', populate);
+ }
+ });
+ };
+}
diff --git a/static/admin/js/prepopulate_init.js b/static/admin/js/prepopulate_init.js
new file mode 100644
index 0000000..a58841f
--- /dev/null
+++ b/static/admin/js/prepopulate_init.js
@@ -0,0 +1,15 @@
+'use strict';
+{
+ const $ = django.jQuery;
+ const fields = $('#django-admin-prepopulated-fields-constants').data('prepopulatedFields');
+ $.each(fields, function(index, field) {
+ $(
+ '.empty-form .form-row .field-' + field.name +
+ ', .empty-form.form-row .field-' + field.name +
+ ', .empty-form .form-row.field-' + field.name
+ ).addClass('prepopulated_field');
+ $(field.id).data('dependency_list', field.dependency_list).prepopulate(
+ field.dependency_ids, field.maxLength, field.allowUnicode
+ );
+ });
+}
diff --git a/static/admin/js/theme.js b/static/admin/js/theme.js
new file mode 100644
index 0000000..e79d375
--- /dev/null
+++ b/static/admin/js/theme.js
@@ -0,0 +1,51 @@
+'use strict';
+{
+ function setTheme(mode) {
+ if (mode !== "light" && mode !== "dark" && mode !== "auto") {
+ console.error(`Got invalid theme mode: ${mode}. Resetting to auto.`);
+ mode = "auto";
+ }
+ document.documentElement.dataset.theme = mode;
+ localStorage.setItem("theme", mode);
+ }
+
+ function cycleTheme() {
+ const currentTheme = localStorage.getItem("theme") || "auto";
+ const prefersDark = window.matchMedia("(prefers-color-scheme: dark)").matches;
+
+ if (prefersDark) {
+ // Auto (dark) -> Light -> Dark
+ if (currentTheme === "auto") {
+ setTheme("light");
+ } else if (currentTheme === "light") {
+ setTheme("dark");
+ } else {
+ setTheme("auto");
+ }
+ } else {
+ // Auto (light) -> Dark -> Light
+ if (currentTheme === "auto") {
+ setTheme("dark");
+ } else if (currentTheme === "dark") {
+ setTheme("light");
+ } else {
+ setTheme("auto");
+ }
+ }
+ }
+
+ function initTheme() {
+ // set theme defined in localStorage if there is one, or fallback to auto mode
+ const currentTheme = localStorage.getItem("theme");
+ currentTheme ? setTheme(currentTheme) : setTheme("auto");
+ }
+
+ window.addEventListener('load', function(_) {
+ const buttons = document.getElementsByClassName("theme-toggle");
+ Array.from(buttons).forEach((btn) => {
+ btn.addEventListener("click", cycleTheme);
+ });
+ });
+
+ initTheme();
+}
diff --git a/static/admin/js/unusable_password_field.js b/static/admin/js/unusable_password_field.js
new file mode 100644
index 0000000..ec26238
--- /dev/null
+++ b/static/admin/js/unusable_password_field.js
@@ -0,0 +1,29 @@
+"use strict";
+// Fallback JS for browsers which do not support :has selector used in
+// admin/css/unusable_password_fields.css
+// Remove file once all supported browsers support :has selector
+try {
+ // If browser does not support :has selector this will raise an error
+ document.querySelector("form:has(input)");
+} catch (error) {
+ console.log("Defaulting to javascript for usable password form management: " + error);
+ // JS replacement for unsupported :has selector
+ document.querySelectorAll('input[name="usable_password"]').forEach(option => {
+ option.addEventListener('change', function() {
+ const usablePassword = (this.value === "true" ? this.checked : !this.checked);
+ const submit1 = document.querySelector('input[type="submit"].set-password');
+ const submit2 = document.querySelector('input[type="submit"].unset-password');
+ const messages = document.querySelector('#id_unusable_warning');
+ document.getElementById('id_password1').closest('.form-row').hidden = !usablePassword;
+ document.getElementById('id_password2').closest('.form-row').hidden = !usablePassword;
+ if (messages) {
+ messages.hidden = usablePassword;
+ }
+ if (submit1 && submit2) {
+ submit1.hidden = !usablePassword;
+ submit2.hidden = usablePassword;
+ }
+ });
+ option.dispatchEvent(new Event('change'));
+ });
+}
diff --git a/static/admin/js/urlify.js b/static/admin/js/urlify.js
new file mode 100644
index 0000000..61dedb2
--- /dev/null
+++ b/static/admin/js/urlify.js
@@ -0,0 +1,170 @@
+/*global XRegExp*/
+'use strict';
+{
+ const LATIN_MAP = {
+ 'À': 'A', 'Á': 'A', 'Â': 'A', 'Ã': 'A', 'Ä': 'A', 'Å': 'A', 'Æ': 'AE',
+ 'Ç': 'C', 'È': 'E', 'É': 'E', 'Ê': 'E', 'Ë': 'E', 'Ì': 'I', 'Í': 'I',
+ 'Î': 'I', 'Ï': 'I', 'Ð': 'D', 'Ñ': 'N', 'Ò': 'O', 'Ó': 'O', 'Ô': 'O',
+ 'Õ': 'O', 'Ö': 'O', 'Ő': 'O', 'Ø': 'O', 'Ù': 'U', 'Ú': 'U', 'Û': 'U',
+ 'Ü': 'U', 'Ű': 'U', 'Ý': 'Y', 'Þ': 'TH', 'Ÿ': 'Y', 'ß': 'ss', 'à': 'a',
+ 'á': 'a', 'â': 'a', 'ã': 'a', 'ä': 'a', 'å': 'a', 'æ': 'ae', 'ç': 'c',
+ 'è': 'e', 'é': 'e', 'ê': 'e', 'ë': 'e', 'ì': 'i', 'í': 'i', 'î': 'i',
+ 'ï': 'i', 'ð': 'd', 'ñ': 'n', 'ò': 'o', 'ó': 'o', 'ô': 'o', 'õ': 'o',
+ 'ö': 'o', 'ő': 'o', 'ø': 'o', 'ù': 'u', 'ú': 'u', 'û': 'u', 'ü': 'u',
+ 'ű': 'u', 'ý': 'y', 'þ': 'th', 'ÿ': 'y'
+ };
+ const LATIN_SYMBOLS_MAP = {
+ '©': '(c)'
+ };
+ const GREEK_MAP = {
+ 'α': 'a', 'β': 'b', 'γ': 'g', 'δ': 'd', 'ε': 'e', 'ζ': 'z', 'η': 'h',
+ 'θ': '8', 'ι': 'i', 'κ': 'k', 'λ': 'l', 'μ': 'm', 'ν': 'n', 'ξ': '3',
+ 'ο': 'o', 'π': 'p', 'ρ': 'r', 'σ': 's', 'τ': 't', 'υ': 'y', 'φ': 'f',
+ 'χ': 'x', 'ψ': 'ps', 'ω': 'w', 'ά': 'a', 'έ': 'e', 'ί': 'i', 'ό': 'o',
+ 'ύ': 'y', 'ή': 'h', 'ώ': 'w', 'ς': 's', 'ϊ': 'i', 'ΰ': 'y', 'ϋ': 'y',
+ 'ΐ': 'i', 'Α': 'A', 'Β': 'B', 'Γ': 'G', 'Δ': 'D', 'Ε': 'E', 'Ζ': 'Z',
+ 'Η': 'H', 'Θ': '8', 'Ι': 'I', 'Κ': 'K', 'Λ': 'L', 'Μ': 'M', 'Ν': 'N',
+ 'Ξ': '3', 'Ο': 'O', 'Π': 'P', 'Ρ': 'R', 'Σ': 'S', 'Τ': 'T', 'Υ': 'Y',
+ 'Φ': 'F', 'Χ': 'X', 'Ψ': 'PS', 'Ω': 'W', 'Ά': 'A', 'Έ': 'E', 'Ί': 'I',
+ 'Ό': 'O', 'Ύ': 'Y', 'Ή': 'H', 'Ώ': 'W', 'Ϊ': 'I', 'Ϋ': 'Y'
+ };
+ const TURKISH_MAP = {
+ 'ş': 's', 'Ş': 'S', 'ı': 'i', 'İ': 'I', 'ç': 'c', 'Ç': 'C', 'ü': 'u',
+ 'Ü': 'U', 'ö': 'o', 'Ö': 'O', 'ğ': 'g', 'Ğ': 'G'
+ };
+ const ROMANIAN_MAP = {
+ 'ă': 'a', 'î': 'i', 'ș': 's', 'ț': 't', 'â': 'a',
+ 'Ă': 'A', 'Î': 'I', 'Ș': 'S', 'Ț': 'T', 'Â': 'A'
+ };
+ const RUSSIAN_MAP = {
+ 'а': 'a', 'б': 'b', 'в': 'v', 'г': 'g', 'д': 'd', 'е': 'e', 'ё': 'yo',
+ 'ж': 'zh', 'з': 'z', 'и': 'i', 'й': 'j', 'к': 'k', 'л': 'l', 'м': 'm',
+ 'н': 'n', 'о': 'o', 'п': 'p', 'р': 'r', 'с': 's', 'т': 't', 'у': 'u',
+ 'ф': 'f', 'х': 'h', 'ц': 'c', 'ч': 'ch', 'ш': 'sh', 'щ': 'sh', 'ъ': '',
+ 'ы': 'y', 'ь': '', 'э': 'e', 'ю': 'yu', 'я': 'ya',
+ 'А': 'A', 'Б': 'B', 'В': 'V', 'Г': 'G', 'Д': 'D', 'Е': 'E', 'Ё': 'Yo',
+ 'Ж': 'Zh', 'З': 'Z', 'И': 'I', 'Й': 'J', 'К': 'K', 'Л': 'L', 'М': 'M',
+ 'Н': 'N', 'О': 'O', 'П': 'P', 'Р': 'R', 'С': 'S', 'Т': 'T', 'У': 'U',
+ 'Ф': 'F', 'Х': 'H', 'Ц': 'C', 'Ч': 'Ch', 'Ш': 'Sh', 'Щ': 'Sh', 'Ъ': '',
+ 'Ы': 'Y', 'Ь': '', 'Э': 'E', 'Ю': 'Yu', 'Я': 'Ya'
+ };
+ const UKRAINIAN_MAP = {
+ 'Є': 'Ye', 'І': 'I', 'Ї': 'Yi', 'Ґ': 'G', 'є': 'ye', 'і': 'i',
+ 'ї': 'yi', 'ґ': 'g'
+ };
+ const CZECH_MAP = {
+ 'č': 'c', 'ď': 'd', 'ě': 'e', 'ň': 'n', 'ř': 'r', 'š': 's', 'ť': 't',
+ 'ů': 'u', 'ž': 'z', 'Č': 'C', 'Ď': 'D', 'Ě': 'E', 'Ň': 'N', 'Ř': 'R',
+ 'Š': 'S', 'Ť': 'T', 'Ů': 'U', 'Ž': 'Z'
+ };
+ const SLOVAK_MAP = {
+ 'á': 'a', 'ä': 'a', 'č': 'c', 'ď': 'd', 'é': 'e', 'í': 'i', 'ľ': 'l',
+ 'ĺ': 'l', 'ň': 'n', 'ó': 'o', 'ô': 'o', 'ŕ': 'r', 'š': 's', 'ť': 't',
+ 'ú': 'u', 'ý': 'y', 'ž': 'z',
+ 'Á': 'a', 'Ä': 'A', 'Č': 'C', 'Ď': 'D', 'É': 'E', 'Í': 'I', 'Ľ': 'L',
+ 'Ĺ': 'L', 'Ň': 'N', 'Ó': 'O', 'Ô': 'O', 'Ŕ': 'R', 'Š': 'S', 'Ť': 'T',
+ 'Ú': 'U', 'Ý': 'Y', 'Ž': 'Z'
+ };
+ const POLISH_MAP = {
+ 'ą': 'a', 'ć': 'c', 'ę': 'e', 'ł': 'l', 'ń': 'n', 'ó': 'o', 'ś': 's',
+ 'ź': 'z', 'ż': 'z',
+ 'Ą': 'A', 'Ć': 'C', 'Ę': 'E', 'Ł': 'L', 'Ń': 'N', 'Ó': 'O', 'Ś': 'S',
+ 'Ź': 'Z', 'Ż': 'Z'
+ };
+ const LATVIAN_MAP = {
+ 'ā': 'a', 'č': 'c', 'ē': 'e', 'ģ': 'g', 'ī': 'i', 'ķ': 'k', 'ļ': 'l',
+ 'ņ': 'n', 'š': 's', 'ū': 'u', 'ž': 'z',
+ 'Ā': 'A', 'Č': 'C', 'Ē': 'E', 'Ģ': 'G', 'Ī': 'I', 'Ķ': 'K', 'Ļ': 'L',
+ 'Ņ': 'N', 'Š': 'S', 'Ū': 'U', 'Ž': 'Z'
+ };
+ const ARABIC_MAP = {
+ 'أ': 'a', 'ب': 'b', 'ت': 't', 'ث': 'th', 'ج': 'g', 'ح': 'h', 'خ': 'kh', 'د': 'd',
+ 'ذ': 'th', 'ر': 'r', 'ز': 'z', 'س': 's', 'ش': 'sh', 'ص': 's', 'ض': 'd', 'ط': 't',
+ 'ظ': 'th', 'ع': 'aa', 'غ': 'gh', 'ف': 'f', 'ق': 'k', 'ك': 'k', 'ل': 'l', 'م': 'm',
+ 'ن': 'n', 'ه': 'h', 'و': 'o', 'ي': 'y'
+ };
+ const LITHUANIAN_MAP = {
+ 'ą': 'a', 'č': 'c', 'ę': 'e', 'ė': 'e', 'į': 'i', 'š': 's', 'ų': 'u',
+ 'ū': 'u', 'ž': 'z',
+ 'Ą': 'A', 'Č': 'C', 'Ę': 'E', 'Ė': 'E', 'Į': 'I', 'Š': 'S', 'Ų': 'U',
+ 'Ū': 'U', 'Ž': 'Z'
+ };
+ const SERBIAN_MAP = {
+ 'ђ': 'dj', 'ј': 'j', 'љ': 'lj', 'њ': 'nj', 'ћ': 'c', 'џ': 'dz',
+ 'đ': 'dj', 'Ђ': 'Dj', 'Ј': 'j', 'Љ': 'Lj', 'Њ': 'Nj', 'Ћ': 'C',
+ 'Џ': 'Dz', 'Đ': 'Dj'
+ };
+ const AZERBAIJANI_MAP = {
+ 'ç': 'c', 'ə': 'e', 'ğ': 'g', 'ı': 'i', 'ö': 'o', 'ş': 's', 'ü': 'u',
+ 'Ç': 'C', 'Ə': 'E', 'Ğ': 'G', 'İ': 'I', 'Ö': 'O', 'Ş': 'S', 'Ü': 'U'
+ };
+ const GEORGIAN_MAP = {
+ 'ა': 'a', 'ბ': 'b', 'გ': 'g', 'დ': 'd', 'ე': 'e', 'ვ': 'v', 'ზ': 'z',
+ 'თ': 't', 'ი': 'i', 'კ': 'k', 'ლ': 'l', 'მ': 'm', 'ნ': 'n', 'ო': 'o',
+ 'პ': 'p', 'ჟ': 'j', 'რ': 'r', 'ს': 's', 'ტ': 't', 'უ': 'u', 'ფ': 'f',
+ 'ქ': 'q', 'ღ': 'g', 'ყ': 'y', 'შ': 'sh', 'ჩ': 'ch', 'ც': 'c', 'ძ': 'dz',
+ 'წ': 'w', 'ჭ': 'ch', 'ხ': 'x', 'ჯ': 'j', 'ჰ': 'h'
+ };
+
+ const ALL_DOWNCODE_MAPS = [
+ LATIN_MAP,
+ LATIN_SYMBOLS_MAP,
+ GREEK_MAP,
+ TURKISH_MAP,
+ ROMANIAN_MAP,
+ RUSSIAN_MAP,
+ UKRAINIAN_MAP,
+ CZECH_MAP,
+ SLOVAK_MAP,
+ POLISH_MAP,
+ LATVIAN_MAP,
+ ARABIC_MAP,
+ LITHUANIAN_MAP,
+ SERBIAN_MAP,
+ AZERBAIJANI_MAP,
+ GEORGIAN_MAP
+ ];
+
+ const Downcoder = {
+ 'Initialize': function() {
+ if (Downcoder.map) { // already made
+ return;
+ }
+ Downcoder.map = {};
+ for (const lookup of ALL_DOWNCODE_MAPS) {
+ Object.assign(Downcoder.map, lookup);
+ }
+ Downcoder.regex = new RegExp(Object.keys(Downcoder.map).join('|'), 'g');
+ }
+ };
+
+ function downcode(slug) {
+ Downcoder.Initialize();
+ return slug.replace(Downcoder.regex, function(m) {
+ return Downcoder.map[m];
+ });
+ }
+
+
+ function URLify(s, num_chars, allowUnicode) {
+ // changes, e.g., "Petty theft" to "petty-theft"
+ if (!allowUnicode) {
+ s = downcode(s);
+ }
+ s = s.toLowerCase(); // convert to lowercase
+ // if downcode doesn't hit, the char will be stripped here
+ if (allowUnicode) {
+ // Keep Unicode letters including both lowercase and uppercase
+ // characters, whitespace, and dash; remove other characters.
+ s = XRegExp.replace(s, XRegExp('[^-_\\p{L}\\p{N}\\s]', 'g'), '');
+ } else {
+ s = s.replace(/[^-\w\s]/g, ''); // remove unneeded chars
+ }
+ s = s.replace(/^\s+|\s+$/g, ''); // trim leading/trailing spaces
+ s = s.replace(/[-\s]+/g, '-'); // convert spaces to hyphens
+ s = s.substring(0, num_chars); // trim to first num_chars chars
+ s = s.replace(/-+$/g, ''); // trim any trailing hyphens
+ return s;
+ }
+ window.URLify = URLify;
+}
diff --git a/static/admin/js/vendor/jquery/LICENSE.txt b/static/admin/js/vendor/jquery/LICENSE.txt
new file mode 100644
index 0000000..f642c3f
--- /dev/null
+++ b/static/admin/js/vendor/jquery/LICENSE.txt
@@ -0,0 +1,20 @@
+Copyright OpenJS Foundation and other contributors, https://openjsf.org/
+
+Permission is hereby granted, free of charge, to any person obtaining
+a copy of this software and associated documentation files (the
+"Software"), to deal in the Software without restriction, including
+without limitation the rights to use, copy, modify, merge, publish,
+distribute, sublicense, and/or sell copies of the Software, and to
+permit persons to whom the Software is furnished to do so, subject to
+the following conditions:
+
+The above copyright notice and this permission notice shall be
+included in all copies or substantial portions of the Software.
+
+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
+EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
+MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
+NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
+LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
+OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
+WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
diff --git a/static/admin/js/vendor/jquery/jquery.js b/static/admin/js/vendor/jquery/jquery.js
new file mode 100644
index 0000000..fc6c299
--- /dev/null
+++ b/static/admin/js/vendor/jquery/jquery.js
@@ -0,0 +1,10881 @@
+/*!
+ * jQuery JavaScript Library v3.6.0
+ * https://jquery.com/
+ *
+ * Includes Sizzle.js
+ * https://sizzlejs.com/
+ *
+ * Copyright OpenJS Foundation and other contributors
+ * Released under the MIT license
+ * https://jquery.org/license
+ *
+ * Date: 2021-03-02T17:08Z
+ */
+( function( global, factory ) {
+
+ "use strict";
+
+ if ( typeof module === "object" && typeof module.exports === "object" ) {
+
+ // For CommonJS and CommonJS-like environments where a proper `window`
+ // is present, execute the factory and get jQuery.
+ // For environments that do not have a `window` with a `document`
+ // (such as Node.js), expose a factory as module.exports.
+ // This accentuates the need for the creation of a real `window`.
+ // e.g. var jQuery = require("jquery")(window);
+ // See ticket #14549 for more info.
+ module.exports = global.document ?
+ factory( global, true ) :
+ function( w ) {
+ if ( !w.document ) {
+ throw new Error( "jQuery requires a window with a document" );
+ }
+ return factory( w );
+ };
+ } else {
+ factory( global );
+ }
+
+// Pass this if window is not defined yet
+} )( typeof window !== "undefined" ? window : this, function( window, noGlobal ) {
+
+// Edge <= 12 - 13+, Firefox <=18 - 45+, IE 10 - 11, Safari 5.1 - 9+, iOS 6 - 9.1
+// throw exceptions when non-strict code (e.g., ASP.NET 4.5) accesses strict mode
+// arguments.callee.caller (trac-13335). But as of jQuery 3.0 (2016), strict mode should be common
+// enough that all such attempts are guarded in a try block.
+"use strict";
+
+var arr = [];
+
+var getProto = Object.getPrototypeOf;
+
+var slice = arr.slice;
+
+var flat = arr.flat ? function( array ) {
+ return arr.flat.call( array );
+} : function( array ) {
+ return arr.concat.apply( [], array );
+};
+
+
+var push = arr.push;
+
+var indexOf = arr.indexOf;
+
+var class2type = {};
+
+var toString = class2type.toString;
+
+var hasOwn = class2type.hasOwnProperty;
+
+var fnToString = hasOwn.toString;
+
+var ObjectFunctionString = fnToString.call( Object );
+
+var support = {};
+
+var isFunction = function isFunction( obj ) {
+
+ // Support: Chrome <=57, Firefox <=52
+ // In some browsers, typeof returns "function" for HTML elements
+ // (i.e., `typeof document.createElement( "object" ) === "function"`).
+ // We don't want to classify *any* DOM node as a function.
+ // Support: QtWeb <=3.8.5, WebKit <=534.34, wkhtmltopdf tool <=0.12.5
+ // Plus for old WebKit, typeof returns "function" for HTML collections
+ // (e.g., `typeof document.getElementsByTagName("div") === "function"`). (gh-4756)
+ return typeof obj === "function" && typeof obj.nodeType !== "number" &&
+ typeof obj.item !== "function";
+ };
+
+
+var isWindow = function isWindow( obj ) {
+ return obj != null && obj === obj.window;
+ };
+
+
+var document = window.document;
+
+
+
+ var preservedScriptAttributes = {
+ type: true,
+ src: true,
+ nonce: true,
+ noModule: true
+ };
+
+ function DOMEval( code, node, doc ) {
+ doc = doc || document;
+
+ var i, val,
+ script = doc.createElement( "script" );
+
+ script.text = code;
+ if ( node ) {
+ for ( i in preservedScriptAttributes ) {
+
+ // Support: Firefox 64+, Edge 18+
+ // Some browsers don't support the "nonce" property on scripts.
+ // On the other hand, just using `getAttribute` is not enough as
+ // the `nonce` attribute is reset to an empty string whenever it
+ // becomes browsing-context connected.
+ // See https://github.com/whatwg/html/issues/2369
+ // See https://html.spec.whatwg.org/#nonce-attributes
+ // The `node.getAttribute` check was added for the sake of
+ // `jQuery.globalEval` so that it can fake a nonce-containing node
+ // via an object.
+ val = node[ i ] || node.getAttribute && node.getAttribute( i );
+ if ( val ) {
+ script.setAttribute( i, val );
+ }
+ }
+ }
+ doc.head.appendChild( script ).parentNode.removeChild( script );
+ }
+
+
+function toType( obj ) {
+ if ( obj == null ) {
+ return obj + "";
+ }
+
+ // Support: Android <=2.3 only (functionish RegExp)
+ return typeof obj === "object" || typeof obj === "function" ?
+ class2type[ toString.call( obj ) ] || "object" :
+ typeof obj;
+}
+/* global Symbol */
+// Defining this global in .eslintrc.json would create a danger of using the global
+// unguarded in another place, it seems safer to define global only for this module
+
+
+
+var
+ version = "3.6.0",
+
+ // Define a local copy of jQuery
+ jQuery = function( selector, context ) {
+
+ // The jQuery object is actually just the init constructor 'enhanced'
+ // Need init if jQuery is called (just allow error to be thrown if not included)
+ return new jQuery.fn.init( selector, context );
+ };
+
+jQuery.fn = jQuery.prototype = {
+
+ // The current version of jQuery being used
+ jquery: version,
+
+ constructor: jQuery,
+
+ // The default length of a jQuery object is 0
+ length: 0,
+
+ toArray: function() {
+ return slice.call( this );
+ },
+
+ // Get the Nth element in the matched element set OR
+ // Get the whole matched element set as a clean array
+ get: function( num ) {
+
+ // Return all the elements in a clean array
+ if ( num == null ) {
+ return slice.call( this );
+ }
+
+ // Return just the one element from the set
+ return num < 0 ? this[ num + this.length ] : this[ num ];
+ },
+
+ // Take an array of elements and push it onto the stack
+ // (returning the new matched element set)
+ pushStack: function( elems ) {
+
+ // Build a new jQuery matched element set
+ var ret = jQuery.merge( this.constructor(), elems );
+
+ // Add the old object onto the stack (as a reference)
+ ret.prevObject = this;
+
+ // Return the newly-formed element set
+ return ret;
+ },
+
+ // Execute a callback for every element in the matched set.
+ each: function( callback ) {
+ return jQuery.each( this, callback );
+ },
+
+ map: function( callback ) {
+ return this.pushStack( jQuery.map( this, function( elem, i ) {
+ return callback.call( elem, i, elem );
+ } ) );
+ },
+
+ slice: function() {
+ return this.pushStack( slice.apply( this, arguments ) );
+ },
+
+ first: function() {
+ return this.eq( 0 );
+ },
+
+ last: function() {
+ return this.eq( -1 );
+ },
+
+ even: function() {
+ return this.pushStack( jQuery.grep( this, function( _elem, i ) {
+ return ( i + 1 ) % 2;
+ } ) );
+ },
+
+ odd: function() {
+ return this.pushStack( jQuery.grep( this, function( _elem, i ) {
+ return i % 2;
+ } ) );
+ },
+
+ eq: function( i ) {
+ var len = this.length,
+ j = +i + ( i < 0 ? len : 0 );
+ return this.pushStack( j >= 0 && j < len ? [ this[ j ] ] : [] );
+ },
+
+ end: function() {
+ return this.prevObject || this.constructor();
+ },
+
+ // For internal use only.
+ // Behaves like an Array's method, not like a jQuery method.
+ push: push,
+ sort: arr.sort,
+ splice: arr.splice
+};
+
+jQuery.extend = jQuery.fn.extend = function() {
+ var options, name, src, copy, copyIsArray, clone,
+ target = arguments[ 0 ] || {},
+ i = 1,
+ length = arguments.length,
+ deep = false;
+
+ // Handle a deep copy situation
+ if ( typeof target === "boolean" ) {
+ deep = target;
+
+ // Skip the boolean and the target
+ target = arguments[ i ] || {};
+ i++;
+ }
+
+ // Handle case when target is a string or something (possible in deep copy)
+ if ( typeof target !== "object" && !isFunction( target ) ) {
+ target = {};
+ }
+
+ // Extend jQuery itself if only one argument is passed
+ if ( i === length ) {
+ target = this;
+ i--;
+ }
+
+ for ( ; i < length; i++ ) {
+
+ // Only deal with non-null/undefined values
+ if ( ( options = arguments[ i ] ) != null ) {
+
+ // Extend the base object
+ for ( name in options ) {
+ copy = options[ name ];
+
+ // Prevent Object.prototype pollution
+ // Prevent never-ending loop
+ if ( name === "__proto__" || target === copy ) {
+ continue;
+ }
+
+ // Recurse if we're merging plain objects or arrays
+ if ( deep && copy && ( jQuery.isPlainObject( copy ) ||
+ ( copyIsArray = Array.isArray( copy ) ) ) ) {
+ src = target[ name ];
+
+ // Ensure proper type for the source value
+ if ( copyIsArray && !Array.isArray( src ) ) {
+ clone = [];
+ } else if ( !copyIsArray && !jQuery.isPlainObject( src ) ) {
+ clone = {};
+ } else {
+ clone = src;
+ }
+ copyIsArray = false;
+
+ // Never move original objects, clone them
+ target[ name ] = jQuery.extend( deep, clone, copy );
+
+ // Don't bring in undefined values
+ } else if ( copy !== undefined ) {
+ target[ name ] = copy;
+ }
+ }
+ }
+ }
+
+ // Return the modified object
+ return target;
+};
+
+jQuery.extend( {
+
+ // Unique for each copy of jQuery on the page
+ expando: "jQuery" + ( version + Math.random() ).replace( /\D/g, "" ),
+
+ // Assume jQuery is ready without the ready module
+ isReady: true,
+
+ error: function( msg ) {
+ throw new Error( msg );
+ },
+
+ noop: function() {},
+
+ isPlainObject: function( obj ) {
+ var proto, Ctor;
+
+ // Detect obvious negatives
+ // Use toString instead of jQuery.type to catch host objects
+ if ( !obj || toString.call( obj ) !== "[object Object]" ) {
+ return false;
+ }
+
+ proto = getProto( obj );
+
+ // Objects with no prototype (e.g., `Object.create( null )`) are plain
+ if ( !proto ) {
+ return true;
+ }
+
+ // Objects with prototype are plain iff they were constructed by a global Object function
+ Ctor = hasOwn.call( proto, "constructor" ) && proto.constructor;
+ return typeof Ctor === "function" && fnToString.call( Ctor ) === ObjectFunctionString;
+ },
+
+ isEmptyObject: function( obj ) {
+ var name;
+
+ for ( name in obj ) {
+ return false;
+ }
+ return true;
+ },
+
+ // Evaluates a script in a provided context; falls back to the global one
+ // if not specified.
+ globalEval: function( code, options, doc ) {
+ DOMEval( code, { nonce: options && options.nonce }, doc );
+ },
+
+ each: function( obj, callback ) {
+ var length, i = 0;
+
+ if ( isArrayLike( obj ) ) {
+ length = obj.length;
+ for ( ; i < length; i++ ) {
+ if ( callback.call( obj[ i ], i, obj[ i ] ) === false ) {
+ break;
+ }
+ }
+ } else {
+ for ( i in obj ) {
+ if ( callback.call( obj[ i ], i, obj[ i ] ) === false ) {
+ break;
+ }
+ }
+ }
+
+ return obj;
+ },
+
+ // results is for internal usage only
+ makeArray: function( arr, results ) {
+ var ret = results || [];
+
+ if ( arr != null ) {
+ if ( isArrayLike( Object( arr ) ) ) {
+ jQuery.merge( ret,
+ typeof arr === "string" ?
+ [ arr ] : arr
+ );
+ } else {
+ push.call( ret, arr );
+ }
+ }
+
+ return ret;
+ },
+
+ inArray: function( elem, arr, i ) {
+ return arr == null ? -1 : indexOf.call( arr, elem, i );
+ },
+
+ // Support: Android <=4.0 only, PhantomJS 1 only
+ // push.apply(_, arraylike) throws on ancient WebKit
+ merge: function( first, second ) {
+ var len = +second.length,
+ j = 0,
+ i = first.length;
+
+ for ( ; j < len; j++ ) {
+ first[ i++ ] = second[ j ];
+ }
+
+ first.length = i;
+
+ return first;
+ },
+
+ grep: function( elems, callback, invert ) {
+ var callbackInverse,
+ matches = [],
+ i = 0,
+ length = elems.length,
+ callbackExpect = !invert;
+
+ // Go through the array, only saving the items
+ // that pass the validator function
+ for ( ; i < length; i++ ) {
+ callbackInverse = !callback( elems[ i ], i );
+ if ( callbackInverse !== callbackExpect ) {
+ matches.push( elems[ i ] );
+ }
+ }
+
+ return matches;
+ },
+
+ // arg is for internal usage only
+ map: function( elems, callback, arg ) {
+ var length, value,
+ i = 0,
+ ret = [];
+
+ // Go through the array, translating each of the items to their new values
+ if ( isArrayLike( elems ) ) {
+ length = elems.length;
+ for ( ; i < length; i++ ) {
+ value = callback( elems[ i ], i, arg );
+
+ if ( value != null ) {
+ ret.push( value );
+ }
+ }
+
+ // Go through every key on the object,
+ } else {
+ for ( i in elems ) {
+ value = callback( elems[ i ], i, arg );
+
+ if ( value != null ) {
+ ret.push( value );
+ }
+ }
+ }
+
+ // Flatten any nested arrays
+ return flat( ret );
+ },
+
+ // A global GUID counter for objects
+ guid: 1,
+
+ // jQuery.support is not used in Core but other projects attach their
+ // properties to it so it needs to exist.
+ support: support
+} );
+
+if ( typeof Symbol === "function" ) {
+ jQuery.fn[ Symbol.iterator ] = arr[ Symbol.iterator ];
+}
+
+// Populate the class2type map
+jQuery.each( "Boolean Number String Function Array Date RegExp Object Error Symbol".split( " " ),
+ function( _i, name ) {
+ class2type[ "[object " + name + "]" ] = name.toLowerCase();
+ } );
+
+function isArrayLike( obj ) {
+
+ // Support: real iOS 8.2 only (not reproducible in simulator)
+ // `in` check used to prevent JIT error (gh-2145)
+ // hasOwn isn't used here due to false negatives
+ // regarding Nodelist length in IE
+ var length = !!obj && "length" in obj && obj.length,
+ type = toType( obj );
+
+ if ( isFunction( obj ) || isWindow( obj ) ) {
+ return false;
+ }
+
+ return type === "array" || length === 0 ||
+ typeof length === "number" && length > 0 && ( length - 1 ) in obj;
+}
+var Sizzle =
+/*!
+ * Sizzle CSS Selector Engine v2.3.6
+ * https://sizzlejs.com/
+ *
+ * Copyright JS Foundation and other contributors
+ * Released under the MIT license
+ * https://js.foundation/
+ *
+ * Date: 2021-02-16
+ */
+( function( window ) {
+var i,
+ support,
+ Expr,
+ getText,
+ isXML,
+ tokenize,
+ compile,
+ select,
+ outermostContext,
+ sortInput,
+ hasDuplicate,
+
+ // Local document vars
+ setDocument,
+ document,
+ docElem,
+ documentIsHTML,
+ rbuggyQSA,
+ rbuggyMatches,
+ matches,
+ contains,
+
+ // Instance-specific data
+ expando = "sizzle" + 1 * new Date(),
+ preferredDoc = window.document,
+ dirruns = 0,
+ done = 0,
+ classCache = createCache(),
+ tokenCache = createCache(),
+ compilerCache = createCache(),
+ nonnativeSelectorCache = createCache(),
+ sortOrder = function( a, b ) {
+ if ( a === b ) {
+ hasDuplicate = true;
+ }
+ return 0;
+ },
+
+ // Instance methods
+ hasOwn = ( {} ).hasOwnProperty,
+ arr = [],
+ pop = arr.pop,
+ pushNative = arr.push,
+ push = arr.push,
+ slice = arr.slice,
+
+ // Use a stripped-down indexOf as it's faster than native
+ // https://jsperf.com/thor-indexof-vs-for/5
+ indexOf = function( list, elem ) {
+ var i = 0,
+ len = list.length;
+ for ( ; i < len; i++ ) {
+ if ( list[ i ] === elem ) {
+ return i;
+ }
+ }
+ return -1;
+ },
+
+ booleans = "checked|selected|async|autofocus|autoplay|controls|defer|disabled|hidden|" +
+ "ismap|loop|multiple|open|readonly|required|scoped",
+
+ // Regular expressions
+
+ // http://www.w3.org/TR/css3-selectors/#whitespace
+ whitespace = "[\\x20\\t\\r\\n\\f]",
+
+ // https://www.w3.org/TR/css-syntax-3/#ident-token-diagram
+ identifier = "(?:\\\\[\\da-fA-F]{1,6}" + whitespace +
+ "?|\\\\[^\\r\\n\\f]|[\\w-]|[^\0-\\x7f])+",
+
+ // Attribute selectors: http://www.w3.org/TR/selectors/#attribute-selectors
+ attributes = "\\[" + whitespace + "*(" + identifier + ")(?:" + whitespace +
+
+ // Operator (capture 2)
+ "*([*^$|!~]?=)" + whitespace +
+
+ // "Attribute values must be CSS identifiers [capture 5]
+ // or strings [capture 3 or capture 4]"
+ "*(?:'((?:\\\\.|[^\\\\'])*)'|\"((?:\\\\.|[^\\\\\"])*)\"|(" + identifier + "))|)" +
+ whitespace + "*\\]",
+
+ pseudos = ":(" + identifier + ")(?:\\((" +
+
+ // To reduce the number of selectors needing tokenize in the preFilter, prefer arguments:
+ // 1. quoted (capture 3; capture 4 or capture 5)
+ "('((?:\\\\.|[^\\\\'])*)'|\"((?:\\\\.|[^\\\\\"])*)\")|" +
+
+ // 2. simple (capture 6)
+ "((?:\\\\.|[^\\\\()[\\]]|" + attributes + ")*)|" +
+
+ // 3. anything else (capture 2)
+ ".*" +
+ ")\\)|)",
+
+ // Leading and non-escaped trailing whitespace, capturing some non-whitespace characters preceding the latter
+ rwhitespace = new RegExp( whitespace + "+", "g" ),
+ rtrim = new RegExp( "^" + whitespace + "+|((?:^|[^\\\\])(?:\\\\.)*)" +
+ whitespace + "+$", "g" ),
+
+ rcomma = new RegExp( "^" + whitespace + "*," + whitespace + "*" ),
+ rcombinators = new RegExp( "^" + whitespace + "*([>+~]|" + whitespace + ")" + whitespace +
+ "*" ),
+ rdescend = new RegExp( whitespace + "|>" ),
+
+ rpseudo = new RegExp( pseudos ),
+ ridentifier = new RegExp( "^" + identifier + "$" ),
+
+ matchExpr = {
+ "ID": new RegExp( "^#(" + identifier + ")" ),
+ "CLASS": new RegExp( "^\\.(" + identifier + ")" ),
+ "TAG": new RegExp( "^(" + identifier + "|[*])" ),
+ "ATTR": new RegExp( "^" + attributes ),
+ "PSEUDO": new RegExp( "^" + pseudos ),
+ "CHILD": new RegExp( "^:(only|first|last|nth|nth-last)-(child|of-type)(?:\\(" +
+ whitespace + "*(even|odd|(([+-]|)(\\d*)n|)" + whitespace + "*(?:([+-]|)" +
+ whitespace + "*(\\d+)|))" + whitespace + "*\\)|)", "i" ),
+ "bool": new RegExp( "^(?:" + booleans + ")$", "i" ),
+
+ // For use in libraries implementing .is()
+ // We use this for POS matching in `select`
+ "needsContext": new RegExp( "^" + whitespace +
+ "*[>+~]|:(even|odd|eq|gt|lt|nth|first|last)(?:\\(" + whitespace +
+ "*((?:-\\d)?\\d*)" + whitespace + "*\\)|)(?=[^-]|$)", "i" )
+ },
+
+ rhtml = /HTML$/i,
+ rinputs = /^(?:input|select|textarea|button)$/i,
+ rheader = /^h\d$/i,
+
+ rnative = /^[^{]+\{\s*\[native \w/,
+
+ // Easily-parseable/retrievable ID or TAG or CLASS selectors
+ rquickExpr = /^(?:#([\w-]+)|(\w+)|\.([\w-]+))$/,
+
+ rsibling = /[+~]/,
+
+ // CSS escapes
+ // http://www.w3.org/TR/CSS21/syndata.html#escaped-characters
+ runescape = new RegExp( "\\\\[\\da-fA-F]{1,6}" + whitespace + "?|\\\\([^\\r\\n\\f])", "g" ),
+ funescape = function( escape, nonHex ) {
+ var high = "0x" + escape.slice( 1 ) - 0x10000;
+
+ return nonHex ?
+
+ // Strip the backslash prefix from a non-hex escape sequence
+ nonHex :
+
+ // Replace a hexadecimal escape sequence with the encoded Unicode code point
+ // Support: IE <=11+
+ // For values outside the Basic Multilingual Plane (BMP), manually construct a
+ // surrogate pair
+ high < 0 ?
+ String.fromCharCode( high + 0x10000 ) :
+ String.fromCharCode( high >> 10 | 0xD800, high & 0x3FF | 0xDC00 );
+ },
+
+ // CSS string/identifier serialization
+ // https://drafts.csswg.org/cssom/#common-serializing-idioms
+ rcssescape = /([\0-\x1f\x7f]|^-?\d)|^-$|[^\0-\x1f\x7f-\uFFFF\w-]/g,
+ fcssescape = function( ch, asCodePoint ) {
+ if ( asCodePoint ) {
+
+ // U+0000 NULL becomes U+FFFD REPLACEMENT CHARACTER
+ if ( ch === "\0" ) {
+ return "\uFFFD";
+ }
+
+ // Control characters and (dependent upon position) numbers get escaped as code points
+ return ch.slice( 0, -1 ) + "\\" +
+ ch.charCodeAt( ch.length - 1 ).toString( 16 ) + " ";
+ }
+
+ // Other potentially-special ASCII characters get backslash-escaped
+ return "\\" + ch;
+ },
+
+ // Used for iframes
+ // See setDocument()
+ // Removing the function wrapper causes a "Permission Denied"
+ // error in IE
+ unloadHandler = function() {
+ setDocument();
+ },
+
+ inDisabledFieldset = addCombinator(
+ function( elem ) {
+ return elem.disabled === true && elem.nodeName.toLowerCase() === "fieldset";
+ },
+ { dir: "parentNode", next: "legend" }
+ );
+
+// Optimize for push.apply( _, NodeList )
+try {
+ push.apply(
+ ( arr = slice.call( preferredDoc.childNodes ) ),
+ preferredDoc.childNodes
+ );
+
+ // Support: Android<4.0
+ // Detect silently failing push.apply
+ // eslint-disable-next-line no-unused-expressions
+ arr[ preferredDoc.childNodes.length ].nodeType;
+} catch ( e ) {
+ push = { apply: arr.length ?
+
+ // Leverage slice if possible
+ function( target, els ) {
+ pushNative.apply( target, slice.call( els ) );
+ } :
+
+ // Support: IE<9
+ // Otherwise append directly
+ function( target, els ) {
+ var j = target.length,
+ i = 0;
+
+ // Can't trust NodeList.length
+ while ( ( target[ j++ ] = els[ i++ ] ) ) {}
+ target.length = j - 1;
+ }
+ };
+}
+
+function Sizzle( selector, context, results, seed ) {
+ var m, i, elem, nid, match, groups, newSelector,
+ newContext = context && context.ownerDocument,
+
+ // nodeType defaults to 9, since context defaults to document
+ nodeType = context ? context.nodeType : 9;
+
+ results = results || [];
+
+ // Return early from calls with invalid selector or context
+ if ( typeof selector !== "string" || !selector ||
+ nodeType !== 1 && nodeType !== 9 && nodeType !== 11 ) {
+
+ return results;
+ }
+
+ // Try to shortcut find operations (as opposed to filters) in HTML documents
+ if ( !seed ) {
+ setDocument( context );
+ context = context || document;
+
+ if ( documentIsHTML ) {
+
+ // If the selector is sufficiently simple, try using a "get*By*" DOM method
+ // (excepting DocumentFragment context, where the methods don't exist)
+ if ( nodeType !== 11 && ( match = rquickExpr.exec( selector ) ) ) {
+
+ // ID selector
+ if ( ( m = match[ 1 ] ) ) {
+
+ // Document context
+ if ( nodeType === 9 ) {
+ if ( ( elem = context.getElementById( m ) ) ) {
+
+ // Support: IE, Opera, Webkit
+ // TODO: identify versions
+ // getElementById can match elements by name instead of ID
+ if ( elem.id === m ) {
+ results.push( elem );
+ return results;
+ }
+ } else {
+ return results;
+ }
+
+ // Element context
+ } else {
+
+ // Support: IE, Opera, Webkit
+ // TODO: identify versions
+ // getElementById can match elements by name instead of ID
+ if ( newContext && ( elem = newContext.getElementById( m ) ) &&
+ contains( context, elem ) &&
+ elem.id === m ) {
+
+ results.push( elem );
+ return results;
+ }
+ }
+
+ // Type selector
+ } else if ( match[ 2 ] ) {
+ push.apply( results, context.getElementsByTagName( selector ) );
+ return results;
+
+ // Class selector
+ } else if ( ( m = match[ 3 ] ) && support.getElementsByClassName &&
+ context.getElementsByClassName ) {
+
+ push.apply( results, context.getElementsByClassName( m ) );
+ return results;
+ }
+ }
+
+ // Take advantage of querySelectorAll
+ if ( support.qsa &&
+ !nonnativeSelectorCache[ selector + " " ] &&
+ ( !rbuggyQSA || !rbuggyQSA.test( selector ) ) &&
+
+ // Support: IE 8 only
+ // Exclude object elements
+ ( nodeType !== 1 || context.nodeName.toLowerCase() !== "object" ) ) {
+
+ newSelector = selector;
+ newContext = context;
+
+ // qSA considers elements outside a scoping root when evaluating child or
+ // descendant combinators, which is not what we want.
+ // In such cases, we work around the behavior by prefixing every selector in the
+ // list with an ID selector referencing the scope context.
+ // The technique has to be used as well when a leading combinator is used
+ // as such selectors are not recognized by querySelectorAll.
+ // Thanks to Andrew Dupont for this technique.
+ if ( nodeType === 1 &&
+ ( rdescend.test( selector ) || rcombinators.test( selector ) ) ) {
+
+ // Expand context for sibling selectors
+ newContext = rsibling.test( selector ) && testContext( context.parentNode ) ||
+ context;
+
+ // We can use :scope instead of the ID hack if the browser
+ // supports it & if we're not changing the context.
+ if ( newContext !== context || !support.scope ) {
+
+ // Capture the context ID, setting it first if necessary
+ if ( ( nid = context.getAttribute( "id" ) ) ) {
+ nid = nid.replace( rcssescape, fcssescape );
+ } else {
+ context.setAttribute( "id", ( nid = expando ) );
+ }
+ }
+
+ // Prefix every selector in the list
+ groups = tokenize( selector );
+ i = groups.length;
+ while ( i-- ) {
+ groups[ i ] = ( nid ? "#" + nid : ":scope" ) + " " +
+ toSelector( groups[ i ] );
+ }
+ newSelector = groups.join( "," );
+ }
+
+ try {
+ push.apply( results,
+ newContext.querySelectorAll( newSelector )
+ );
+ return results;
+ } catch ( qsaError ) {
+ nonnativeSelectorCache( selector, true );
+ } finally {
+ if ( nid === expando ) {
+ context.removeAttribute( "id" );
+ }
+ }
+ }
+ }
+ }
+
+ // All others
+ return select( selector.replace( rtrim, "$1" ), context, results, seed );
+}
+
+/**
+ * Create key-value caches of limited size
+ * @returns {function(string, object)} Returns the Object data after storing it on itself with
+ * property name the (space-suffixed) string and (if the cache is larger than Expr.cacheLength)
+ * deleting the oldest entry
+ */
+function createCache() {
+ var keys = [];
+
+ function cache( key, value ) {
+
+ // Use (key + " ") to avoid collision with native prototype properties (see Issue #157)
+ if ( keys.push( key + " " ) > Expr.cacheLength ) {
+
+ // Only keep the most recent entries
+ delete cache[ keys.shift() ];
+ }
+ return ( cache[ key + " " ] = value );
+ }
+ return cache;
+}
+
+/**
+ * Mark a function for special use by Sizzle
+ * @param {Function} fn The function to mark
+ */
+function markFunction( fn ) {
+ fn[ expando ] = true;
+ return fn;
+}
+
+/**
+ * Support testing using an element
+ * @param {Function} fn Passed the created element and returns a boolean result
+ */
+function assert( fn ) {
+ var el = document.createElement( "fieldset" );
+
+ try {
+ return !!fn( el );
+ } catch ( e ) {
+ return false;
+ } finally {
+
+ // Remove from its parent by default
+ if ( el.parentNode ) {
+ el.parentNode.removeChild( el );
+ }
+
+ // release memory in IE
+ el = null;
+ }
+}
+
+/**
+ * Adds the same handler for all of the specified attrs
+ * @param {String} attrs Pipe-separated list of attributes
+ * @param {Function} handler The method that will be applied
+ */
+function addHandle( attrs, handler ) {
+ var arr = attrs.split( "|" ),
+ i = arr.length;
+
+ while ( i-- ) {
+ Expr.attrHandle[ arr[ i ] ] = handler;
+ }
+}
+
+/**
+ * Checks document order of two siblings
+ * @param {Element} a
+ * @param {Element} b
+ * @returns {Number} Returns less than 0 if a precedes b, greater than 0 if a follows b
+ */
+function siblingCheck( a, b ) {
+ var cur = b && a,
+ diff = cur && a.nodeType === 1 && b.nodeType === 1 &&
+ a.sourceIndex - b.sourceIndex;
+
+ // Use IE sourceIndex if available on both nodes
+ if ( diff ) {
+ return diff;
+ }
+
+ // Check if b follows a
+ if ( cur ) {
+ while ( ( cur = cur.nextSibling ) ) {
+ if ( cur === b ) {
+ return -1;
+ }
+ }
+ }
+
+ return a ? 1 : -1;
+}
+
+/**
+ * Returns a function to use in pseudos for input types
+ * @param {String} type
+ */
+function createInputPseudo( type ) {
+ return function( elem ) {
+ var name = elem.nodeName.toLowerCase();
+ return name === "input" && elem.type === type;
+ };
+}
+
+/**
+ * Returns a function to use in pseudos for buttons
+ * @param {String} type
+ */
+function createButtonPseudo( type ) {
+ return function( elem ) {
+ var name = elem.nodeName.toLowerCase();
+ return ( name === "input" || name === "button" ) && elem.type === type;
+ };
+}
+
+/**
+ * Returns a function to use in pseudos for :enabled/:disabled
+ * @param {Boolean} disabled true for :disabled; false for :enabled
+ */
+function createDisabledPseudo( disabled ) {
+
+ // Known :disabled false positives: fieldset[disabled] > legend:nth-of-type(n+2) :can-disable
+ return function( elem ) {
+
+ // Only certain elements can match :enabled or :disabled
+ // https://html.spec.whatwg.org/multipage/scripting.html#selector-enabled
+ // https://html.spec.whatwg.org/multipage/scripting.html#selector-disabled
+ if ( "form" in elem ) {
+
+ // Check for inherited disabledness on relevant non-disabled elements:
+ // * listed form-associated elements in a disabled fieldset
+ // https://html.spec.whatwg.org/multipage/forms.html#category-listed
+ // https://html.spec.whatwg.org/multipage/forms.html#concept-fe-disabled
+ // * option elements in a disabled optgroup
+ // https://html.spec.whatwg.org/multipage/forms.html#concept-option-disabled
+ // All such elements have a "form" property.
+ if ( elem.parentNode && elem.disabled === false ) {
+
+ // Option elements defer to a parent optgroup if present
+ if ( "label" in elem ) {
+ if ( "label" in elem.parentNode ) {
+ return elem.parentNode.disabled === disabled;
+ } else {
+ return elem.disabled === disabled;
+ }
+ }
+
+ // Support: IE 6 - 11
+ // Use the isDisabled shortcut property to check for disabled fieldset ancestors
+ return elem.isDisabled === disabled ||
+
+ // Where there is no isDisabled, check manually
+ /* jshint -W018 */
+ elem.isDisabled !== !disabled &&
+ inDisabledFieldset( elem ) === disabled;
+ }
+
+ return elem.disabled === disabled;
+
+ // Try to winnow out elements that can't be disabled before trusting the disabled property.
+ // Some victims get caught in our net (label, legend, menu, track), but it shouldn't
+ // even exist on them, let alone have a boolean value.
+ } else if ( "label" in elem ) {
+ return elem.disabled === disabled;
+ }
+
+ // Remaining elements are neither :enabled nor :disabled
+ return false;
+ };
+}
+
+/**
+ * Returns a function to use in pseudos for positionals
+ * @param {Function} fn
+ */
+function createPositionalPseudo( fn ) {
+ return markFunction( function( argument ) {
+ argument = +argument;
+ return markFunction( function( seed, matches ) {
+ var j,
+ matchIndexes = fn( [], seed.length, argument ),
+ i = matchIndexes.length;
+
+ // Match elements found at the specified indexes
+ while ( i-- ) {
+ if ( seed[ ( j = matchIndexes[ i ] ) ] ) {
+ seed[ j ] = !( matches[ j ] = seed[ j ] );
+ }
+ }
+ } );
+ } );
+}
+
+/**
+ * Checks a node for validity as a Sizzle context
+ * @param {Element|Object=} context
+ * @returns {Element|Object|Boolean} The input node if acceptable, otherwise a falsy value
+ */
+function testContext( context ) {
+ return context && typeof context.getElementsByTagName !== "undefined" && context;
+}
+
+// Expose support vars for convenience
+support = Sizzle.support = {};
+
+/**
+ * Detects XML nodes
+ * @param {Element|Object} elem An element or a document
+ * @returns {Boolean} True iff elem is a non-HTML XML node
+ */
+isXML = Sizzle.isXML = function( elem ) {
+ var namespace = elem && elem.namespaceURI,
+ docElem = elem && ( elem.ownerDocument || elem ).documentElement;
+
+ // Support: IE <=8
+ // Assume HTML when documentElement doesn't yet exist, such as inside loading iframes
+ // https://bugs.jquery.com/ticket/4833
+ return !rhtml.test( namespace || docElem && docElem.nodeName || "HTML" );
+};
+
+/**
+ * Sets document-related variables once based on the current document
+ * @param {Element|Object} [doc] An element or document object to use to set the document
+ * @returns {Object} Returns the current document
+ */
+setDocument = Sizzle.setDocument = function( node ) {
+ var hasCompare, subWindow,
+ doc = node ? node.ownerDocument || node : preferredDoc;
+
+ // Return early if doc is invalid or already selected
+ // Support: IE 11+, Edge 17 - 18+
+ // IE/Edge sometimes throw a "Permission denied" error when strict-comparing
+ // two documents; shallow comparisons work.
+ // eslint-disable-next-line eqeqeq
+ if ( doc == document || doc.nodeType !== 9 || !doc.documentElement ) {
+ return document;
+ }
+
+ // Update global variables
+ document = doc;
+ docElem = document.documentElement;
+ documentIsHTML = !isXML( document );
+
+ // Support: IE 9 - 11+, Edge 12 - 18+
+ // Accessing iframe documents after unload throws "permission denied" errors (jQuery #13936)
+ // Support: IE 11+, Edge 17 - 18+
+ // IE/Edge sometimes throw a "Permission denied" error when strict-comparing
+ // two documents; shallow comparisons work.
+ // eslint-disable-next-line eqeqeq
+ if ( preferredDoc != document &&
+ ( subWindow = document.defaultView ) && subWindow.top !== subWindow ) {
+
+ // Support: IE 11, Edge
+ if ( subWindow.addEventListener ) {
+ subWindow.addEventListener( "unload", unloadHandler, false );
+
+ // Support: IE 9 - 10 only
+ } else if ( subWindow.attachEvent ) {
+ subWindow.attachEvent( "onunload", unloadHandler );
+ }
+ }
+
+ // Support: IE 8 - 11+, Edge 12 - 18+, Chrome <=16 - 25 only, Firefox <=3.6 - 31 only,
+ // Safari 4 - 5 only, Opera <=11.6 - 12.x only
+ // IE/Edge & older browsers don't support the :scope pseudo-class.
+ // Support: Safari 6.0 only
+ // Safari 6.0 supports :scope but it's an alias of :root there.
+ support.scope = assert( function( el ) {
+ docElem.appendChild( el ).appendChild( document.createElement( "div" ) );
+ return typeof el.querySelectorAll !== "undefined" &&
+ !el.querySelectorAll( ":scope fieldset div" ).length;
+ } );
+
+ /* Attributes
+ ---------------------------------------------------------------------- */
+
+ // Support: IE<8
+ // Verify that getAttribute really returns attributes and not properties
+ // (excepting IE8 booleans)
+ support.attributes = assert( function( el ) {
+ el.className = "i";
+ return !el.getAttribute( "className" );
+ } );
+
+ /* getElement(s)By*
+ ---------------------------------------------------------------------- */
+
+ // Check if getElementsByTagName("*") returns only elements
+ support.getElementsByTagName = assert( function( el ) {
+ el.appendChild( document.createComment( "" ) );
+ return !el.getElementsByTagName( "*" ).length;
+ } );
+
+ // Support: IE<9
+ support.getElementsByClassName = rnative.test( document.getElementsByClassName );
+
+ // Support: IE<10
+ // Check if getElementById returns elements by name
+ // The broken getElementById methods don't pick up programmatically-set names,
+ // so use a roundabout getElementsByName test
+ support.getById = assert( function( el ) {
+ docElem.appendChild( el ).id = expando;
+ return !document.getElementsByName || !document.getElementsByName( expando ).length;
+ } );
+
+ // ID filter and find
+ if ( support.getById ) {
+ Expr.filter[ "ID" ] = function( id ) {
+ var attrId = id.replace( runescape, funescape );
+ return function( elem ) {
+ return elem.getAttribute( "id" ) === attrId;
+ };
+ };
+ Expr.find[ "ID" ] = function( id, context ) {
+ if ( typeof context.getElementById !== "undefined" && documentIsHTML ) {
+ var elem = context.getElementById( id );
+ return elem ? [ elem ] : [];
+ }
+ };
+ } else {
+ Expr.filter[ "ID" ] = function( id ) {
+ var attrId = id.replace( runescape, funescape );
+ return function( elem ) {
+ var node = typeof elem.getAttributeNode !== "undefined" &&
+ elem.getAttributeNode( "id" );
+ return node && node.value === attrId;
+ };
+ };
+
+ // Support: IE 6 - 7 only
+ // getElementById is not reliable as a find shortcut
+ Expr.find[ "ID" ] = function( id, context ) {
+ if ( typeof context.getElementById !== "undefined" && documentIsHTML ) {
+ var node, i, elems,
+ elem = context.getElementById( id );
+
+ if ( elem ) {
+
+ // Verify the id attribute
+ node = elem.getAttributeNode( "id" );
+ if ( node && node.value === id ) {
+ return [ elem ];
+ }
+
+ // Fall back on getElementsByName
+ elems = context.getElementsByName( id );
+ i = 0;
+ while ( ( elem = elems[ i++ ] ) ) {
+ node = elem.getAttributeNode( "id" );
+ if ( node && node.value === id ) {
+ return [ elem ];
+ }
+ }
+ }
+
+ return [];
+ }
+ };
+ }
+
+ // Tag
+ Expr.find[ "TAG" ] = support.getElementsByTagName ?
+ function( tag, context ) {
+ if ( typeof context.getElementsByTagName !== "undefined" ) {
+ return context.getElementsByTagName( tag );
+
+ // DocumentFragment nodes don't have gEBTN
+ } else if ( support.qsa ) {
+ return context.querySelectorAll( tag );
+ }
+ } :
+
+ function( tag, context ) {
+ var elem,
+ tmp = [],
+ i = 0,
+
+ // By happy coincidence, a (broken) gEBTN appears on DocumentFragment nodes too
+ results = context.getElementsByTagName( tag );
+
+ // Filter out possible comments
+ if ( tag === "*" ) {
+ while ( ( elem = results[ i++ ] ) ) {
+ if ( elem.nodeType === 1 ) {
+ tmp.push( elem );
+ }
+ }
+
+ return tmp;
+ }
+ return results;
+ };
+
+ // Class
+ Expr.find[ "CLASS" ] = support.getElementsByClassName && function( className, context ) {
+ if ( typeof context.getElementsByClassName !== "undefined" && documentIsHTML ) {
+ return context.getElementsByClassName( className );
+ }
+ };
+
+ /* QSA/matchesSelector
+ ---------------------------------------------------------------------- */
+
+ // QSA and matchesSelector support
+
+ // matchesSelector(:active) reports false when true (IE9/Opera 11.5)
+ rbuggyMatches = [];
+
+ // qSa(:focus) reports false when true (Chrome 21)
+ // We allow this because of a bug in IE8/9 that throws an error
+ // whenever `document.activeElement` is accessed on an iframe
+ // So, we allow :focus to pass through QSA all the time to avoid the IE error
+ // See https://bugs.jquery.com/ticket/13378
+ rbuggyQSA = [];
+
+ if ( ( support.qsa = rnative.test( document.querySelectorAll ) ) ) {
+
+ // Build QSA regex
+ // Regex strategy adopted from Diego Perini
+ assert( function( el ) {
+
+ var input;
+
+ // Select is set to empty string on purpose
+ // This is to test IE's treatment of not explicitly
+ // setting a boolean content attribute,
+ // since its presence should be enough
+ // https://bugs.jquery.com/ticket/12359
+ docElem.appendChild( el ).innerHTML = " " +
+ "" +
+ " ";
+
+ // Support: IE8, Opera 11-12.16
+ // Nothing should be selected when empty strings follow ^= or $= or *=
+ // The test attribute must be unknown in Opera but "safe" for WinRT
+ // https://msdn.microsoft.com/en-us/library/ie/hh465388.aspx#attribute_section
+ if ( el.querySelectorAll( "[msallowcapture^='']" ).length ) {
+ rbuggyQSA.push( "[*^$]=" + whitespace + "*(?:''|\"\")" );
+ }
+
+ // Support: IE8
+ // Boolean attributes and "value" are not treated correctly
+ if ( !el.querySelectorAll( "[selected]" ).length ) {
+ rbuggyQSA.push( "\\[" + whitespace + "*(?:value|" + booleans + ")" );
+ }
+
+ // Support: Chrome<29, Android<4.4, Safari<7.0+, iOS<7.0+, PhantomJS<1.9.8+
+ if ( !el.querySelectorAll( "[id~=" + expando + "-]" ).length ) {
+ rbuggyQSA.push( "~=" );
+ }
+
+ // Support: IE 11+, Edge 15 - 18+
+ // IE 11/Edge don't find elements on a `[name='']` query in some cases.
+ // Adding a temporary attribute to the document before the selection works
+ // around the issue.
+ // Interestingly, IE 10 & older don't seem to have the issue.
+ input = document.createElement( "input" );
+ input.setAttribute( "name", "" );
+ el.appendChild( input );
+ if ( !el.querySelectorAll( "[name='']" ).length ) {
+ rbuggyQSA.push( "\\[" + whitespace + "*name" + whitespace + "*=" +
+ whitespace + "*(?:''|\"\")" );
+ }
+
+ // Webkit/Opera - :checked should return selected option elements
+ // http://www.w3.org/TR/2011/REC-css3-selectors-20110929/#checked
+ // IE8 throws error here and will not see later tests
+ if ( !el.querySelectorAll( ":checked" ).length ) {
+ rbuggyQSA.push( ":checked" );
+ }
+
+ // Support: Safari 8+, iOS 8+
+ // https://bugs.webkit.org/show_bug.cgi?id=136851
+ // In-page `selector#id sibling-combinator selector` fails
+ if ( !el.querySelectorAll( "a#" + expando + "+*" ).length ) {
+ rbuggyQSA.push( ".#.+[+~]" );
+ }
+
+ // Support: Firefox <=3.6 - 5 only
+ // Old Firefox doesn't throw on a badly-escaped identifier.
+ el.querySelectorAll( "\\\f" );
+ rbuggyQSA.push( "[\\r\\n\\f]" );
+ } );
+
+ assert( function( el ) {
+ el.innerHTML = " " +
+ " ";
+
+ // Support: Windows 8 Native Apps
+ // The type and name attributes are restricted during .innerHTML assignment
+ var input = document.createElement( "input" );
+ input.setAttribute( "type", "hidden" );
+ el.appendChild( input ).setAttribute( "name", "D" );
+
+ // Support: IE8
+ // Enforce case-sensitivity of name attribute
+ if ( el.querySelectorAll( "[name=d]" ).length ) {
+ rbuggyQSA.push( "name" + whitespace + "*[*^$|!~]?=" );
+ }
+
+ // FF 3.5 - :enabled/:disabled and hidden elements (hidden elements are still enabled)
+ // IE8 throws error here and will not see later tests
+ if ( el.querySelectorAll( ":enabled" ).length !== 2 ) {
+ rbuggyQSA.push( ":enabled", ":disabled" );
+ }
+
+ // Support: IE9-11+
+ // IE's :disabled selector does not pick up the children of disabled fieldsets
+ docElem.appendChild( el ).disabled = true;
+ if ( el.querySelectorAll( ":disabled" ).length !== 2 ) {
+ rbuggyQSA.push( ":enabled", ":disabled" );
+ }
+
+ // Support: Opera 10 - 11 only
+ // Opera 10-11 does not throw on post-comma invalid pseudos
+ el.querySelectorAll( "*,:x" );
+ rbuggyQSA.push( ",.*:" );
+ } );
+ }
+
+ if ( ( support.matchesSelector = rnative.test( ( matches = docElem.matches ||
+ docElem.webkitMatchesSelector ||
+ docElem.mozMatchesSelector ||
+ docElem.oMatchesSelector ||
+ docElem.msMatchesSelector ) ) ) ) {
+
+ assert( function( el ) {
+
+ // Check to see if it's possible to do matchesSelector
+ // on a disconnected node (IE 9)
+ support.disconnectedMatch = matches.call( el, "*" );
+
+ // This should fail with an exception
+ // Gecko does not error, returns false instead
+ matches.call( el, "[s!='']:x" );
+ rbuggyMatches.push( "!=", pseudos );
+ } );
+ }
+
+ rbuggyQSA = rbuggyQSA.length && new RegExp( rbuggyQSA.join( "|" ) );
+ rbuggyMatches = rbuggyMatches.length && new RegExp( rbuggyMatches.join( "|" ) );
+
+ /* Contains
+ ---------------------------------------------------------------------- */
+ hasCompare = rnative.test( docElem.compareDocumentPosition );
+
+ // Element contains another
+ // Purposefully self-exclusive
+ // As in, an element does not contain itself
+ contains = hasCompare || rnative.test( docElem.contains ) ?
+ function( a, b ) {
+ var adown = a.nodeType === 9 ? a.documentElement : a,
+ bup = b && b.parentNode;
+ return a === bup || !!( bup && bup.nodeType === 1 && (
+ adown.contains ?
+ adown.contains( bup ) :
+ a.compareDocumentPosition && a.compareDocumentPosition( bup ) & 16
+ ) );
+ } :
+ function( a, b ) {
+ if ( b ) {
+ while ( ( b = b.parentNode ) ) {
+ if ( b === a ) {
+ return true;
+ }
+ }
+ }
+ return false;
+ };
+
+ /* Sorting
+ ---------------------------------------------------------------------- */
+
+ // Document order sorting
+ sortOrder = hasCompare ?
+ function( a, b ) {
+
+ // Flag for duplicate removal
+ if ( a === b ) {
+ hasDuplicate = true;
+ return 0;
+ }
+
+ // Sort on method existence if only one input has compareDocumentPosition
+ var compare = !a.compareDocumentPosition - !b.compareDocumentPosition;
+ if ( compare ) {
+ return compare;
+ }
+
+ // Calculate position if both inputs belong to the same document
+ // Support: IE 11+, Edge 17 - 18+
+ // IE/Edge sometimes throw a "Permission denied" error when strict-comparing
+ // two documents; shallow comparisons work.
+ // eslint-disable-next-line eqeqeq
+ compare = ( a.ownerDocument || a ) == ( b.ownerDocument || b ) ?
+ a.compareDocumentPosition( b ) :
+
+ // Otherwise we know they are disconnected
+ 1;
+
+ // Disconnected nodes
+ if ( compare & 1 ||
+ ( !support.sortDetached && b.compareDocumentPosition( a ) === compare ) ) {
+
+ // Choose the first element that is related to our preferred document
+ // Support: IE 11+, Edge 17 - 18+
+ // IE/Edge sometimes throw a "Permission denied" error when strict-comparing
+ // two documents; shallow comparisons work.
+ // eslint-disable-next-line eqeqeq
+ if ( a == document || a.ownerDocument == preferredDoc &&
+ contains( preferredDoc, a ) ) {
+ return -1;
+ }
+
+ // Support: IE 11+, Edge 17 - 18+
+ // IE/Edge sometimes throw a "Permission denied" error when strict-comparing
+ // two documents; shallow comparisons work.
+ // eslint-disable-next-line eqeqeq
+ if ( b == document || b.ownerDocument == preferredDoc &&
+ contains( preferredDoc, b ) ) {
+ return 1;
+ }
+
+ // Maintain original order
+ return sortInput ?
+ ( indexOf( sortInput, a ) - indexOf( sortInput, b ) ) :
+ 0;
+ }
+
+ return compare & 4 ? -1 : 1;
+ } :
+ function( a, b ) {
+
+ // Exit early if the nodes are identical
+ if ( a === b ) {
+ hasDuplicate = true;
+ return 0;
+ }
+
+ var cur,
+ i = 0,
+ aup = a.parentNode,
+ bup = b.parentNode,
+ ap = [ a ],
+ bp = [ b ];
+
+ // Parentless nodes are either documents or disconnected
+ if ( !aup || !bup ) {
+
+ // Support: IE 11+, Edge 17 - 18+
+ // IE/Edge sometimes throw a "Permission denied" error when strict-comparing
+ // two documents; shallow comparisons work.
+ /* eslint-disable eqeqeq */
+ return a == document ? -1 :
+ b == document ? 1 :
+ /* eslint-enable eqeqeq */
+ aup ? -1 :
+ bup ? 1 :
+ sortInput ?
+ ( indexOf( sortInput, a ) - indexOf( sortInput, b ) ) :
+ 0;
+
+ // If the nodes are siblings, we can do a quick check
+ } else if ( aup === bup ) {
+ return siblingCheck( a, b );
+ }
+
+ // Otherwise we need full lists of their ancestors for comparison
+ cur = a;
+ while ( ( cur = cur.parentNode ) ) {
+ ap.unshift( cur );
+ }
+ cur = b;
+ while ( ( cur = cur.parentNode ) ) {
+ bp.unshift( cur );
+ }
+
+ // Walk down the tree looking for a discrepancy
+ while ( ap[ i ] === bp[ i ] ) {
+ i++;
+ }
+
+ return i ?
+
+ // Do a sibling check if the nodes have a common ancestor
+ siblingCheck( ap[ i ], bp[ i ] ) :
+
+ // Otherwise nodes in our document sort first
+ // Support: IE 11+, Edge 17 - 18+
+ // IE/Edge sometimes throw a "Permission denied" error when strict-comparing
+ // two documents; shallow comparisons work.
+ /* eslint-disable eqeqeq */
+ ap[ i ] == preferredDoc ? -1 :
+ bp[ i ] == preferredDoc ? 1 :
+ /* eslint-enable eqeqeq */
+ 0;
+ };
+
+ return document;
+};
+
+Sizzle.matches = function( expr, elements ) {
+ return Sizzle( expr, null, null, elements );
+};
+
+Sizzle.matchesSelector = function( elem, expr ) {
+ setDocument( elem );
+
+ if ( support.matchesSelector && documentIsHTML &&
+ !nonnativeSelectorCache[ expr + " " ] &&
+ ( !rbuggyMatches || !rbuggyMatches.test( expr ) ) &&
+ ( !rbuggyQSA || !rbuggyQSA.test( expr ) ) ) {
+
+ try {
+ var ret = matches.call( elem, expr );
+
+ // IE 9's matchesSelector returns false on disconnected nodes
+ if ( ret || support.disconnectedMatch ||
+
+ // As well, disconnected nodes are said to be in a document
+ // fragment in IE 9
+ elem.document && elem.document.nodeType !== 11 ) {
+ return ret;
+ }
+ } catch ( e ) {
+ nonnativeSelectorCache( expr, true );
+ }
+ }
+
+ return Sizzle( expr, document, null, [ elem ] ).length > 0;
+};
+
+Sizzle.contains = function( context, elem ) {
+
+ // Set document vars if needed
+ // Support: IE 11+, Edge 17 - 18+
+ // IE/Edge sometimes throw a "Permission denied" error when strict-comparing
+ // two documents; shallow comparisons work.
+ // eslint-disable-next-line eqeqeq
+ if ( ( context.ownerDocument || context ) != document ) {
+ setDocument( context );
+ }
+ return contains( context, elem );
+};
+
+Sizzle.attr = function( elem, name ) {
+
+ // Set document vars if needed
+ // Support: IE 11+, Edge 17 - 18+
+ // IE/Edge sometimes throw a "Permission denied" error when strict-comparing
+ // two documents; shallow comparisons work.
+ // eslint-disable-next-line eqeqeq
+ if ( ( elem.ownerDocument || elem ) != document ) {
+ setDocument( elem );
+ }
+
+ var fn = Expr.attrHandle[ name.toLowerCase() ],
+
+ // Don't get fooled by Object.prototype properties (jQuery #13807)
+ val = fn && hasOwn.call( Expr.attrHandle, name.toLowerCase() ) ?
+ fn( elem, name, !documentIsHTML ) :
+ undefined;
+
+ return val !== undefined ?
+ val :
+ support.attributes || !documentIsHTML ?
+ elem.getAttribute( name ) :
+ ( val = elem.getAttributeNode( name ) ) && val.specified ?
+ val.value :
+ null;
+};
+
+Sizzle.escape = function( sel ) {
+ return ( sel + "" ).replace( rcssescape, fcssescape );
+};
+
+Sizzle.error = function( msg ) {
+ throw new Error( "Syntax error, unrecognized expression: " + msg );
+};
+
+/**
+ * Document sorting and removing duplicates
+ * @param {ArrayLike} results
+ */
+Sizzle.uniqueSort = function( results ) {
+ var elem,
+ duplicates = [],
+ j = 0,
+ i = 0;
+
+ // Unless we *know* we can detect duplicates, assume their presence
+ hasDuplicate = !support.detectDuplicates;
+ sortInput = !support.sortStable && results.slice( 0 );
+ results.sort( sortOrder );
+
+ if ( hasDuplicate ) {
+ while ( ( elem = results[ i++ ] ) ) {
+ if ( elem === results[ i ] ) {
+ j = duplicates.push( i );
+ }
+ }
+ while ( j-- ) {
+ results.splice( duplicates[ j ], 1 );
+ }
+ }
+
+ // Clear input after sorting to release objects
+ // See https://github.com/jquery/sizzle/pull/225
+ sortInput = null;
+
+ return results;
+};
+
+/**
+ * Utility function for retrieving the text value of an array of DOM nodes
+ * @param {Array|Element} elem
+ */
+getText = Sizzle.getText = function( elem ) {
+ var node,
+ ret = "",
+ i = 0,
+ nodeType = elem.nodeType;
+
+ if ( !nodeType ) {
+
+ // If no nodeType, this is expected to be an array
+ while ( ( node = elem[ i++ ] ) ) {
+
+ // Do not traverse comment nodes
+ ret += getText( node );
+ }
+ } else if ( nodeType === 1 || nodeType === 9 || nodeType === 11 ) {
+
+ // Use textContent for elements
+ // innerText usage removed for consistency of new lines (jQuery #11153)
+ if ( typeof elem.textContent === "string" ) {
+ return elem.textContent;
+ } else {
+
+ // Traverse its children
+ for ( elem = elem.firstChild; elem; elem = elem.nextSibling ) {
+ ret += getText( elem );
+ }
+ }
+ } else if ( nodeType === 3 || nodeType === 4 ) {
+ return elem.nodeValue;
+ }
+
+ // Do not include comment or processing instruction nodes
+
+ return ret;
+};
+
+Expr = Sizzle.selectors = {
+
+ // Can be adjusted by the user
+ cacheLength: 50,
+
+ createPseudo: markFunction,
+
+ match: matchExpr,
+
+ attrHandle: {},
+
+ find: {},
+
+ relative: {
+ ">": { dir: "parentNode", first: true },
+ " ": { dir: "parentNode" },
+ "+": { dir: "previousSibling", first: true },
+ "~": { dir: "previousSibling" }
+ },
+
+ preFilter: {
+ "ATTR": function( match ) {
+ match[ 1 ] = match[ 1 ].replace( runescape, funescape );
+
+ // Move the given value to match[3] whether quoted or unquoted
+ match[ 3 ] = ( match[ 3 ] || match[ 4 ] ||
+ match[ 5 ] || "" ).replace( runescape, funescape );
+
+ if ( match[ 2 ] === "~=" ) {
+ match[ 3 ] = " " + match[ 3 ] + " ";
+ }
+
+ return match.slice( 0, 4 );
+ },
+
+ "CHILD": function( match ) {
+
+ /* matches from matchExpr["CHILD"]
+ 1 type (only|nth|...)
+ 2 what (child|of-type)
+ 3 argument (even|odd|\d*|\d*n([+-]\d+)?|...)
+ 4 xn-component of xn+y argument ([+-]?\d*n|)
+ 5 sign of xn-component
+ 6 x of xn-component
+ 7 sign of y-component
+ 8 y of y-component
+ */
+ match[ 1 ] = match[ 1 ].toLowerCase();
+
+ if ( match[ 1 ].slice( 0, 3 ) === "nth" ) {
+
+ // nth-* requires argument
+ if ( !match[ 3 ] ) {
+ Sizzle.error( match[ 0 ] );
+ }
+
+ // numeric x and y parameters for Expr.filter.CHILD
+ // remember that false/true cast respectively to 0/1
+ match[ 4 ] = +( match[ 4 ] ?
+ match[ 5 ] + ( match[ 6 ] || 1 ) :
+ 2 * ( match[ 3 ] === "even" || match[ 3 ] === "odd" ) );
+ match[ 5 ] = +( ( match[ 7 ] + match[ 8 ] ) || match[ 3 ] === "odd" );
+
+ // other types prohibit arguments
+ } else if ( match[ 3 ] ) {
+ Sizzle.error( match[ 0 ] );
+ }
+
+ return match;
+ },
+
+ "PSEUDO": function( match ) {
+ var excess,
+ unquoted = !match[ 6 ] && match[ 2 ];
+
+ if ( matchExpr[ "CHILD" ].test( match[ 0 ] ) ) {
+ return null;
+ }
+
+ // Accept quoted arguments as-is
+ if ( match[ 3 ] ) {
+ match[ 2 ] = match[ 4 ] || match[ 5 ] || "";
+
+ // Strip excess characters from unquoted arguments
+ } else if ( unquoted && rpseudo.test( unquoted ) &&
+
+ // Get excess from tokenize (recursively)
+ ( excess = tokenize( unquoted, true ) ) &&
+
+ // advance to the next closing parenthesis
+ ( excess = unquoted.indexOf( ")", unquoted.length - excess ) - unquoted.length ) ) {
+
+ // excess is a negative index
+ match[ 0 ] = match[ 0 ].slice( 0, excess );
+ match[ 2 ] = unquoted.slice( 0, excess );
+ }
+
+ // Return only captures needed by the pseudo filter method (type and argument)
+ return match.slice( 0, 3 );
+ }
+ },
+
+ filter: {
+
+ "TAG": function( nodeNameSelector ) {
+ var nodeName = nodeNameSelector.replace( runescape, funescape ).toLowerCase();
+ return nodeNameSelector === "*" ?
+ function() {
+ return true;
+ } :
+ function( elem ) {
+ return elem.nodeName && elem.nodeName.toLowerCase() === nodeName;
+ };
+ },
+
+ "CLASS": function( className ) {
+ var pattern = classCache[ className + " " ];
+
+ return pattern ||
+ ( pattern = new RegExp( "(^|" + whitespace +
+ ")" + className + "(" + whitespace + "|$)" ) ) && classCache(
+ className, function( elem ) {
+ return pattern.test(
+ typeof elem.className === "string" && elem.className ||
+ typeof elem.getAttribute !== "undefined" &&
+ elem.getAttribute( "class" ) ||
+ ""
+ );
+ } );
+ },
+
+ "ATTR": function( name, operator, check ) {
+ return function( elem ) {
+ var result = Sizzle.attr( elem, name );
+
+ if ( result == null ) {
+ return operator === "!=";
+ }
+ if ( !operator ) {
+ return true;
+ }
+
+ result += "";
+
+ /* eslint-disable max-len */
+
+ return operator === "=" ? result === check :
+ operator === "!=" ? result !== check :
+ operator === "^=" ? check && result.indexOf( check ) === 0 :
+ operator === "*=" ? check && result.indexOf( check ) > -1 :
+ operator === "$=" ? check && result.slice( -check.length ) === check :
+ operator === "~=" ? ( " " + result.replace( rwhitespace, " " ) + " " ).indexOf( check ) > -1 :
+ operator === "|=" ? result === check || result.slice( 0, check.length + 1 ) === check + "-" :
+ false;
+ /* eslint-enable max-len */
+
+ };
+ },
+
+ "CHILD": function( type, what, _argument, first, last ) {
+ var simple = type.slice( 0, 3 ) !== "nth",
+ forward = type.slice( -4 ) !== "last",
+ ofType = what === "of-type";
+
+ return first === 1 && last === 0 ?
+
+ // Shortcut for :nth-*(n)
+ function( elem ) {
+ return !!elem.parentNode;
+ } :
+
+ function( elem, _context, xml ) {
+ var cache, uniqueCache, outerCache, node, nodeIndex, start,
+ dir = simple !== forward ? "nextSibling" : "previousSibling",
+ parent = elem.parentNode,
+ name = ofType && elem.nodeName.toLowerCase(),
+ useCache = !xml && !ofType,
+ diff = false;
+
+ if ( parent ) {
+
+ // :(first|last|only)-(child|of-type)
+ if ( simple ) {
+ while ( dir ) {
+ node = elem;
+ while ( ( node = node[ dir ] ) ) {
+ if ( ofType ?
+ node.nodeName.toLowerCase() === name :
+ node.nodeType === 1 ) {
+
+ return false;
+ }
+ }
+
+ // Reverse direction for :only-* (if we haven't yet done so)
+ start = dir = type === "only" && !start && "nextSibling";
+ }
+ return true;
+ }
+
+ start = [ forward ? parent.firstChild : parent.lastChild ];
+
+ // non-xml :nth-child(...) stores cache data on `parent`
+ if ( forward && useCache ) {
+
+ // Seek `elem` from a previously-cached index
+
+ // ...in a gzip-friendly way
+ node = parent;
+ outerCache = node[ expando ] || ( node[ expando ] = {} );
+
+ // Support: IE <9 only
+ // Defend against cloned attroperties (jQuery gh-1709)
+ uniqueCache = outerCache[ node.uniqueID ] ||
+ ( outerCache[ node.uniqueID ] = {} );
+
+ cache = uniqueCache[ type ] || [];
+ nodeIndex = cache[ 0 ] === dirruns && cache[ 1 ];
+ diff = nodeIndex && cache[ 2 ];
+ node = nodeIndex && parent.childNodes[ nodeIndex ];
+
+ while ( ( node = ++nodeIndex && node && node[ dir ] ||
+
+ // Fallback to seeking `elem` from the start
+ ( diff = nodeIndex = 0 ) || start.pop() ) ) {
+
+ // When found, cache indexes on `parent` and break
+ if ( node.nodeType === 1 && ++diff && node === elem ) {
+ uniqueCache[ type ] = [ dirruns, nodeIndex, diff ];
+ break;
+ }
+ }
+
+ } else {
+
+ // Use previously-cached element index if available
+ if ( useCache ) {
+
+ // ...in a gzip-friendly way
+ node = elem;
+ outerCache = node[ expando ] || ( node[ expando ] = {} );
+
+ // Support: IE <9 only
+ // Defend against cloned attroperties (jQuery gh-1709)
+ uniqueCache = outerCache[ node.uniqueID ] ||
+ ( outerCache[ node.uniqueID ] = {} );
+
+ cache = uniqueCache[ type ] || [];
+ nodeIndex = cache[ 0 ] === dirruns && cache[ 1 ];
+ diff = nodeIndex;
+ }
+
+ // xml :nth-child(...)
+ // or :nth-last-child(...) or :nth(-last)?-of-type(...)
+ if ( diff === false ) {
+
+ // Use the same loop as above to seek `elem` from the start
+ while ( ( node = ++nodeIndex && node && node[ dir ] ||
+ ( diff = nodeIndex = 0 ) || start.pop() ) ) {
+
+ if ( ( ofType ?
+ node.nodeName.toLowerCase() === name :
+ node.nodeType === 1 ) &&
+ ++diff ) {
+
+ // Cache the index of each encountered element
+ if ( useCache ) {
+ outerCache = node[ expando ] ||
+ ( node[ expando ] = {} );
+
+ // Support: IE <9 only
+ // Defend against cloned attroperties (jQuery gh-1709)
+ uniqueCache = outerCache[ node.uniqueID ] ||
+ ( outerCache[ node.uniqueID ] = {} );
+
+ uniqueCache[ type ] = [ dirruns, diff ];
+ }
+
+ if ( node === elem ) {
+ break;
+ }
+ }
+ }
+ }
+ }
+
+ // Incorporate the offset, then check against cycle size
+ diff -= last;
+ return diff === first || ( diff % first === 0 && diff / first >= 0 );
+ }
+ };
+ },
+
+ "PSEUDO": function( pseudo, argument ) {
+
+ // pseudo-class names are case-insensitive
+ // http://www.w3.org/TR/selectors/#pseudo-classes
+ // Prioritize by case sensitivity in case custom pseudos are added with uppercase letters
+ // Remember that setFilters inherits from pseudos
+ var args,
+ fn = Expr.pseudos[ pseudo ] || Expr.setFilters[ pseudo.toLowerCase() ] ||
+ Sizzle.error( "unsupported pseudo: " + pseudo );
+
+ // The user may use createPseudo to indicate that
+ // arguments are needed to create the filter function
+ // just as Sizzle does
+ if ( fn[ expando ] ) {
+ return fn( argument );
+ }
+
+ // But maintain support for old signatures
+ if ( fn.length > 1 ) {
+ args = [ pseudo, pseudo, "", argument ];
+ return Expr.setFilters.hasOwnProperty( pseudo.toLowerCase() ) ?
+ markFunction( function( seed, matches ) {
+ var idx,
+ matched = fn( seed, argument ),
+ i = matched.length;
+ while ( i-- ) {
+ idx = indexOf( seed, matched[ i ] );
+ seed[ idx ] = !( matches[ idx ] = matched[ i ] );
+ }
+ } ) :
+ function( elem ) {
+ return fn( elem, 0, args );
+ };
+ }
+
+ return fn;
+ }
+ },
+
+ pseudos: {
+
+ // Potentially complex pseudos
+ "not": markFunction( function( selector ) {
+
+ // Trim the selector passed to compile
+ // to avoid treating leading and trailing
+ // spaces as combinators
+ var input = [],
+ results = [],
+ matcher = compile( selector.replace( rtrim, "$1" ) );
+
+ return matcher[ expando ] ?
+ markFunction( function( seed, matches, _context, xml ) {
+ var elem,
+ unmatched = matcher( seed, null, xml, [] ),
+ i = seed.length;
+
+ // Match elements unmatched by `matcher`
+ while ( i-- ) {
+ if ( ( elem = unmatched[ i ] ) ) {
+ seed[ i ] = !( matches[ i ] = elem );
+ }
+ }
+ } ) :
+ function( elem, _context, xml ) {
+ input[ 0 ] = elem;
+ matcher( input, null, xml, results );
+
+ // Don't keep the element (issue #299)
+ input[ 0 ] = null;
+ return !results.pop();
+ };
+ } ),
+
+ "has": markFunction( function( selector ) {
+ return function( elem ) {
+ return Sizzle( selector, elem ).length > 0;
+ };
+ } ),
+
+ "contains": markFunction( function( text ) {
+ text = text.replace( runescape, funescape );
+ return function( elem ) {
+ return ( elem.textContent || getText( elem ) ).indexOf( text ) > -1;
+ };
+ } ),
+
+ // "Whether an element is represented by a :lang() selector
+ // is based solely on the element's language value
+ // being equal to the identifier C,
+ // or beginning with the identifier C immediately followed by "-".
+ // The matching of C against the element's language value is performed case-insensitively.
+ // The identifier C does not have to be a valid language name."
+ // http://www.w3.org/TR/selectors/#lang-pseudo
+ "lang": markFunction( function( lang ) {
+
+ // lang value must be a valid identifier
+ if ( !ridentifier.test( lang || "" ) ) {
+ Sizzle.error( "unsupported lang: " + lang );
+ }
+ lang = lang.replace( runescape, funescape ).toLowerCase();
+ return function( elem ) {
+ var elemLang;
+ do {
+ if ( ( elemLang = documentIsHTML ?
+ elem.lang :
+ elem.getAttribute( "xml:lang" ) || elem.getAttribute( "lang" ) ) ) {
+
+ elemLang = elemLang.toLowerCase();
+ return elemLang === lang || elemLang.indexOf( lang + "-" ) === 0;
+ }
+ } while ( ( elem = elem.parentNode ) && elem.nodeType === 1 );
+ return false;
+ };
+ } ),
+
+ // Miscellaneous
+ "target": function( elem ) {
+ var hash = window.location && window.location.hash;
+ return hash && hash.slice( 1 ) === elem.id;
+ },
+
+ "root": function( elem ) {
+ return elem === docElem;
+ },
+
+ "focus": function( elem ) {
+ return elem === document.activeElement &&
+ ( !document.hasFocus || document.hasFocus() ) &&
+ !!( elem.type || elem.href || ~elem.tabIndex );
+ },
+
+ // Boolean properties
+ "enabled": createDisabledPseudo( false ),
+ "disabled": createDisabledPseudo( true ),
+
+ "checked": function( elem ) {
+
+ // In CSS3, :checked should return both checked and selected elements
+ // http://www.w3.org/TR/2011/REC-css3-selectors-20110929/#checked
+ var nodeName = elem.nodeName.toLowerCase();
+ return ( nodeName === "input" && !!elem.checked ) ||
+ ( nodeName === "option" && !!elem.selected );
+ },
+
+ "selected": function( elem ) {
+
+ // Accessing this property makes selected-by-default
+ // options in Safari work properly
+ if ( elem.parentNode ) {
+ // eslint-disable-next-line no-unused-expressions
+ elem.parentNode.selectedIndex;
+ }
+
+ return elem.selected === true;
+ },
+
+ // Contents
+ "empty": function( elem ) {
+
+ // http://www.w3.org/TR/selectors/#empty-pseudo
+ // :empty is negated by element (1) or content nodes (text: 3; cdata: 4; entity ref: 5),
+ // but not by others (comment: 8; processing instruction: 7; etc.)
+ // nodeType < 6 works because attributes (2) do not appear as children
+ for ( elem = elem.firstChild; elem; elem = elem.nextSibling ) {
+ if ( elem.nodeType < 6 ) {
+ return false;
+ }
+ }
+ return true;
+ },
+
+ "parent": function( elem ) {
+ return !Expr.pseudos[ "empty" ]( elem );
+ },
+
+ // Element/input types
+ "header": function( elem ) {
+ return rheader.test( elem.nodeName );
+ },
+
+ "input": function( elem ) {
+ return rinputs.test( elem.nodeName );
+ },
+
+ "button": function( elem ) {
+ var name = elem.nodeName.toLowerCase();
+ return name === "input" && elem.type === "button" || name === "button";
+ },
+
+ "text": function( elem ) {
+ var attr;
+ return elem.nodeName.toLowerCase() === "input" &&
+ elem.type === "text" &&
+
+ // Support: IE<8
+ // New HTML5 attribute values (e.g., "search") appear with elem.type === "text"
+ ( ( attr = elem.getAttribute( "type" ) ) == null ||
+ attr.toLowerCase() === "text" );
+ },
+
+ // Position-in-collection
+ "first": createPositionalPseudo( function() {
+ return [ 0 ];
+ } ),
+
+ "last": createPositionalPseudo( function( _matchIndexes, length ) {
+ return [ length - 1 ];
+ } ),
+
+ "eq": createPositionalPseudo( function( _matchIndexes, length, argument ) {
+ return [ argument < 0 ? argument + length : argument ];
+ } ),
+
+ "even": createPositionalPseudo( function( matchIndexes, length ) {
+ var i = 0;
+ for ( ; i < length; i += 2 ) {
+ matchIndexes.push( i );
+ }
+ return matchIndexes;
+ } ),
+
+ "odd": createPositionalPseudo( function( matchIndexes, length ) {
+ var i = 1;
+ for ( ; i < length; i += 2 ) {
+ matchIndexes.push( i );
+ }
+ return matchIndexes;
+ } ),
+
+ "lt": createPositionalPseudo( function( matchIndexes, length, argument ) {
+ var i = argument < 0 ?
+ argument + length :
+ argument > length ?
+ length :
+ argument;
+ for ( ; --i >= 0; ) {
+ matchIndexes.push( i );
+ }
+ return matchIndexes;
+ } ),
+
+ "gt": createPositionalPseudo( function( matchIndexes, length, argument ) {
+ var i = argument < 0 ? argument + length : argument;
+ for ( ; ++i < length; ) {
+ matchIndexes.push( i );
+ }
+ return matchIndexes;
+ } )
+ }
+};
+
+Expr.pseudos[ "nth" ] = Expr.pseudos[ "eq" ];
+
+// Add button/input type pseudos
+for ( i in { radio: true, checkbox: true, file: true, password: true, image: true } ) {
+ Expr.pseudos[ i ] = createInputPseudo( i );
+}
+for ( i in { submit: true, reset: true } ) {
+ Expr.pseudos[ i ] = createButtonPseudo( i );
+}
+
+// Easy API for creating new setFilters
+function setFilters() {}
+setFilters.prototype = Expr.filters = Expr.pseudos;
+Expr.setFilters = new setFilters();
+
+tokenize = Sizzle.tokenize = function( selector, parseOnly ) {
+ var matched, match, tokens, type,
+ soFar, groups, preFilters,
+ cached = tokenCache[ selector + " " ];
+
+ if ( cached ) {
+ return parseOnly ? 0 : cached.slice( 0 );
+ }
+
+ soFar = selector;
+ groups = [];
+ preFilters = Expr.preFilter;
+
+ while ( soFar ) {
+
+ // Comma and first run
+ if ( !matched || ( match = rcomma.exec( soFar ) ) ) {
+ if ( match ) {
+
+ // Don't consume trailing commas as valid
+ soFar = soFar.slice( match[ 0 ].length ) || soFar;
+ }
+ groups.push( ( tokens = [] ) );
+ }
+
+ matched = false;
+
+ // Combinators
+ if ( ( match = rcombinators.exec( soFar ) ) ) {
+ matched = match.shift();
+ tokens.push( {
+ value: matched,
+
+ // Cast descendant combinators to space
+ type: match[ 0 ].replace( rtrim, " " )
+ } );
+ soFar = soFar.slice( matched.length );
+ }
+
+ // Filters
+ for ( type in Expr.filter ) {
+ if ( ( match = matchExpr[ type ].exec( soFar ) ) && ( !preFilters[ type ] ||
+ ( match = preFilters[ type ]( match ) ) ) ) {
+ matched = match.shift();
+ tokens.push( {
+ value: matched,
+ type: type,
+ matches: match
+ } );
+ soFar = soFar.slice( matched.length );
+ }
+ }
+
+ if ( !matched ) {
+ break;
+ }
+ }
+
+ // Return the length of the invalid excess
+ // if we're just parsing
+ // Otherwise, throw an error or return tokens
+ return parseOnly ?
+ soFar.length :
+ soFar ?
+ Sizzle.error( selector ) :
+
+ // Cache the tokens
+ tokenCache( selector, groups ).slice( 0 );
+};
+
+function toSelector( tokens ) {
+ var i = 0,
+ len = tokens.length,
+ selector = "";
+ for ( ; i < len; i++ ) {
+ selector += tokens[ i ].value;
+ }
+ return selector;
+}
+
+function addCombinator( matcher, combinator, base ) {
+ var dir = combinator.dir,
+ skip = combinator.next,
+ key = skip || dir,
+ checkNonElements = base && key === "parentNode",
+ doneName = done++;
+
+ return combinator.first ?
+
+ // Check against closest ancestor/preceding element
+ function( elem, context, xml ) {
+ while ( ( elem = elem[ dir ] ) ) {
+ if ( elem.nodeType === 1 || checkNonElements ) {
+ return matcher( elem, context, xml );
+ }
+ }
+ return false;
+ } :
+
+ // Check against all ancestor/preceding elements
+ function( elem, context, xml ) {
+ var oldCache, uniqueCache, outerCache,
+ newCache = [ dirruns, doneName ];
+
+ // We can't set arbitrary data on XML nodes, so they don't benefit from combinator caching
+ if ( xml ) {
+ while ( ( elem = elem[ dir ] ) ) {
+ if ( elem.nodeType === 1 || checkNonElements ) {
+ if ( matcher( elem, context, xml ) ) {
+ return true;
+ }
+ }
+ }
+ } else {
+ while ( ( elem = elem[ dir ] ) ) {
+ if ( elem.nodeType === 1 || checkNonElements ) {
+ outerCache = elem[ expando ] || ( elem[ expando ] = {} );
+
+ // Support: IE <9 only
+ // Defend against cloned attroperties (jQuery gh-1709)
+ uniqueCache = outerCache[ elem.uniqueID ] ||
+ ( outerCache[ elem.uniqueID ] = {} );
+
+ if ( skip && skip === elem.nodeName.toLowerCase() ) {
+ elem = elem[ dir ] || elem;
+ } else if ( ( oldCache = uniqueCache[ key ] ) &&
+ oldCache[ 0 ] === dirruns && oldCache[ 1 ] === doneName ) {
+
+ // Assign to newCache so results back-propagate to previous elements
+ return ( newCache[ 2 ] = oldCache[ 2 ] );
+ } else {
+
+ // Reuse newcache so results back-propagate to previous elements
+ uniqueCache[ key ] = newCache;
+
+ // A match means we're done; a fail means we have to keep checking
+ if ( ( newCache[ 2 ] = matcher( elem, context, xml ) ) ) {
+ return true;
+ }
+ }
+ }
+ }
+ }
+ return false;
+ };
+}
+
+function elementMatcher( matchers ) {
+ return matchers.length > 1 ?
+ function( elem, context, xml ) {
+ var i = matchers.length;
+ while ( i-- ) {
+ if ( !matchers[ i ]( elem, context, xml ) ) {
+ return false;
+ }
+ }
+ return true;
+ } :
+ matchers[ 0 ];
+}
+
+function multipleContexts( selector, contexts, results ) {
+ var i = 0,
+ len = contexts.length;
+ for ( ; i < len; i++ ) {
+ Sizzle( selector, contexts[ i ], results );
+ }
+ return results;
+}
+
+function condense( unmatched, map, filter, context, xml ) {
+ var elem,
+ newUnmatched = [],
+ i = 0,
+ len = unmatched.length,
+ mapped = map != null;
+
+ for ( ; i < len; i++ ) {
+ if ( ( elem = unmatched[ i ] ) ) {
+ if ( !filter || filter( elem, context, xml ) ) {
+ newUnmatched.push( elem );
+ if ( mapped ) {
+ map.push( i );
+ }
+ }
+ }
+ }
+
+ return newUnmatched;
+}
+
+function setMatcher( preFilter, selector, matcher, postFilter, postFinder, postSelector ) {
+ if ( postFilter && !postFilter[ expando ] ) {
+ postFilter = setMatcher( postFilter );
+ }
+ if ( postFinder && !postFinder[ expando ] ) {
+ postFinder = setMatcher( postFinder, postSelector );
+ }
+ return markFunction( function( seed, results, context, xml ) {
+ var temp, i, elem,
+ preMap = [],
+ postMap = [],
+ preexisting = results.length,
+
+ // Get initial elements from seed or context
+ elems = seed || multipleContexts(
+ selector || "*",
+ context.nodeType ? [ context ] : context,
+ []
+ ),
+
+ // Prefilter to get matcher input, preserving a map for seed-results synchronization
+ matcherIn = preFilter && ( seed || !selector ) ?
+ condense( elems, preMap, preFilter, context, xml ) :
+ elems,
+
+ matcherOut = matcher ?
+
+ // If we have a postFinder, or filtered seed, or non-seed postFilter or preexisting results,
+ postFinder || ( seed ? preFilter : preexisting || postFilter ) ?
+
+ // ...intermediate processing is necessary
+ [] :
+
+ // ...otherwise use results directly
+ results :
+ matcherIn;
+
+ // Find primary matches
+ if ( matcher ) {
+ matcher( matcherIn, matcherOut, context, xml );
+ }
+
+ // Apply postFilter
+ if ( postFilter ) {
+ temp = condense( matcherOut, postMap );
+ postFilter( temp, [], context, xml );
+
+ // Un-match failing elements by moving them back to matcherIn
+ i = temp.length;
+ while ( i-- ) {
+ if ( ( elem = temp[ i ] ) ) {
+ matcherOut[ postMap[ i ] ] = !( matcherIn[ postMap[ i ] ] = elem );
+ }
+ }
+ }
+
+ if ( seed ) {
+ if ( postFinder || preFilter ) {
+ if ( postFinder ) {
+
+ // Get the final matcherOut by condensing this intermediate into postFinder contexts
+ temp = [];
+ i = matcherOut.length;
+ while ( i-- ) {
+ if ( ( elem = matcherOut[ i ] ) ) {
+
+ // Restore matcherIn since elem is not yet a final match
+ temp.push( ( matcherIn[ i ] = elem ) );
+ }
+ }
+ postFinder( null, ( matcherOut = [] ), temp, xml );
+ }
+
+ // Move matched elements from seed to results to keep them synchronized
+ i = matcherOut.length;
+ while ( i-- ) {
+ if ( ( elem = matcherOut[ i ] ) &&
+ ( temp = postFinder ? indexOf( seed, elem ) : preMap[ i ] ) > -1 ) {
+
+ seed[ temp ] = !( results[ temp ] = elem );
+ }
+ }
+ }
+
+ // Add elements to results, through postFinder if defined
+ } else {
+ matcherOut = condense(
+ matcherOut === results ?
+ matcherOut.splice( preexisting, matcherOut.length ) :
+ matcherOut
+ );
+ if ( postFinder ) {
+ postFinder( null, results, matcherOut, xml );
+ } else {
+ push.apply( results, matcherOut );
+ }
+ }
+ } );
+}
+
+function matcherFromTokens( tokens ) {
+ var checkContext, matcher, j,
+ len = tokens.length,
+ leadingRelative = Expr.relative[ tokens[ 0 ].type ],
+ implicitRelative = leadingRelative || Expr.relative[ " " ],
+ i = leadingRelative ? 1 : 0,
+
+ // The foundational matcher ensures that elements are reachable from top-level context(s)
+ matchContext = addCombinator( function( elem ) {
+ return elem === checkContext;
+ }, implicitRelative, true ),
+ matchAnyContext = addCombinator( function( elem ) {
+ return indexOf( checkContext, elem ) > -1;
+ }, implicitRelative, true ),
+ matchers = [ function( elem, context, xml ) {
+ var ret = ( !leadingRelative && ( xml || context !== outermostContext ) ) || (
+ ( checkContext = context ).nodeType ?
+ matchContext( elem, context, xml ) :
+ matchAnyContext( elem, context, xml ) );
+
+ // Avoid hanging onto element (issue #299)
+ checkContext = null;
+ return ret;
+ } ];
+
+ for ( ; i < len; i++ ) {
+ if ( ( matcher = Expr.relative[ tokens[ i ].type ] ) ) {
+ matchers = [ addCombinator( elementMatcher( matchers ), matcher ) ];
+ } else {
+ matcher = Expr.filter[ tokens[ i ].type ].apply( null, tokens[ i ].matches );
+
+ // Return special upon seeing a positional matcher
+ if ( matcher[ expando ] ) {
+
+ // Find the next relative operator (if any) for proper handling
+ j = ++i;
+ for ( ; j < len; j++ ) {
+ if ( Expr.relative[ tokens[ j ].type ] ) {
+ break;
+ }
+ }
+ return setMatcher(
+ i > 1 && elementMatcher( matchers ),
+ i > 1 && toSelector(
+
+ // If the preceding token was a descendant combinator, insert an implicit any-element `*`
+ tokens
+ .slice( 0, i - 1 )
+ .concat( { value: tokens[ i - 2 ].type === " " ? "*" : "" } )
+ ).replace( rtrim, "$1" ),
+ matcher,
+ i < j && matcherFromTokens( tokens.slice( i, j ) ),
+ j < len && matcherFromTokens( ( tokens = tokens.slice( j ) ) ),
+ j < len && toSelector( tokens )
+ );
+ }
+ matchers.push( matcher );
+ }
+ }
+
+ return elementMatcher( matchers );
+}
+
+function matcherFromGroupMatchers( elementMatchers, setMatchers ) {
+ var bySet = setMatchers.length > 0,
+ byElement = elementMatchers.length > 0,
+ superMatcher = function( seed, context, xml, results, outermost ) {
+ var elem, j, matcher,
+ matchedCount = 0,
+ i = "0",
+ unmatched = seed && [],
+ setMatched = [],
+ contextBackup = outermostContext,
+
+ // We must always have either seed elements or outermost context
+ elems = seed || byElement && Expr.find[ "TAG" ]( "*", outermost ),
+
+ // Use integer dirruns iff this is the outermost matcher
+ dirrunsUnique = ( dirruns += contextBackup == null ? 1 : Math.random() || 0.1 ),
+ len = elems.length;
+
+ if ( outermost ) {
+
+ // Support: IE 11+, Edge 17 - 18+
+ // IE/Edge sometimes throw a "Permission denied" error when strict-comparing
+ // two documents; shallow comparisons work.
+ // eslint-disable-next-line eqeqeq
+ outermostContext = context == document || context || outermost;
+ }
+
+ // Add elements passing elementMatchers directly to results
+ // Support: IE<9, Safari
+ // Tolerate NodeList properties (IE: "length"; Safari: ) matching elements by id
+ for ( ; i !== len && ( elem = elems[ i ] ) != null; i++ ) {
+ if ( byElement && elem ) {
+ j = 0;
+
+ // Support: IE 11+, Edge 17 - 18+
+ // IE/Edge sometimes throw a "Permission denied" error when strict-comparing
+ // two documents; shallow comparisons work.
+ // eslint-disable-next-line eqeqeq
+ if ( !context && elem.ownerDocument != document ) {
+ setDocument( elem );
+ xml = !documentIsHTML;
+ }
+ while ( ( matcher = elementMatchers[ j++ ] ) ) {
+ if ( matcher( elem, context || document, xml ) ) {
+ results.push( elem );
+ break;
+ }
+ }
+ if ( outermost ) {
+ dirruns = dirrunsUnique;
+ }
+ }
+
+ // Track unmatched elements for set filters
+ if ( bySet ) {
+
+ // They will have gone through all possible matchers
+ if ( ( elem = !matcher && elem ) ) {
+ matchedCount--;
+ }
+
+ // Lengthen the array for every element, matched or not
+ if ( seed ) {
+ unmatched.push( elem );
+ }
+ }
+ }
+
+ // `i` is now the count of elements visited above, and adding it to `matchedCount`
+ // makes the latter nonnegative.
+ matchedCount += i;
+
+ // Apply set filters to unmatched elements
+ // NOTE: This can be skipped if there are no unmatched elements (i.e., `matchedCount`
+ // equals `i`), unless we didn't visit _any_ elements in the above loop because we have
+ // no element matchers and no seed.
+ // Incrementing an initially-string "0" `i` allows `i` to remain a string only in that
+ // case, which will result in a "00" `matchedCount` that differs from `i` but is also
+ // numerically zero.
+ if ( bySet && i !== matchedCount ) {
+ j = 0;
+ while ( ( matcher = setMatchers[ j++ ] ) ) {
+ matcher( unmatched, setMatched, context, xml );
+ }
+
+ if ( seed ) {
+
+ // Reintegrate element matches to eliminate the need for sorting
+ if ( matchedCount > 0 ) {
+ while ( i-- ) {
+ if ( !( unmatched[ i ] || setMatched[ i ] ) ) {
+ setMatched[ i ] = pop.call( results );
+ }
+ }
+ }
+
+ // Discard index placeholder values to get only actual matches
+ setMatched = condense( setMatched );
+ }
+
+ // Add matches to results
+ push.apply( results, setMatched );
+
+ // Seedless set matches succeeding multiple successful matchers stipulate sorting
+ if ( outermost && !seed && setMatched.length > 0 &&
+ ( matchedCount + setMatchers.length ) > 1 ) {
+
+ Sizzle.uniqueSort( results );
+ }
+ }
+
+ // Override manipulation of globals by nested matchers
+ if ( outermost ) {
+ dirruns = dirrunsUnique;
+ outermostContext = contextBackup;
+ }
+
+ return unmatched;
+ };
+
+ return bySet ?
+ markFunction( superMatcher ) :
+ superMatcher;
+}
+
+compile = Sizzle.compile = function( selector, match /* Internal Use Only */ ) {
+ var i,
+ setMatchers = [],
+ elementMatchers = [],
+ cached = compilerCache[ selector + " " ];
+
+ if ( !cached ) {
+
+ // Generate a function of recursive functions that can be used to check each element
+ if ( !match ) {
+ match = tokenize( selector );
+ }
+ i = match.length;
+ while ( i-- ) {
+ cached = matcherFromTokens( match[ i ] );
+ if ( cached[ expando ] ) {
+ setMatchers.push( cached );
+ } else {
+ elementMatchers.push( cached );
+ }
+ }
+
+ // Cache the compiled function
+ cached = compilerCache(
+ selector,
+ matcherFromGroupMatchers( elementMatchers, setMatchers )
+ );
+
+ // Save selector and tokenization
+ cached.selector = selector;
+ }
+ return cached;
+};
+
+/**
+ * A low-level selection function that works with Sizzle's compiled
+ * selector functions
+ * @param {String|Function} selector A selector or a pre-compiled
+ * selector function built with Sizzle.compile
+ * @param {Element} context
+ * @param {Array} [results]
+ * @param {Array} [seed] A set of elements to match against
+ */
+select = Sizzle.select = function( selector, context, results, seed ) {
+ var i, tokens, token, type, find,
+ compiled = typeof selector === "function" && selector,
+ match = !seed && tokenize( ( selector = compiled.selector || selector ) );
+
+ results = results || [];
+
+ // Try to minimize operations if there is only one selector in the list and no seed
+ // (the latter of which guarantees us context)
+ if ( match.length === 1 ) {
+
+ // Reduce context if the leading compound selector is an ID
+ tokens = match[ 0 ] = match[ 0 ].slice( 0 );
+ if ( tokens.length > 2 && ( token = tokens[ 0 ] ).type === "ID" &&
+ context.nodeType === 9 && documentIsHTML && Expr.relative[ tokens[ 1 ].type ] ) {
+
+ context = ( Expr.find[ "ID" ]( token.matches[ 0 ]
+ .replace( runescape, funescape ), context ) || [] )[ 0 ];
+ if ( !context ) {
+ return results;
+
+ // Precompiled matchers will still verify ancestry, so step up a level
+ } else if ( compiled ) {
+ context = context.parentNode;
+ }
+
+ selector = selector.slice( tokens.shift().value.length );
+ }
+
+ // Fetch a seed set for right-to-left matching
+ i = matchExpr[ "needsContext" ].test( selector ) ? 0 : tokens.length;
+ while ( i-- ) {
+ token = tokens[ i ];
+
+ // Abort if we hit a combinator
+ if ( Expr.relative[ ( type = token.type ) ] ) {
+ break;
+ }
+ if ( ( find = Expr.find[ type ] ) ) {
+
+ // Search, expanding context for leading sibling combinators
+ if ( ( seed = find(
+ token.matches[ 0 ].replace( runescape, funescape ),
+ rsibling.test( tokens[ 0 ].type ) && testContext( context.parentNode ) ||
+ context
+ ) ) ) {
+
+ // If seed is empty or no tokens remain, we can return early
+ tokens.splice( i, 1 );
+ selector = seed.length && toSelector( tokens );
+ if ( !selector ) {
+ push.apply( results, seed );
+ return results;
+ }
+
+ break;
+ }
+ }
+ }
+ }
+
+ // Compile and execute a filtering function if one is not provided
+ // Provide `match` to avoid retokenization if we modified the selector above
+ ( compiled || compile( selector, match ) )(
+ seed,
+ context,
+ !documentIsHTML,
+ results,
+ !context || rsibling.test( selector ) && testContext( context.parentNode ) || context
+ );
+ return results;
+};
+
+// One-time assignments
+
+// Sort stability
+support.sortStable = expando.split( "" ).sort( sortOrder ).join( "" ) === expando;
+
+// Support: Chrome 14-35+
+// Always assume duplicates if they aren't passed to the comparison function
+support.detectDuplicates = !!hasDuplicate;
+
+// Initialize against the default document
+setDocument();
+
+// Support: Webkit<537.32 - Safari 6.0.3/Chrome 25 (fixed in Chrome 27)
+// Detached nodes confoundingly follow *each other*
+support.sortDetached = assert( function( el ) {
+
+ // Should return 1, but returns 4 (following)
+ return el.compareDocumentPosition( document.createElement( "fieldset" ) ) & 1;
+} );
+
+// Support: IE<8
+// Prevent attribute/property "interpolation"
+// https://msdn.microsoft.com/en-us/library/ms536429%28VS.85%29.aspx
+if ( !assert( function( el ) {
+ el.innerHTML = " ";
+ return el.firstChild.getAttribute( "href" ) === "#";
+} ) ) {
+ addHandle( "type|href|height|width", function( elem, name, isXML ) {
+ if ( !isXML ) {
+ return elem.getAttribute( name, name.toLowerCase() === "type" ? 1 : 2 );
+ }
+ } );
+}
+
+// Support: IE<9
+// Use defaultValue in place of getAttribute("value")
+if ( !support.attributes || !assert( function( el ) {
+ el.innerHTML = " ";
+ el.firstChild.setAttribute( "value", "" );
+ return el.firstChild.getAttribute( "value" ) === "";
+} ) ) {
+ addHandle( "value", function( elem, _name, isXML ) {
+ if ( !isXML && elem.nodeName.toLowerCase() === "input" ) {
+ return elem.defaultValue;
+ }
+ } );
+}
+
+// Support: IE<9
+// Use getAttributeNode to fetch booleans when getAttribute lies
+if ( !assert( function( el ) {
+ return el.getAttribute( "disabled" ) == null;
+} ) ) {
+ addHandle( booleans, function( elem, name, isXML ) {
+ var val;
+ if ( !isXML ) {
+ return elem[ name ] === true ? name.toLowerCase() :
+ ( val = elem.getAttributeNode( name ) ) && val.specified ?
+ val.value :
+ null;
+ }
+ } );
+}
+
+return Sizzle;
+
+} )( window );
+
+
+
+jQuery.find = Sizzle;
+jQuery.expr = Sizzle.selectors;
+
+// Deprecated
+jQuery.expr[ ":" ] = jQuery.expr.pseudos;
+jQuery.uniqueSort = jQuery.unique = Sizzle.uniqueSort;
+jQuery.text = Sizzle.getText;
+jQuery.isXMLDoc = Sizzle.isXML;
+jQuery.contains = Sizzle.contains;
+jQuery.escapeSelector = Sizzle.escape;
+
+
+
+
+var dir = function( elem, dir, until ) {
+ var matched = [],
+ truncate = until !== undefined;
+
+ while ( ( elem = elem[ dir ] ) && elem.nodeType !== 9 ) {
+ if ( elem.nodeType === 1 ) {
+ if ( truncate && jQuery( elem ).is( until ) ) {
+ break;
+ }
+ matched.push( elem );
+ }
+ }
+ return matched;
+};
+
+
+var siblings = function( n, elem ) {
+ var matched = [];
+
+ for ( ; n; n = n.nextSibling ) {
+ if ( n.nodeType === 1 && n !== elem ) {
+ matched.push( n );
+ }
+ }
+
+ return matched;
+};
+
+
+var rneedsContext = jQuery.expr.match.needsContext;
+
+
+
+function nodeName( elem, name ) {
+
+ return elem.nodeName && elem.nodeName.toLowerCase() === name.toLowerCase();
+
+}
+var rsingleTag = ( /^<([a-z][^\/\0>:\x20\t\r\n\f]*)[\x20\t\r\n\f]*\/?>(?:<\/\1>|)$/i );
+
+
+
+// Implement the identical functionality for filter and not
+function winnow( elements, qualifier, not ) {
+ if ( isFunction( qualifier ) ) {
+ return jQuery.grep( elements, function( elem, i ) {
+ return !!qualifier.call( elem, i, elem ) !== not;
+ } );
+ }
+
+ // Single element
+ if ( qualifier.nodeType ) {
+ return jQuery.grep( elements, function( elem ) {
+ return ( elem === qualifier ) !== not;
+ } );
+ }
+
+ // Arraylike of elements (jQuery, arguments, Array)
+ if ( typeof qualifier !== "string" ) {
+ return jQuery.grep( elements, function( elem ) {
+ return ( indexOf.call( qualifier, elem ) > -1 ) !== not;
+ } );
+ }
+
+ // Filtered directly for both simple and complex selectors
+ return jQuery.filter( qualifier, elements, not );
+}
+
+jQuery.filter = function( expr, elems, not ) {
+ var elem = elems[ 0 ];
+
+ if ( not ) {
+ expr = ":not(" + expr + ")";
+ }
+
+ if ( elems.length === 1 && elem.nodeType === 1 ) {
+ return jQuery.find.matchesSelector( elem, expr ) ? [ elem ] : [];
+ }
+
+ return jQuery.find.matches( expr, jQuery.grep( elems, function( elem ) {
+ return elem.nodeType === 1;
+ } ) );
+};
+
+jQuery.fn.extend( {
+ find: function( selector ) {
+ var i, ret,
+ len = this.length,
+ self = this;
+
+ if ( typeof selector !== "string" ) {
+ return this.pushStack( jQuery( selector ).filter( function() {
+ for ( i = 0; i < len; i++ ) {
+ if ( jQuery.contains( self[ i ], this ) ) {
+ return true;
+ }
+ }
+ } ) );
+ }
+
+ ret = this.pushStack( [] );
+
+ for ( i = 0; i < len; i++ ) {
+ jQuery.find( selector, self[ i ], ret );
+ }
+
+ return len > 1 ? jQuery.uniqueSort( ret ) : ret;
+ },
+ filter: function( selector ) {
+ return this.pushStack( winnow( this, selector || [], false ) );
+ },
+ not: function( selector ) {
+ return this.pushStack( winnow( this, selector || [], true ) );
+ },
+ is: function( selector ) {
+ return !!winnow(
+ this,
+
+ // If this is a positional/relative selector, check membership in the returned set
+ // so $("p:first").is("p:last") won't return true for a doc with two "p".
+ typeof selector === "string" && rneedsContext.test( selector ) ?
+ jQuery( selector ) :
+ selector || [],
+ false
+ ).length;
+ }
+} );
+
+
+// Initialize a jQuery object
+
+
+// A central reference to the root jQuery(document)
+var rootjQuery,
+
+ // A simple way to check for HTML strings
+ // Prioritize #id over to avoid XSS via location.hash (#9521)
+ // Strict HTML recognition (#11290: must start with <)
+ // Shortcut simple #id case for speed
+ rquickExpr = /^(?:\s*(<[\w\W]+>)[^>]*|#([\w-]+))$/,
+
+ init = jQuery.fn.init = function( selector, context, root ) {
+ var match, elem;
+
+ // HANDLE: $(""), $(null), $(undefined), $(false)
+ if ( !selector ) {
+ return this;
+ }
+
+ // Method init() accepts an alternate rootjQuery
+ // so migrate can support jQuery.sub (gh-2101)
+ root = root || rootjQuery;
+
+ // Handle HTML strings
+ if ( typeof selector === "string" ) {
+ if ( selector[ 0 ] === "<" &&
+ selector[ selector.length - 1 ] === ">" &&
+ selector.length >= 3 ) {
+
+ // Assume that strings that start and end with <> are HTML and skip the regex check
+ match = [ null, selector, null ];
+
+ } else {
+ match = rquickExpr.exec( selector );
+ }
+
+ // Match html or make sure no context is specified for #id
+ if ( match && ( match[ 1 ] || !context ) ) {
+
+ // HANDLE: $(html) -> $(array)
+ if ( match[ 1 ] ) {
+ context = context instanceof jQuery ? context[ 0 ] : context;
+
+ // Option to run scripts is true for back-compat
+ // Intentionally let the error be thrown if parseHTML is not present
+ jQuery.merge( this, jQuery.parseHTML(
+ match[ 1 ],
+ context && context.nodeType ? context.ownerDocument || context : document,
+ true
+ ) );
+
+ // HANDLE: $(html, props)
+ if ( rsingleTag.test( match[ 1 ] ) && jQuery.isPlainObject( context ) ) {
+ for ( match in context ) {
+
+ // Properties of context are called as methods if possible
+ if ( isFunction( this[ match ] ) ) {
+ this[ match ]( context[ match ] );
+
+ // ...and otherwise set as attributes
+ } else {
+ this.attr( match, context[ match ] );
+ }
+ }
+ }
+
+ return this;
+
+ // HANDLE: $(#id)
+ } else {
+ elem = document.getElementById( match[ 2 ] );
+
+ if ( elem ) {
+
+ // Inject the element directly into the jQuery object
+ this[ 0 ] = elem;
+ this.length = 1;
+ }
+ return this;
+ }
+
+ // HANDLE: $(expr, $(...))
+ } else if ( !context || context.jquery ) {
+ return ( context || root ).find( selector );
+
+ // HANDLE: $(expr, context)
+ // (which is just equivalent to: $(context).find(expr)
+ } else {
+ return this.constructor( context ).find( selector );
+ }
+
+ // HANDLE: $(DOMElement)
+ } else if ( selector.nodeType ) {
+ this[ 0 ] = selector;
+ this.length = 1;
+ return this;
+
+ // HANDLE: $(function)
+ // Shortcut for document ready
+ } else if ( isFunction( selector ) ) {
+ return root.ready !== undefined ?
+ root.ready( selector ) :
+
+ // Execute immediately if ready is not present
+ selector( jQuery );
+ }
+
+ return jQuery.makeArray( selector, this );
+ };
+
+// Give the init function the jQuery prototype for later instantiation
+init.prototype = jQuery.fn;
+
+// Initialize central reference
+rootjQuery = jQuery( document );
+
+
+var rparentsprev = /^(?:parents|prev(?:Until|All))/,
+
+ // Methods guaranteed to produce a unique set when starting from a unique set
+ guaranteedUnique = {
+ children: true,
+ contents: true,
+ next: true,
+ prev: true
+ };
+
+jQuery.fn.extend( {
+ has: function( target ) {
+ var targets = jQuery( target, this ),
+ l = targets.length;
+
+ return this.filter( function() {
+ var i = 0;
+ for ( ; i < l; i++ ) {
+ if ( jQuery.contains( this, targets[ i ] ) ) {
+ return true;
+ }
+ }
+ } );
+ },
+
+ closest: function( selectors, context ) {
+ var cur,
+ i = 0,
+ l = this.length,
+ matched = [],
+ targets = typeof selectors !== "string" && jQuery( selectors );
+
+ // Positional selectors never match, since there's no _selection_ context
+ if ( !rneedsContext.test( selectors ) ) {
+ for ( ; i < l; i++ ) {
+ for ( cur = this[ i ]; cur && cur !== context; cur = cur.parentNode ) {
+
+ // Always skip document fragments
+ if ( cur.nodeType < 11 && ( targets ?
+ targets.index( cur ) > -1 :
+
+ // Don't pass non-elements to Sizzle
+ cur.nodeType === 1 &&
+ jQuery.find.matchesSelector( cur, selectors ) ) ) {
+
+ matched.push( cur );
+ break;
+ }
+ }
+ }
+ }
+
+ return this.pushStack( matched.length > 1 ? jQuery.uniqueSort( matched ) : matched );
+ },
+
+ // Determine the position of an element within the set
+ index: function( elem ) {
+
+ // No argument, return index in parent
+ if ( !elem ) {
+ return ( this[ 0 ] && this[ 0 ].parentNode ) ? this.first().prevAll().length : -1;
+ }
+
+ // Index in selector
+ if ( typeof elem === "string" ) {
+ return indexOf.call( jQuery( elem ), this[ 0 ] );
+ }
+
+ // Locate the position of the desired element
+ return indexOf.call( this,
+
+ // If it receives a jQuery object, the first element is used
+ elem.jquery ? elem[ 0 ] : elem
+ );
+ },
+
+ add: function( selector, context ) {
+ return this.pushStack(
+ jQuery.uniqueSort(
+ jQuery.merge( this.get(), jQuery( selector, context ) )
+ )
+ );
+ },
+
+ addBack: function( selector ) {
+ return this.add( selector == null ?
+ this.prevObject : this.prevObject.filter( selector )
+ );
+ }
+} );
+
+function sibling( cur, dir ) {
+ while ( ( cur = cur[ dir ] ) && cur.nodeType !== 1 ) {}
+ return cur;
+}
+
+jQuery.each( {
+ parent: function( elem ) {
+ var parent = elem.parentNode;
+ return parent && parent.nodeType !== 11 ? parent : null;
+ },
+ parents: function( elem ) {
+ return dir( elem, "parentNode" );
+ },
+ parentsUntil: function( elem, _i, until ) {
+ return dir( elem, "parentNode", until );
+ },
+ next: function( elem ) {
+ return sibling( elem, "nextSibling" );
+ },
+ prev: function( elem ) {
+ return sibling( elem, "previousSibling" );
+ },
+ nextAll: function( elem ) {
+ return dir( elem, "nextSibling" );
+ },
+ prevAll: function( elem ) {
+ return dir( elem, "previousSibling" );
+ },
+ nextUntil: function( elem, _i, until ) {
+ return dir( elem, "nextSibling", until );
+ },
+ prevUntil: function( elem, _i, until ) {
+ return dir( elem, "previousSibling", until );
+ },
+ siblings: function( elem ) {
+ return siblings( ( elem.parentNode || {} ).firstChild, elem );
+ },
+ children: function( elem ) {
+ return siblings( elem.firstChild );
+ },
+ contents: function( elem ) {
+ if ( elem.contentDocument != null &&
+
+ // Support: IE 11+
+ // elements with no `data` attribute has an object
+ // `contentDocument` with a `null` prototype.
+ getProto( elem.contentDocument ) ) {
+
+ return elem.contentDocument;
+ }
+
+ // Support: IE 9 - 11 only, iOS 7 only, Android Browser <=4.3 only
+ // Treat the template element as a regular one in browsers that
+ // don't support it.
+ if ( nodeName( elem, "template" ) ) {
+ elem = elem.content || elem;
+ }
+
+ return jQuery.merge( [], elem.childNodes );
+ }
+}, function( name, fn ) {
+ jQuery.fn[ name ] = function( until, selector ) {
+ var matched = jQuery.map( this, fn, until );
+
+ if ( name.slice( -5 ) !== "Until" ) {
+ selector = until;
+ }
+
+ if ( selector && typeof selector === "string" ) {
+ matched = jQuery.filter( selector, matched );
+ }
+
+ if ( this.length > 1 ) {
+
+ // Remove duplicates
+ if ( !guaranteedUnique[ name ] ) {
+ jQuery.uniqueSort( matched );
+ }
+
+ // Reverse order for parents* and prev-derivatives
+ if ( rparentsprev.test( name ) ) {
+ matched.reverse();
+ }
+ }
+
+ return this.pushStack( matched );
+ };
+} );
+var rnothtmlwhite = ( /[^\x20\t\r\n\f]+/g );
+
+
+
+// Convert String-formatted options into Object-formatted ones
+function createOptions( options ) {
+ var object = {};
+ jQuery.each( options.match( rnothtmlwhite ) || [], function( _, flag ) {
+ object[ flag ] = true;
+ } );
+ return object;
+}
+
+/*
+ * Create a callback list using the following parameters:
+ *
+ * options: an optional list of space-separated options that will change how
+ * the callback list behaves or a more traditional option object
+ *
+ * By default a callback list will act like an event callback list and can be
+ * "fired" multiple times.
+ *
+ * Possible options:
+ *
+ * once: will ensure the callback list can only be fired once (like a Deferred)
+ *
+ * memory: will keep track of previous values and will call any callback added
+ * after the list has been fired right away with the latest "memorized"
+ * values (like a Deferred)
+ *
+ * unique: will ensure a callback can only be added once (no duplicate in the list)
+ *
+ * stopOnFalse: interrupt callings when a callback returns false
+ *
+ */
+jQuery.Callbacks = function( options ) {
+
+ // Convert options from String-formatted to Object-formatted if needed
+ // (we check in cache first)
+ options = typeof options === "string" ?
+ createOptions( options ) :
+ jQuery.extend( {}, options );
+
+ var // Flag to know if list is currently firing
+ firing,
+
+ // Last fire value for non-forgettable lists
+ memory,
+
+ // Flag to know if list was already fired
+ fired,
+
+ // Flag to prevent firing
+ locked,
+
+ // Actual callback list
+ list = [],
+
+ // Queue of execution data for repeatable lists
+ queue = [],
+
+ // Index of currently firing callback (modified by add/remove as needed)
+ firingIndex = -1,
+
+ // Fire callbacks
+ fire = function() {
+
+ // Enforce single-firing
+ locked = locked || options.once;
+
+ // Execute callbacks for all pending executions,
+ // respecting firingIndex overrides and runtime changes
+ fired = firing = true;
+ for ( ; queue.length; firingIndex = -1 ) {
+ memory = queue.shift();
+ while ( ++firingIndex < list.length ) {
+
+ // Run callback and check for early termination
+ if ( list[ firingIndex ].apply( memory[ 0 ], memory[ 1 ] ) === false &&
+ options.stopOnFalse ) {
+
+ // Jump to end and forget the data so .add doesn't re-fire
+ firingIndex = list.length;
+ memory = false;
+ }
+ }
+ }
+
+ // Forget the data if we're done with it
+ if ( !options.memory ) {
+ memory = false;
+ }
+
+ firing = false;
+
+ // Clean up if we're done firing for good
+ if ( locked ) {
+
+ // Keep an empty list if we have data for future add calls
+ if ( memory ) {
+ list = [];
+
+ // Otherwise, this object is spent
+ } else {
+ list = "";
+ }
+ }
+ },
+
+ // Actual Callbacks object
+ self = {
+
+ // Add a callback or a collection of callbacks to the list
+ add: function() {
+ if ( list ) {
+
+ // If we have memory from a past run, we should fire after adding
+ if ( memory && !firing ) {
+ firingIndex = list.length - 1;
+ queue.push( memory );
+ }
+
+ ( function add( args ) {
+ jQuery.each( args, function( _, arg ) {
+ if ( isFunction( arg ) ) {
+ if ( !options.unique || !self.has( arg ) ) {
+ list.push( arg );
+ }
+ } else if ( arg && arg.length && toType( arg ) !== "string" ) {
+
+ // Inspect recursively
+ add( arg );
+ }
+ } );
+ } )( arguments );
+
+ if ( memory && !firing ) {
+ fire();
+ }
+ }
+ return this;
+ },
+
+ // Remove a callback from the list
+ remove: function() {
+ jQuery.each( arguments, function( _, arg ) {
+ var index;
+ while ( ( index = jQuery.inArray( arg, list, index ) ) > -1 ) {
+ list.splice( index, 1 );
+
+ // Handle firing indexes
+ if ( index <= firingIndex ) {
+ firingIndex--;
+ }
+ }
+ } );
+ return this;
+ },
+
+ // Check if a given callback is in the list.
+ // If no argument is given, return whether or not list has callbacks attached.
+ has: function( fn ) {
+ return fn ?
+ jQuery.inArray( fn, list ) > -1 :
+ list.length > 0;
+ },
+
+ // Remove all callbacks from the list
+ empty: function() {
+ if ( list ) {
+ list = [];
+ }
+ return this;
+ },
+
+ // Disable .fire and .add
+ // Abort any current/pending executions
+ // Clear all callbacks and values
+ disable: function() {
+ locked = queue = [];
+ list = memory = "";
+ return this;
+ },
+ disabled: function() {
+ return !list;
+ },
+
+ // Disable .fire
+ // Also disable .add unless we have memory (since it would have no effect)
+ // Abort any pending executions
+ lock: function() {
+ locked = queue = [];
+ if ( !memory && !firing ) {
+ list = memory = "";
+ }
+ return this;
+ },
+ locked: function() {
+ return !!locked;
+ },
+
+ // Call all callbacks with the given context and arguments
+ fireWith: function( context, args ) {
+ if ( !locked ) {
+ args = args || [];
+ args = [ context, args.slice ? args.slice() : args ];
+ queue.push( args );
+ if ( !firing ) {
+ fire();
+ }
+ }
+ return this;
+ },
+
+ // Call all the callbacks with the given arguments
+ fire: function() {
+ self.fireWith( this, arguments );
+ return this;
+ },
+
+ // To know if the callbacks have already been called at least once
+ fired: function() {
+ return !!fired;
+ }
+ };
+
+ return self;
+};
+
+
+function Identity( v ) {
+ return v;
+}
+function Thrower( ex ) {
+ throw ex;
+}
+
+function adoptValue( value, resolve, reject, noValue ) {
+ var method;
+
+ try {
+
+ // Check for promise aspect first to privilege synchronous behavior
+ if ( value && isFunction( ( method = value.promise ) ) ) {
+ method.call( value ).done( resolve ).fail( reject );
+
+ // Other thenables
+ } else if ( value && isFunction( ( method = value.then ) ) ) {
+ method.call( value, resolve, reject );
+
+ // Other non-thenables
+ } else {
+
+ // Control `resolve` arguments by letting Array#slice cast boolean `noValue` to integer:
+ // * false: [ value ].slice( 0 ) => resolve( value )
+ // * true: [ value ].slice( 1 ) => resolve()
+ resolve.apply( undefined, [ value ].slice( noValue ) );
+ }
+
+ // For Promises/A+, convert exceptions into rejections
+ // Since jQuery.when doesn't unwrap thenables, we can skip the extra checks appearing in
+ // Deferred#then to conditionally suppress rejection.
+ } catch ( value ) {
+
+ // Support: Android 4.0 only
+ // Strict mode functions invoked without .call/.apply get global-object context
+ reject.apply( undefined, [ value ] );
+ }
+}
+
+jQuery.extend( {
+
+ Deferred: function( func ) {
+ var tuples = [
+
+ // action, add listener, callbacks,
+ // ... .then handlers, argument index, [final state]
+ [ "notify", "progress", jQuery.Callbacks( "memory" ),
+ jQuery.Callbacks( "memory" ), 2 ],
+ [ "resolve", "done", jQuery.Callbacks( "once memory" ),
+ jQuery.Callbacks( "once memory" ), 0, "resolved" ],
+ [ "reject", "fail", jQuery.Callbacks( "once memory" ),
+ jQuery.Callbacks( "once memory" ), 1, "rejected" ]
+ ],
+ state = "pending",
+ promise = {
+ state: function() {
+ return state;
+ },
+ always: function() {
+ deferred.done( arguments ).fail( arguments );
+ return this;
+ },
+ "catch": function( fn ) {
+ return promise.then( null, fn );
+ },
+
+ // Keep pipe for back-compat
+ pipe: function( /* fnDone, fnFail, fnProgress */ ) {
+ var fns = arguments;
+
+ return jQuery.Deferred( function( newDefer ) {
+ jQuery.each( tuples, function( _i, tuple ) {
+
+ // Map tuples (progress, done, fail) to arguments (done, fail, progress)
+ var fn = isFunction( fns[ tuple[ 4 ] ] ) && fns[ tuple[ 4 ] ];
+
+ // deferred.progress(function() { bind to newDefer or newDefer.notify })
+ // deferred.done(function() { bind to newDefer or newDefer.resolve })
+ // deferred.fail(function() { bind to newDefer or newDefer.reject })
+ deferred[ tuple[ 1 ] ]( function() {
+ var returned = fn && fn.apply( this, arguments );
+ if ( returned && isFunction( returned.promise ) ) {
+ returned.promise()
+ .progress( newDefer.notify )
+ .done( newDefer.resolve )
+ .fail( newDefer.reject );
+ } else {
+ newDefer[ tuple[ 0 ] + "With" ](
+ this,
+ fn ? [ returned ] : arguments
+ );
+ }
+ } );
+ } );
+ fns = null;
+ } ).promise();
+ },
+ then: function( onFulfilled, onRejected, onProgress ) {
+ var maxDepth = 0;
+ function resolve( depth, deferred, handler, special ) {
+ return function() {
+ var that = this,
+ args = arguments,
+ mightThrow = function() {
+ var returned, then;
+
+ // Support: Promises/A+ section 2.3.3.3.3
+ // https://promisesaplus.com/#point-59
+ // Ignore double-resolution attempts
+ if ( depth < maxDepth ) {
+ return;
+ }
+
+ returned = handler.apply( that, args );
+
+ // Support: Promises/A+ section 2.3.1
+ // https://promisesaplus.com/#point-48
+ if ( returned === deferred.promise() ) {
+ throw new TypeError( "Thenable self-resolution" );
+ }
+
+ // Support: Promises/A+ sections 2.3.3.1, 3.5
+ // https://promisesaplus.com/#point-54
+ // https://promisesaplus.com/#point-75
+ // Retrieve `then` only once
+ then = returned &&
+
+ // Support: Promises/A+ section 2.3.4
+ // https://promisesaplus.com/#point-64
+ // Only check objects and functions for thenability
+ ( typeof returned === "object" ||
+ typeof returned === "function" ) &&
+ returned.then;
+
+ // Handle a returned thenable
+ if ( isFunction( then ) ) {
+
+ // Special processors (notify) just wait for resolution
+ if ( special ) {
+ then.call(
+ returned,
+ resolve( maxDepth, deferred, Identity, special ),
+ resolve( maxDepth, deferred, Thrower, special )
+ );
+
+ // Normal processors (resolve) also hook into progress
+ } else {
+
+ // ...and disregard older resolution values
+ maxDepth++;
+
+ then.call(
+ returned,
+ resolve( maxDepth, deferred, Identity, special ),
+ resolve( maxDepth, deferred, Thrower, special ),
+ resolve( maxDepth, deferred, Identity,
+ deferred.notifyWith )
+ );
+ }
+
+ // Handle all other returned values
+ } else {
+
+ // Only substitute handlers pass on context
+ // and multiple values (non-spec behavior)
+ if ( handler !== Identity ) {
+ that = undefined;
+ args = [ returned ];
+ }
+
+ // Process the value(s)
+ // Default process is resolve
+ ( special || deferred.resolveWith )( that, args );
+ }
+ },
+
+ // Only normal processors (resolve) catch and reject exceptions
+ process = special ?
+ mightThrow :
+ function() {
+ try {
+ mightThrow();
+ } catch ( e ) {
+
+ if ( jQuery.Deferred.exceptionHook ) {
+ jQuery.Deferred.exceptionHook( e,
+ process.stackTrace );
+ }
+
+ // Support: Promises/A+ section 2.3.3.3.4.1
+ // https://promisesaplus.com/#point-61
+ // Ignore post-resolution exceptions
+ if ( depth + 1 >= maxDepth ) {
+
+ // Only substitute handlers pass on context
+ // and multiple values (non-spec behavior)
+ if ( handler !== Thrower ) {
+ that = undefined;
+ args = [ e ];
+ }
+
+ deferred.rejectWith( that, args );
+ }
+ }
+ };
+
+ // Support: Promises/A+ section 2.3.3.3.1
+ // https://promisesaplus.com/#point-57
+ // Re-resolve promises immediately to dodge false rejection from
+ // subsequent errors
+ if ( depth ) {
+ process();
+ } else {
+
+ // Call an optional hook to record the stack, in case of exception
+ // since it's otherwise lost when execution goes async
+ if ( jQuery.Deferred.getStackHook ) {
+ process.stackTrace = jQuery.Deferred.getStackHook();
+ }
+ window.setTimeout( process );
+ }
+ };
+ }
+
+ return jQuery.Deferred( function( newDefer ) {
+
+ // progress_handlers.add( ... )
+ tuples[ 0 ][ 3 ].add(
+ resolve(
+ 0,
+ newDefer,
+ isFunction( onProgress ) ?
+ onProgress :
+ Identity,
+ newDefer.notifyWith
+ )
+ );
+
+ // fulfilled_handlers.add( ... )
+ tuples[ 1 ][ 3 ].add(
+ resolve(
+ 0,
+ newDefer,
+ isFunction( onFulfilled ) ?
+ onFulfilled :
+ Identity
+ )
+ );
+
+ // rejected_handlers.add( ... )
+ tuples[ 2 ][ 3 ].add(
+ resolve(
+ 0,
+ newDefer,
+ isFunction( onRejected ) ?
+ onRejected :
+ Thrower
+ )
+ );
+ } ).promise();
+ },
+
+ // Get a promise for this deferred
+ // If obj is provided, the promise aspect is added to the object
+ promise: function( obj ) {
+ return obj != null ? jQuery.extend( obj, promise ) : promise;
+ }
+ },
+ deferred = {};
+
+ // Add list-specific methods
+ jQuery.each( tuples, function( i, tuple ) {
+ var list = tuple[ 2 ],
+ stateString = tuple[ 5 ];
+
+ // promise.progress = list.add
+ // promise.done = list.add
+ // promise.fail = list.add
+ promise[ tuple[ 1 ] ] = list.add;
+
+ // Handle state
+ if ( stateString ) {
+ list.add(
+ function() {
+
+ // state = "resolved" (i.e., fulfilled)
+ // state = "rejected"
+ state = stateString;
+ },
+
+ // rejected_callbacks.disable
+ // fulfilled_callbacks.disable
+ tuples[ 3 - i ][ 2 ].disable,
+
+ // rejected_handlers.disable
+ // fulfilled_handlers.disable
+ tuples[ 3 - i ][ 3 ].disable,
+
+ // progress_callbacks.lock
+ tuples[ 0 ][ 2 ].lock,
+
+ // progress_handlers.lock
+ tuples[ 0 ][ 3 ].lock
+ );
+ }
+
+ // progress_handlers.fire
+ // fulfilled_handlers.fire
+ // rejected_handlers.fire
+ list.add( tuple[ 3 ].fire );
+
+ // deferred.notify = function() { deferred.notifyWith(...) }
+ // deferred.resolve = function() { deferred.resolveWith(...) }
+ // deferred.reject = function() { deferred.rejectWith(...) }
+ deferred[ tuple[ 0 ] ] = function() {
+ deferred[ tuple[ 0 ] + "With" ]( this === deferred ? undefined : this, arguments );
+ return this;
+ };
+
+ // deferred.notifyWith = list.fireWith
+ // deferred.resolveWith = list.fireWith
+ // deferred.rejectWith = list.fireWith
+ deferred[ tuple[ 0 ] + "With" ] = list.fireWith;
+ } );
+
+ // Make the deferred a promise
+ promise.promise( deferred );
+
+ // Call given func if any
+ if ( func ) {
+ func.call( deferred, deferred );
+ }
+
+ // All done!
+ return deferred;
+ },
+
+ // Deferred helper
+ when: function( singleValue ) {
+ var
+
+ // count of uncompleted subordinates
+ remaining = arguments.length,
+
+ // count of unprocessed arguments
+ i = remaining,
+
+ // subordinate fulfillment data
+ resolveContexts = Array( i ),
+ resolveValues = slice.call( arguments ),
+
+ // the primary Deferred
+ primary = jQuery.Deferred(),
+
+ // subordinate callback factory
+ updateFunc = function( i ) {
+ return function( value ) {
+ resolveContexts[ i ] = this;
+ resolveValues[ i ] = arguments.length > 1 ? slice.call( arguments ) : value;
+ if ( !( --remaining ) ) {
+ primary.resolveWith( resolveContexts, resolveValues );
+ }
+ };
+ };
+
+ // Single- and empty arguments are adopted like Promise.resolve
+ if ( remaining <= 1 ) {
+ adoptValue( singleValue, primary.done( updateFunc( i ) ).resolve, primary.reject,
+ !remaining );
+
+ // Use .then() to unwrap secondary thenables (cf. gh-3000)
+ if ( primary.state() === "pending" ||
+ isFunction( resolveValues[ i ] && resolveValues[ i ].then ) ) {
+
+ return primary.then();
+ }
+ }
+
+ // Multiple arguments are aggregated like Promise.all array elements
+ while ( i-- ) {
+ adoptValue( resolveValues[ i ], updateFunc( i ), primary.reject );
+ }
+
+ return primary.promise();
+ }
+} );
+
+
+// These usually indicate a programmer mistake during development,
+// warn about them ASAP rather than swallowing them by default.
+var rerrorNames = /^(Eval|Internal|Range|Reference|Syntax|Type|URI)Error$/;
+
+jQuery.Deferred.exceptionHook = function( error, stack ) {
+
+ // Support: IE 8 - 9 only
+ // Console exists when dev tools are open, which can happen at any time
+ if ( window.console && window.console.warn && error && rerrorNames.test( error.name ) ) {
+ window.console.warn( "jQuery.Deferred exception: " + error.message, error.stack, stack );
+ }
+};
+
+
+
+
+jQuery.readyException = function( error ) {
+ window.setTimeout( function() {
+ throw error;
+ } );
+};
+
+
+
+
+// The deferred used on DOM ready
+var readyList = jQuery.Deferred();
+
+jQuery.fn.ready = function( fn ) {
+
+ readyList
+ .then( fn )
+
+ // Wrap jQuery.readyException in a function so that the lookup
+ // happens at the time of error handling instead of callback
+ // registration.
+ .catch( function( error ) {
+ jQuery.readyException( error );
+ } );
+
+ return this;
+};
+
+jQuery.extend( {
+
+ // Is the DOM ready to be used? Set to true once it occurs.
+ isReady: false,
+
+ // A counter to track how many items to wait for before
+ // the ready event fires. See #6781
+ readyWait: 1,
+
+ // Handle when the DOM is ready
+ ready: function( wait ) {
+
+ // Abort if there are pending holds or we're already ready
+ if ( wait === true ? --jQuery.readyWait : jQuery.isReady ) {
+ return;
+ }
+
+ // Remember that the DOM is ready
+ jQuery.isReady = true;
+
+ // If a normal DOM Ready event fired, decrement, and wait if need be
+ if ( wait !== true && --jQuery.readyWait > 0 ) {
+ return;
+ }
+
+ // If there are functions bound, to execute
+ readyList.resolveWith( document, [ jQuery ] );
+ }
+} );
+
+jQuery.ready.then = readyList.then;
+
+// The ready event handler and self cleanup method
+function completed() {
+ document.removeEventListener( "DOMContentLoaded", completed );
+ window.removeEventListener( "load", completed );
+ jQuery.ready();
+}
+
+// Catch cases where $(document).ready() is called
+// after the browser event has already occurred.
+// Support: IE <=9 - 10 only
+// Older IE sometimes signals "interactive" too soon
+if ( document.readyState === "complete" ||
+ ( document.readyState !== "loading" && !document.documentElement.doScroll ) ) {
+
+ // Handle it asynchronously to allow scripts the opportunity to delay ready
+ window.setTimeout( jQuery.ready );
+
+} else {
+
+ // Use the handy event callback
+ document.addEventListener( "DOMContentLoaded", completed );
+
+ // A fallback to window.onload, that will always work
+ window.addEventListener( "load", completed );
+}
+
+
+
+
+// Multifunctional method to get and set values of a collection
+// The value/s can optionally be executed if it's a function
+var access = function( elems, fn, key, value, chainable, emptyGet, raw ) {
+ var i = 0,
+ len = elems.length,
+ bulk = key == null;
+
+ // Sets many values
+ if ( toType( key ) === "object" ) {
+ chainable = true;
+ for ( i in key ) {
+ access( elems, fn, i, key[ i ], true, emptyGet, raw );
+ }
+
+ // Sets one value
+ } else if ( value !== undefined ) {
+ chainable = true;
+
+ if ( !isFunction( value ) ) {
+ raw = true;
+ }
+
+ if ( bulk ) {
+
+ // Bulk operations run against the entire set
+ if ( raw ) {
+ fn.call( elems, value );
+ fn = null;
+
+ // ...except when executing function values
+ } else {
+ bulk = fn;
+ fn = function( elem, _key, value ) {
+ return bulk.call( jQuery( elem ), value );
+ };
+ }
+ }
+
+ if ( fn ) {
+ for ( ; i < len; i++ ) {
+ fn(
+ elems[ i ], key, raw ?
+ value :
+ value.call( elems[ i ], i, fn( elems[ i ], key ) )
+ );
+ }
+ }
+ }
+
+ if ( chainable ) {
+ return elems;
+ }
+
+ // Gets
+ if ( bulk ) {
+ return fn.call( elems );
+ }
+
+ return len ? fn( elems[ 0 ], key ) : emptyGet;
+};
+
+
+// Matches dashed string for camelizing
+var rmsPrefix = /^-ms-/,
+ rdashAlpha = /-([a-z])/g;
+
+// Used by camelCase as callback to replace()
+function fcamelCase( _all, letter ) {
+ return letter.toUpperCase();
+}
+
+// Convert dashed to camelCase; used by the css and data modules
+// Support: IE <=9 - 11, Edge 12 - 15
+// Microsoft forgot to hump their vendor prefix (#9572)
+function camelCase( string ) {
+ return string.replace( rmsPrefix, "ms-" ).replace( rdashAlpha, fcamelCase );
+}
+var acceptData = function( owner ) {
+
+ // Accepts only:
+ // - Node
+ // - Node.ELEMENT_NODE
+ // - Node.DOCUMENT_NODE
+ // - Object
+ // - Any
+ return owner.nodeType === 1 || owner.nodeType === 9 || !( +owner.nodeType );
+};
+
+
+
+
+function Data() {
+ this.expando = jQuery.expando + Data.uid++;
+}
+
+Data.uid = 1;
+
+Data.prototype = {
+
+ cache: function( owner ) {
+
+ // Check if the owner object already has a cache
+ var value = owner[ this.expando ];
+
+ // If not, create one
+ if ( !value ) {
+ value = {};
+
+ // We can accept data for non-element nodes in modern browsers,
+ // but we should not, see #8335.
+ // Always return an empty object.
+ if ( acceptData( owner ) ) {
+
+ // If it is a node unlikely to be stringify-ed or looped over
+ // use plain assignment
+ if ( owner.nodeType ) {
+ owner[ this.expando ] = value;
+
+ // Otherwise secure it in a non-enumerable property
+ // configurable must be true to allow the property to be
+ // deleted when data is removed
+ } else {
+ Object.defineProperty( owner, this.expando, {
+ value: value,
+ configurable: true
+ } );
+ }
+ }
+ }
+
+ return value;
+ },
+ set: function( owner, data, value ) {
+ var prop,
+ cache = this.cache( owner );
+
+ // Handle: [ owner, key, value ] args
+ // Always use camelCase key (gh-2257)
+ if ( typeof data === "string" ) {
+ cache[ camelCase( data ) ] = value;
+
+ // Handle: [ owner, { properties } ] args
+ } else {
+
+ // Copy the properties one-by-one to the cache object
+ for ( prop in data ) {
+ cache[ camelCase( prop ) ] = data[ prop ];
+ }
+ }
+ return cache;
+ },
+ get: function( owner, key ) {
+ return key === undefined ?
+ this.cache( owner ) :
+
+ // Always use camelCase key (gh-2257)
+ owner[ this.expando ] && owner[ this.expando ][ camelCase( key ) ];
+ },
+ access: function( owner, key, value ) {
+
+ // In cases where either:
+ //
+ // 1. No key was specified
+ // 2. A string key was specified, but no value provided
+ //
+ // Take the "read" path and allow the get method to determine
+ // which value to return, respectively either:
+ //
+ // 1. The entire cache object
+ // 2. The data stored at the key
+ //
+ if ( key === undefined ||
+ ( ( key && typeof key === "string" ) && value === undefined ) ) {
+
+ return this.get( owner, key );
+ }
+
+ // When the key is not a string, or both a key and value
+ // are specified, set or extend (existing objects) with either:
+ //
+ // 1. An object of properties
+ // 2. A key and value
+ //
+ this.set( owner, key, value );
+
+ // Since the "set" path can have two possible entry points
+ // return the expected data based on which path was taken[*]
+ return value !== undefined ? value : key;
+ },
+ remove: function( owner, key ) {
+ var i,
+ cache = owner[ this.expando ];
+
+ if ( cache === undefined ) {
+ return;
+ }
+
+ if ( key !== undefined ) {
+
+ // Support array or space separated string of keys
+ if ( Array.isArray( key ) ) {
+
+ // If key is an array of keys...
+ // We always set camelCase keys, so remove that.
+ key = key.map( camelCase );
+ } else {
+ key = camelCase( key );
+
+ // If a key with the spaces exists, use it.
+ // Otherwise, create an array by matching non-whitespace
+ key = key in cache ?
+ [ key ] :
+ ( key.match( rnothtmlwhite ) || [] );
+ }
+
+ i = key.length;
+
+ while ( i-- ) {
+ delete cache[ key[ i ] ];
+ }
+ }
+
+ // Remove the expando if there's no more data
+ if ( key === undefined || jQuery.isEmptyObject( cache ) ) {
+
+ // Support: Chrome <=35 - 45
+ // Webkit & Blink performance suffers when deleting properties
+ // from DOM nodes, so set to undefined instead
+ // https://bugs.chromium.org/p/chromium/issues/detail?id=378607 (bug restricted)
+ if ( owner.nodeType ) {
+ owner[ this.expando ] = undefined;
+ } else {
+ delete owner[ this.expando ];
+ }
+ }
+ },
+ hasData: function( owner ) {
+ var cache = owner[ this.expando ];
+ return cache !== undefined && !jQuery.isEmptyObject( cache );
+ }
+};
+var dataPriv = new Data();
+
+var dataUser = new Data();
+
+
+
+// Implementation Summary
+//
+// 1. Enforce API surface and semantic compatibility with 1.9.x branch
+// 2. Improve the module's maintainability by reducing the storage
+// paths to a single mechanism.
+// 3. Use the same single mechanism to support "private" and "user" data.
+// 4. _Never_ expose "private" data to user code (TODO: Drop _data, _removeData)
+// 5. Avoid exposing implementation details on user objects (eg. expando properties)
+// 6. Provide a clear path for implementation upgrade to WeakMap in 2014
+
+var rbrace = /^(?:\{[\w\W]*\}|\[[\w\W]*\])$/,
+ rmultiDash = /[A-Z]/g;
+
+function getData( data ) {
+ if ( data === "true" ) {
+ return true;
+ }
+
+ if ( data === "false" ) {
+ return false;
+ }
+
+ if ( data === "null" ) {
+ return null;
+ }
+
+ // Only convert to a number if it doesn't change the string
+ if ( data === +data + "" ) {
+ return +data;
+ }
+
+ if ( rbrace.test( data ) ) {
+ return JSON.parse( data );
+ }
+
+ return data;
+}
+
+function dataAttr( elem, key, data ) {
+ var name;
+
+ // If nothing was found internally, try to fetch any
+ // data from the HTML5 data-* attribute
+ if ( data === undefined && elem.nodeType === 1 ) {
+ name = "data-" + key.replace( rmultiDash, "-$&" ).toLowerCase();
+ data = elem.getAttribute( name );
+
+ if ( typeof data === "string" ) {
+ try {
+ data = getData( data );
+ } catch ( e ) {}
+
+ // Make sure we set the data so it isn't changed later
+ dataUser.set( elem, key, data );
+ } else {
+ data = undefined;
+ }
+ }
+ return data;
+}
+
+jQuery.extend( {
+ hasData: function( elem ) {
+ return dataUser.hasData( elem ) || dataPriv.hasData( elem );
+ },
+
+ data: function( elem, name, data ) {
+ return dataUser.access( elem, name, data );
+ },
+
+ removeData: function( elem, name ) {
+ dataUser.remove( elem, name );
+ },
+
+ // TODO: Now that all calls to _data and _removeData have been replaced
+ // with direct calls to dataPriv methods, these can be deprecated.
+ _data: function( elem, name, data ) {
+ return dataPriv.access( elem, name, data );
+ },
+
+ _removeData: function( elem, name ) {
+ dataPriv.remove( elem, name );
+ }
+} );
+
+jQuery.fn.extend( {
+ data: function( key, value ) {
+ var i, name, data,
+ elem = this[ 0 ],
+ attrs = elem && elem.attributes;
+
+ // Gets all values
+ if ( key === undefined ) {
+ if ( this.length ) {
+ data = dataUser.get( elem );
+
+ if ( elem.nodeType === 1 && !dataPriv.get( elem, "hasDataAttrs" ) ) {
+ i = attrs.length;
+ while ( i-- ) {
+
+ // Support: IE 11 only
+ // The attrs elements can be null (#14894)
+ if ( attrs[ i ] ) {
+ name = attrs[ i ].name;
+ if ( name.indexOf( "data-" ) === 0 ) {
+ name = camelCase( name.slice( 5 ) );
+ dataAttr( elem, name, data[ name ] );
+ }
+ }
+ }
+ dataPriv.set( elem, "hasDataAttrs", true );
+ }
+ }
+
+ return data;
+ }
+
+ // Sets multiple values
+ if ( typeof key === "object" ) {
+ return this.each( function() {
+ dataUser.set( this, key );
+ } );
+ }
+
+ return access( this, function( value ) {
+ var data;
+
+ // The calling jQuery object (element matches) is not empty
+ // (and therefore has an element appears at this[ 0 ]) and the
+ // `value` parameter was not undefined. An empty jQuery object
+ // will result in `undefined` for elem = this[ 0 ] which will
+ // throw an exception if an attempt to read a data cache is made.
+ if ( elem && value === undefined ) {
+
+ // Attempt to get data from the cache
+ // The key will always be camelCased in Data
+ data = dataUser.get( elem, key );
+ if ( data !== undefined ) {
+ return data;
+ }
+
+ // Attempt to "discover" the data in
+ // HTML5 custom data-* attrs
+ data = dataAttr( elem, key );
+ if ( data !== undefined ) {
+ return data;
+ }
+
+ // We tried really hard, but the data doesn't exist.
+ return;
+ }
+
+ // Set the data...
+ this.each( function() {
+
+ // We always store the camelCased key
+ dataUser.set( this, key, value );
+ } );
+ }, null, value, arguments.length > 1, null, true );
+ },
+
+ removeData: function( key ) {
+ return this.each( function() {
+ dataUser.remove( this, key );
+ } );
+ }
+} );
+
+
+jQuery.extend( {
+ queue: function( elem, type, data ) {
+ var queue;
+
+ if ( elem ) {
+ type = ( type || "fx" ) + "queue";
+ queue = dataPriv.get( elem, type );
+
+ // Speed up dequeue by getting out quickly if this is just a lookup
+ if ( data ) {
+ if ( !queue || Array.isArray( data ) ) {
+ queue = dataPriv.access( elem, type, jQuery.makeArray( data ) );
+ } else {
+ queue.push( data );
+ }
+ }
+ return queue || [];
+ }
+ },
+
+ dequeue: function( elem, type ) {
+ type = type || "fx";
+
+ var queue = jQuery.queue( elem, type ),
+ startLength = queue.length,
+ fn = queue.shift(),
+ hooks = jQuery._queueHooks( elem, type ),
+ next = function() {
+ jQuery.dequeue( elem, type );
+ };
+
+ // If the fx queue is dequeued, always remove the progress sentinel
+ if ( fn === "inprogress" ) {
+ fn = queue.shift();
+ startLength--;
+ }
+
+ if ( fn ) {
+
+ // Add a progress sentinel to prevent the fx queue from being
+ // automatically dequeued
+ if ( type === "fx" ) {
+ queue.unshift( "inprogress" );
+ }
+
+ // Clear up the last queue stop function
+ delete hooks.stop;
+ fn.call( elem, next, hooks );
+ }
+
+ if ( !startLength && hooks ) {
+ hooks.empty.fire();
+ }
+ },
+
+ // Not public - generate a queueHooks object, or return the current one
+ _queueHooks: function( elem, type ) {
+ var key = type + "queueHooks";
+ return dataPriv.get( elem, key ) || dataPriv.access( elem, key, {
+ empty: jQuery.Callbacks( "once memory" ).add( function() {
+ dataPriv.remove( elem, [ type + "queue", key ] );
+ } )
+ } );
+ }
+} );
+
+jQuery.fn.extend( {
+ queue: function( type, data ) {
+ var setter = 2;
+
+ if ( typeof type !== "string" ) {
+ data = type;
+ type = "fx";
+ setter--;
+ }
+
+ if ( arguments.length < setter ) {
+ return jQuery.queue( this[ 0 ], type );
+ }
+
+ return data === undefined ?
+ this :
+ this.each( function() {
+ var queue = jQuery.queue( this, type, data );
+
+ // Ensure a hooks for this queue
+ jQuery._queueHooks( this, type );
+
+ if ( type === "fx" && queue[ 0 ] !== "inprogress" ) {
+ jQuery.dequeue( this, type );
+ }
+ } );
+ },
+ dequeue: function( type ) {
+ return this.each( function() {
+ jQuery.dequeue( this, type );
+ } );
+ },
+ clearQueue: function( type ) {
+ return this.queue( type || "fx", [] );
+ },
+
+ // Get a promise resolved when queues of a certain type
+ // are emptied (fx is the type by default)
+ promise: function( type, obj ) {
+ var tmp,
+ count = 1,
+ defer = jQuery.Deferred(),
+ elements = this,
+ i = this.length,
+ resolve = function() {
+ if ( !( --count ) ) {
+ defer.resolveWith( elements, [ elements ] );
+ }
+ };
+
+ if ( typeof type !== "string" ) {
+ obj = type;
+ type = undefined;
+ }
+ type = type || "fx";
+
+ while ( i-- ) {
+ tmp = dataPriv.get( elements[ i ], type + "queueHooks" );
+ if ( tmp && tmp.empty ) {
+ count++;
+ tmp.empty.add( resolve );
+ }
+ }
+ resolve();
+ return defer.promise( obj );
+ }
+} );
+var pnum = ( /[+-]?(?:\d*\.|)\d+(?:[eE][+-]?\d+|)/ ).source;
+
+var rcssNum = new RegExp( "^(?:([+-])=|)(" + pnum + ")([a-z%]*)$", "i" );
+
+
+var cssExpand = [ "Top", "Right", "Bottom", "Left" ];
+
+var documentElement = document.documentElement;
+
+
+
+ var isAttached = function( elem ) {
+ return jQuery.contains( elem.ownerDocument, elem );
+ },
+ composed = { composed: true };
+
+ // Support: IE 9 - 11+, Edge 12 - 18+, iOS 10.0 - 10.2 only
+ // Check attachment across shadow DOM boundaries when possible (gh-3504)
+ // Support: iOS 10.0-10.2 only
+ // Early iOS 10 versions support `attachShadow` but not `getRootNode`,
+ // leading to errors. We need to check for `getRootNode`.
+ if ( documentElement.getRootNode ) {
+ isAttached = function( elem ) {
+ return jQuery.contains( elem.ownerDocument, elem ) ||
+ elem.getRootNode( composed ) === elem.ownerDocument;
+ };
+ }
+var isHiddenWithinTree = function( elem, el ) {
+
+ // isHiddenWithinTree might be called from jQuery#filter function;
+ // in that case, element will be second argument
+ elem = el || elem;
+
+ // Inline style trumps all
+ return elem.style.display === "none" ||
+ elem.style.display === "" &&
+
+ // Otherwise, check computed style
+ // Support: Firefox <=43 - 45
+ // Disconnected elements can have computed display: none, so first confirm that elem is
+ // in the document.
+ isAttached( elem ) &&
+
+ jQuery.css( elem, "display" ) === "none";
+ };
+
+
+
+function adjustCSS( elem, prop, valueParts, tween ) {
+ var adjusted, scale,
+ maxIterations = 20,
+ currentValue = tween ?
+ function() {
+ return tween.cur();
+ } :
+ function() {
+ return jQuery.css( elem, prop, "" );
+ },
+ initial = currentValue(),
+ unit = valueParts && valueParts[ 3 ] || ( jQuery.cssNumber[ prop ] ? "" : "px" ),
+
+ // Starting value computation is required for potential unit mismatches
+ initialInUnit = elem.nodeType &&
+ ( jQuery.cssNumber[ prop ] || unit !== "px" && +initial ) &&
+ rcssNum.exec( jQuery.css( elem, prop ) );
+
+ if ( initialInUnit && initialInUnit[ 3 ] !== unit ) {
+
+ // Support: Firefox <=54
+ // Halve the iteration target value to prevent interference from CSS upper bounds (gh-2144)
+ initial = initial / 2;
+
+ // Trust units reported by jQuery.css
+ unit = unit || initialInUnit[ 3 ];
+
+ // Iteratively approximate from a nonzero starting point
+ initialInUnit = +initial || 1;
+
+ while ( maxIterations-- ) {
+
+ // Evaluate and update our best guess (doubling guesses that zero out).
+ // Finish if the scale equals or crosses 1 (making the old*new product non-positive).
+ jQuery.style( elem, prop, initialInUnit + unit );
+ if ( ( 1 - scale ) * ( 1 - ( scale = currentValue() / initial || 0.5 ) ) <= 0 ) {
+ maxIterations = 0;
+ }
+ initialInUnit = initialInUnit / scale;
+
+ }
+
+ initialInUnit = initialInUnit * 2;
+ jQuery.style( elem, prop, initialInUnit + unit );
+
+ // Make sure we update the tween properties later on
+ valueParts = valueParts || [];
+ }
+
+ if ( valueParts ) {
+ initialInUnit = +initialInUnit || +initial || 0;
+
+ // Apply relative offset (+=/-=) if specified
+ adjusted = valueParts[ 1 ] ?
+ initialInUnit + ( valueParts[ 1 ] + 1 ) * valueParts[ 2 ] :
+ +valueParts[ 2 ];
+ if ( tween ) {
+ tween.unit = unit;
+ tween.start = initialInUnit;
+ tween.end = adjusted;
+ }
+ }
+ return adjusted;
+}
+
+
+var defaultDisplayMap = {};
+
+function getDefaultDisplay( elem ) {
+ var temp,
+ doc = elem.ownerDocument,
+ nodeName = elem.nodeName,
+ display = defaultDisplayMap[ nodeName ];
+
+ if ( display ) {
+ return display;
+ }
+
+ temp = doc.body.appendChild( doc.createElement( nodeName ) );
+ display = jQuery.css( temp, "display" );
+
+ temp.parentNode.removeChild( temp );
+
+ if ( display === "none" ) {
+ display = "block";
+ }
+ defaultDisplayMap[ nodeName ] = display;
+
+ return display;
+}
+
+function showHide( elements, show ) {
+ var display, elem,
+ values = [],
+ index = 0,
+ length = elements.length;
+
+ // Determine new display value for elements that need to change
+ for ( ; index < length; index++ ) {
+ elem = elements[ index ];
+ if ( !elem.style ) {
+ continue;
+ }
+
+ display = elem.style.display;
+ if ( show ) {
+
+ // Since we force visibility upon cascade-hidden elements, an immediate (and slow)
+ // check is required in this first loop unless we have a nonempty display value (either
+ // inline or about-to-be-restored)
+ if ( display === "none" ) {
+ values[ index ] = dataPriv.get( elem, "display" ) || null;
+ if ( !values[ index ] ) {
+ elem.style.display = "";
+ }
+ }
+ if ( elem.style.display === "" && isHiddenWithinTree( elem ) ) {
+ values[ index ] = getDefaultDisplay( elem );
+ }
+ } else {
+ if ( display !== "none" ) {
+ values[ index ] = "none";
+
+ // Remember what we're overwriting
+ dataPriv.set( elem, "display", display );
+ }
+ }
+ }
+
+ // Set the display of the elements in a second loop to avoid constant reflow
+ for ( index = 0; index < length; index++ ) {
+ if ( values[ index ] != null ) {
+ elements[ index ].style.display = values[ index ];
+ }
+ }
+
+ return elements;
+}
+
+jQuery.fn.extend( {
+ show: function() {
+ return showHide( this, true );
+ },
+ hide: function() {
+ return showHide( this );
+ },
+ toggle: function( state ) {
+ if ( typeof state === "boolean" ) {
+ return state ? this.show() : this.hide();
+ }
+
+ return this.each( function() {
+ if ( isHiddenWithinTree( this ) ) {
+ jQuery( this ).show();
+ } else {
+ jQuery( this ).hide();
+ }
+ } );
+ }
+} );
+var rcheckableType = ( /^(?:checkbox|radio)$/i );
+
+var rtagName = ( /<([a-z][^\/\0>\x20\t\r\n\f]*)/i );
+
+var rscriptType = ( /^$|^module$|\/(?:java|ecma)script/i );
+
+
+
+( function() {
+ var fragment = document.createDocumentFragment(),
+ div = fragment.appendChild( document.createElement( "div" ) ),
+ input = document.createElement( "input" );
+
+ // Support: Android 4.0 - 4.3 only
+ // Check state lost if the name is set (#11217)
+ // Support: Windows Web Apps (WWA)
+ // `name` and `type` must use .setAttribute for WWA (#14901)
+ input.setAttribute( "type", "radio" );
+ input.setAttribute( "checked", "checked" );
+ input.setAttribute( "name", "t" );
+
+ div.appendChild( input );
+
+ // Support: Android <=4.1 only
+ // Older WebKit doesn't clone checked state correctly in fragments
+ support.checkClone = div.cloneNode( true ).cloneNode( true ).lastChild.checked;
+
+ // Support: IE <=11 only
+ // Make sure textarea (and checkbox) defaultValue is properly cloned
+ div.innerHTML = "";
+ support.noCloneChecked = !!div.cloneNode( true ).lastChild.defaultValue;
+
+ // Support: IE <=9 only
+ // IE <=9 replaces tags with their contents when inserted outside of
+ // the select element.
+ div.innerHTML = " ";
+ support.option = !!div.lastChild;
+} )();
+
+
+// We have to close these tags to support XHTML (#13200)
+var wrapMap = {
+
+ // XHTML parsers do not magically insert elements in the
+ // same way that tag soup parsers do. So we cannot shorten
+ // this by omitting or other required elements.
+ thead: [ 1, "" ],
+ col: [ 2, "" ],
+ tr: [ 2, "" ],
+ td: [ 3, "" ],
+
+ _default: [ 0, "", "" ]
+};
+
+wrapMap.tbody = wrapMap.tfoot = wrapMap.colgroup = wrapMap.caption = wrapMap.thead;
+wrapMap.th = wrapMap.td;
+
+// Support: IE <=9 only
+if ( !support.option ) {
+ wrapMap.optgroup = wrapMap.option = [ 1, "", " " ];
+}
+
+
+function getAll( context, tag ) {
+
+ // Support: IE <=9 - 11 only
+ // Use typeof to avoid zero-argument method invocation on host objects (#15151)
+ var ret;
+
+ if ( typeof context.getElementsByTagName !== "undefined" ) {
+ ret = context.getElementsByTagName( tag || "*" );
+
+ } else if ( typeof context.querySelectorAll !== "undefined" ) {
+ ret = context.querySelectorAll( tag || "*" );
+
+ } else {
+ ret = [];
+ }
+
+ if ( tag === undefined || tag && nodeName( context, tag ) ) {
+ return jQuery.merge( [ context ], ret );
+ }
+
+ return ret;
+}
+
+
+// Mark scripts as having already been evaluated
+function setGlobalEval( elems, refElements ) {
+ var i = 0,
+ l = elems.length;
+
+ for ( ; i < l; i++ ) {
+ dataPriv.set(
+ elems[ i ],
+ "globalEval",
+ !refElements || dataPriv.get( refElements[ i ], "globalEval" )
+ );
+ }
+}
+
+
+var rhtml = /<|?\w+;/;
+
+function buildFragment( elems, context, scripts, selection, ignored ) {
+ var elem, tmp, tag, wrap, attached, j,
+ fragment = context.createDocumentFragment(),
+ nodes = [],
+ i = 0,
+ l = elems.length;
+
+ for ( ; i < l; i++ ) {
+ elem = elems[ i ];
+
+ if ( elem || elem === 0 ) {
+
+ // Add nodes directly
+ if ( toType( elem ) === "object" ) {
+
+ // Support: Android <=4.0 only, PhantomJS 1 only
+ // push.apply(_, arraylike) throws on ancient WebKit
+ jQuery.merge( nodes, elem.nodeType ? [ elem ] : elem );
+
+ // Convert non-html into a text node
+ } else if ( !rhtml.test( elem ) ) {
+ nodes.push( context.createTextNode( elem ) );
+
+ // Convert html into DOM nodes
+ } else {
+ tmp = tmp || fragment.appendChild( context.createElement( "div" ) );
+
+ // Deserialize a standard representation
+ tag = ( rtagName.exec( elem ) || [ "", "" ] )[ 1 ].toLowerCase();
+ wrap = wrapMap[ tag ] || wrapMap._default;
+ tmp.innerHTML = wrap[ 1 ] + jQuery.htmlPrefilter( elem ) + wrap[ 2 ];
+
+ // Descend through wrappers to the right content
+ j = wrap[ 0 ];
+ while ( j-- ) {
+ tmp = tmp.lastChild;
+ }
+
+ // Support: Android <=4.0 only, PhantomJS 1 only
+ // push.apply(_, arraylike) throws on ancient WebKit
+ jQuery.merge( nodes, tmp.childNodes );
+
+ // Remember the top-level container
+ tmp = fragment.firstChild;
+
+ // Ensure the created nodes are orphaned (#12392)
+ tmp.textContent = "";
+ }
+ }
+ }
+
+ // Remove wrapper from fragment
+ fragment.textContent = "";
+
+ i = 0;
+ while ( ( elem = nodes[ i++ ] ) ) {
+
+ // Skip elements already in the context collection (trac-4087)
+ if ( selection && jQuery.inArray( elem, selection ) > -1 ) {
+ if ( ignored ) {
+ ignored.push( elem );
+ }
+ continue;
+ }
+
+ attached = isAttached( elem );
+
+ // Append to fragment
+ tmp = getAll( fragment.appendChild( elem ), "script" );
+
+ // Preserve script evaluation history
+ if ( attached ) {
+ setGlobalEval( tmp );
+ }
+
+ // Capture executables
+ if ( scripts ) {
+ j = 0;
+ while ( ( elem = tmp[ j++ ] ) ) {
+ if ( rscriptType.test( elem.type || "" ) ) {
+ scripts.push( elem );
+ }
+ }
+ }
+ }
+
+ return fragment;
+}
+
+
+var rtypenamespace = /^([^.]*)(?:\.(.+)|)/;
+
+function returnTrue() {
+ return true;
+}
+
+function returnFalse() {
+ return false;
+}
+
+// Support: IE <=9 - 11+
+// focus() and blur() are asynchronous, except when they are no-op.
+// So expect focus to be synchronous when the element is already active,
+// and blur to be synchronous when the element is not already active.
+// (focus and blur are always synchronous in other supported browsers,
+// this just defines when we can count on it).
+function expectSync( elem, type ) {
+ return ( elem === safeActiveElement() ) === ( type === "focus" );
+}
+
+// Support: IE <=9 only
+// Accessing document.activeElement can throw unexpectedly
+// https://bugs.jquery.com/ticket/13393
+function safeActiveElement() {
+ try {
+ return document.activeElement;
+ } catch ( err ) { }
+}
+
+function on( elem, types, selector, data, fn, one ) {
+ var origFn, type;
+
+ // Types can be a map of types/handlers
+ if ( typeof types === "object" ) {
+
+ // ( types-Object, selector, data )
+ if ( typeof selector !== "string" ) {
+
+ // ( types-Object, data )
+ data = data || selector;
+ selector = undefined;
+ }
+ for ( type in types ) {
+ on( elem, type, selector, data, types[ type ], one );
+ }
+ return elem;
+ }
+
+ if ( data == null && fn == null ) {
+
+ // ( types, fn )
+ fn = selector;
+ data = selector = undefined;
+ } else if ( fn == null ) {
+ if ( typeof selector === "string" ) {
+
+ // ( types, selector, fn )
+ fn = data;
+ data = undefined;
+ } else {
+
+ // ( types, data, fn )
+ fn = data;
+ data = selector;
+ selector = undefined;
+ }
+ }
+ if ( fn === false ) {
+ fn = returnFalse;
+ } else if ( !fn ) {
+ return elem;
+ }
+
+ if ( one === 1 ) {
+ origFn = fn;
+ fn = function( event ) {
+
+ // Can use an empty set, since event contains the info
+ jQuery().off( event );
+ return origFn.apply( this, arguments );
+ };
+
+ // Use same guid so caller can remove using origFn
+ fn.guid = origFn.guid || ( origFn.guid = jQuery.guid++ );
+ }
+ return elem.each( function() {
+ jQuery.event.add( this, types, fn, data, selector );
+ } );
+}
+
+/*
+ * Helper functions for managing events -- not part of the public interface.
+ * Props to Dean Edwards' addEvent library for many of the ideas.
+ */
+jQuery.event = {
+
+ global: {},
+
+ add: function( elem, types, handler, data, selector ) {
+
+ var handleObjIn, eventHandle, tmp,
+ events, t, handleObj,
+ special, handlers, type, namespaces, origType,
+ elemData = dataPriv.get( elem );
+
+ // Only attach events to objects that accept data
+ if ( !acceptData( elem ) ) {
+ return;
+ }
+
+ // Caller can pass in an object of custom data in lieu of the handler
+ if ( handler.handler ) {
+ handleObjIn = handler;
+ handler = handleObjIn.handler;
+ selector = handleObjIn.selector;
+ }
+
+ // Ensure that invalid selectors throw exceptions at attach time
+ // Evaluate against documentElement in case elem is a non-element node (e.g., document)
+ if ( selector ) {
+ jQuery.find.matchesSelector( documentElement, selector );
+ }
+
+ // Make sure that the handler has a unique ID, used to find/remove it later
+ if ( !handler.guid ) {
+ handler.guid = jQuery.guid++;
+ }
+
+ // Init the element's event structure and main handler, if this is the first
+ if ( !( events = elemData.events ) ) {
+ events = elemData.events = Object.create( null );
+ }
+ if ( !( eventHandle = elemData.handle ) ) {
+ eventHandle = elemData.handle = function( e ) {
+
+ // Discard the second event of a jQuery.event.trigger() and
+ // when an event is called after a page has unloaded
+ return typeof jQuery !== "undefined" && jQuery.event.triggered !== e.type ?
+ jQuery.event.dispatch.apply( elem, arguments ) : undefined;
+ };
+ }
+
+ // Handle multiple events separated by a space
+ types = ( types || "" ).match( rnothtmlwhite ) || [ "" ];
+ t = types.length;
+ while ( t-- ) {
+ tmp = rtypenamespace.exec( types[ t ] ) || [];
+ type = origType = tmp[ 1 ];
+ namespaces = ( tmp[ 2 ] || "" ).split( "." ).sort();
+
+ // There *must* be a type, no attaching namespace-only handlers
+ if ( !type ) {
+ continue;
+ }
+
+ // If event changes its type, use the special event handlers for the changed type
+ special = jQuery.event.special[ type ] || {};
+
+ // If selector defined, determine special event api type, otherwise given type
+ type = ( selector ? special.delegateType : special.bindType ) || type;
+
+ // Update special based on newly reset type
+ special = jQuery.event.special[ type ] || {};
+
+ // handleObj is passed to all event handlers
+ handleObj = jQuery.extend( {
+ type: type,
+ origType: origType,
+ data: data,
+ handler: handler,
+ guid: handler.guid,
+ selector: selector,
+ needsContext: selector && jQuery.expr.match.needsContext.test( selector ),
+ namespace: namespaces.join( "." )
+ }, handleObjIn );
+
+ // Init the event handler queue if we're the first
+ if ( !( handlers = events[ type ] ) ) {
+ handlers = events[ type ] = [];
+ handlers.delegateCount = 0;
+
+ // Only use addEventListener if the special events handler returns false
+ if ( !special.setup ||
+ special.setup.call( elem, data, namespaces, eventHandle ) === false ) {
+
+ if ( elem.addEventListener ) {
+ elem.addEventListener( type, eventHandle );
+ }
+ }
+ }
+
+ if ( special.add ) {
+ special.add.call( elem, handleObj );
+
+ if ( !handleObj.handler.guid ) {
+ handleObj.handler.guid = handler.guid;
+ }
+ }
+
+ // Add to the element's handler list, delegates in front
+ if ( selector ) {
+ handlers.splice( handlers.delegateCount++, 0, handleObj );
+ } else {
+ handlers.push( handleObj );
+ }
+
+ // Keep track of which events have ever been used, for event optimization
+ jQuery.event.global[ type ] = true;
+ }
+
+ },
+
+ // Detach an event or set of events from an element
+ remove: function( elem, types, handler, selector, mappedTypes ) {
+
+ var j, origCount, tmp,
+ events, t, handleObj,
+ special, handlers, type, namespaces, origType,
+ elemData = dataPriv.hasData( elem ) && dataPriv.get( elem );
+
+ if ( !elemData || !( events = elemData.events ) ) {
+ return;
+ }
+
+ // Once for each type.namespace in types; type may be omitted
+ types = ( types || "" ).match( rnothtmlwhite ) || [ "" ];
+ t = types.length;
+ while ( t-- ) {
+ tmp = rtypenamespace.exec( types[ t ] ) || [];
+ type = origType = tmp[ 1 ];
+ namespaces = ( tmp[ 2 ] || "" ).split( "." ).sort();
+
+ // Unbind all events (on this namespace, if provided) for the element
+ if ( !type ) {
+ for ( type in events ) {
+ jQuery.event.remove( elem, type + types[ t ], handler, selector, true );
+ }
+ continue;
+ }
+
+ special = jQuery.event.special[ type ] || {};
+ type = ( selector ? special.delegateType : special.bindType ) || type;
+ handlers = events[ type ] || [];
+ tmp = tmp[ 2 ] &&
+ new RegExp( "(^|\\.)" + namespaces.join( "\\.(?:.*\\.|)" ) + "(\\.|$)" );
+
+ // Remove matching events
+ origCount = j = handlers.length;
+ while ( j-- ) {
+ handleObj = handlers[ j ];
+
+ if ( ( mappedTypes || origType === handleObj.origType ) &&
+ ( !handler || handler.guid === handleObj.guid ) &&
+ ( !tmp || tmp.test( handleObj.namespace ) ) &&
+ ( !selector || selector === handleObj.selector ||
+ selector === "**" && handleObj.selector ) ) {
+ handlers.splice( j, 1 );
+
+ if ( handleObj.selector ) {
+ handlers.delegateCount--;
+ }
+ if ( special.remove ) {
+ special.remove.call( elem, handleObj );
+ }
+ }
+ }
+
+ // Remove generic event handler if we removed something and no more handlers exist
+ // (avoids potential for endless recursion during removal of special event handlers)
+ if ( origCount && !handlers.length ) {
+ if ( !special.teardown ||
+ special.teardown.call( elem, namespaces, elemData.handle ) === false ) {
+
+ jQuery.removeEvent( elem, type, elemData.handle );
+ }
+
+ delete events[ type ];
+ }
+ }
+
+ // Remove data and the expando if it's no longer used
+ if ( jQuery.isEmptyObject( events ) ) {
+ dataPriv.remove( elem, "handle events" );
+ }
+ },
+
+ dispatch: function( nativeEvent ) {
+
+ var i, j, ret, matched, handleObj, handlerQueue,
+ args = new Array( arguments.length ),
+
+ // Make a writable jQuery.Event from the native event object
+ event = jQuery.event.fix( nativeEvent ),
+
+ handlers = (
+ dataPriv.get( this, "events" ) || Object.create( null )
+ )[ event.type ] || [],
+ special = jQuery.event.special[ event.type ] || {};
+
+ // Use the fix-ed jQuery.Event rather than the (read-only) native event
+ args[ 0 ] = event;
+
+ for ( i = 1; i < arguments.length; i++ ) {
+ args[ i ] = arguments[ i ];
+ }
+
+ event.delegateTarget = this;
+
+ // Call the preDispatch hook for the mapped type, and let it bail if desired
+ if ( special.preDispatch && special.preDispatch.call( this, event ) === false ) {
+ return;
+ }
+
+ // Determine handlers
+ handlerQueue = jQuery.event.handlers.call( this, event, handlers );
+
+ // Run delegates first; they may want to stop propagation beneath us
+ i = 0;
+ while ( ( matched = handlerQueue[ i++ ] ) && !event.isPropagationStopped() ) {
+ event.currentTarget = matched.elem;
+
+ j = 0;
+ while ( ( handleObj = matched.handlers[ j++ ] ) &&
+ !event.isImmediatePropagationStopped() ) {
+
+ // If the event is namespaced, then each handler is only invoked if it is
+ // specially universal or its namespaces are a superset of the event's.
+ if ( !event.rnamespace || handleObj.namespace === false ||
+ event.rnamespace.test( handleObj.namespace ) ) {
+
+ event.handleObj = handleObj;
+ event.data = handleObj.data;
+
+ ret = ( ( jQuery.event.special[ handleObj.origType ] || {} ).handle ||
+ handleObj.handler ).apply( matched.elem, args );
+
+ if ( ret !== undefined ) {
+ if ( ( event.result = ret ) === false ) {
+ event.preventDefault();
+ event.stopPropagation();
+ }
+ }
+ }
+ }
+ }
+
+ // Call the postDispatch hook for the mapped type
+ if ( special.postDispatch ) {
+ special.postDispatch.call( this, event );
+ }
+
+ return event.result;
+ },
+
+ handlers: function( event, handlers ) {
+ var i, handleObj, sel, matchedHandlers, matchedSelectors,
+ handlerQueue = [],
+ delegateCount = handlers.delegateCount,
+ cur = event.target;
+
+ // Find delegate handlers
+ if ( delegateCount &&
+
+ // Support: IE <=9
+ // Black-hole SVG instance trees (trac-13180)
+ cur.nodeType &&
+
+ // Support: Firefox <=42
+ // Suppress spec-violating clicks indicating a non-primary pointer button (trac-3861)
+ // https://www.w3.org/TR/DOM-Level-3-Events/#event-type-click
+ // Support: IE 11 only
+ // ...but not arrow key "clicks" of radio inputs, which can have `button` -1 (gh-2343)
+ !( event.type === "click" && event.button >= 1 ) ) {
+
+ for ( ; cur !== this; cur = cur.parentNode || this ) {
+
+ // Don't check non-elements (#13208)
+ // Don't process clicks on disabled elements (#6911, #8165, #11382, #11764)
+ if ( cur.nodeType === 1 && !( event.type === "click" && cur.disabled === true ) ) {
+ matchedHandlers = [];
+ matchedSelectors = {};
+ for ( i = 0; i < delegateCount; i++ ) {
+ handleObj = handlers[ i ];
+
+ // Don't conflict with Object.prototype properties (#13203)
+ sel = handleObj.selector + " ";
+
+ if ( matchedSelectors[ sel ] === undefined ) {
+ matchedSelectors[ sel ] = handleObj.needsContext ?
+ jQuery( sel, this ).index( cur ) > -1 :
+ jQuery.find( sel, this, null, [ cur ] ).length;
+ }
+ if ( matchedSelectors[ sel ] ) {
+ matchedHandlers.push( handleObj );
+ }
+ }
+ if ( matchedHandlers.length ) {
+ handlerQueue.push( { elem: cur, handlers: matchedHandlers } );
+ }
+ }
+ }
+ }
+
+ // Add the remaining (directly-bound) handlers
+ cur = this;
+ if ( delegateCount < handlers.length ) {
+ handlerQueue.push( { elem: cur, handlers: handlers.slice( delegateCount ) } );
+ }
+
+ return handlerQueue;
+ },
+
+ addProp: function( name, hook ) {
+ Object.defineProperty( jQuery.Event.prototype, name, {
+ enumerable: true,
+ configurable: true,
+
+ get: isFunction( hook ) ?
+ function() {
+ if ( this.originalEvent ) {
+ return hook( this.originalEvent );
+ }
+ } :
+ function() {
+ if ( this.originalEvent ) {
+ return this.originalEvent[ name ];
+ }
+ },
+
+ set: function( value ) {
+ Object.defineProperty( this, name, {
+ enumerable: true,
+ configurable: true,
+ writable: true,
+ value: value
+ } );
+ }
+ } );
+ },
+
+ fix: function( originalEvent ) {
+ return originalEvent[ jQuery.expando ] ?
+ originalEvent :
+ new jQuery.Event( originalEvent );
+ },
+
+ special: {
+ load: {
+
+ // Prevent triggered image.load events from bubbling to window.load
+ noBubble: true
+ },
+ click: {
+
+ // Utilize native event to ensure correct state for checkable inputs
+ setup: function( data ) {
+
+ // For mutual compressibility with _default, replace `this` access with a local var.
+ // `|| data` is dead code meant only to preserve the variable through minification.
+ var el = this || data;
+
+ // Claim the first handler
+ if ( rcheckableType.test( el.type ) &&
+ el.click && nodeName( el, "input" ) ) {
+
+ // dataPriv.set( el, "click", ... )
+ leverageNative( el, "click", returnTrue );
+ }
+
+ // Return false to allow normal processing in the caller
+ return false;
+ },
+ trigger: function( data ) {
+
+ // For mutual compressibility with _default, replace `this` access with a local var.
+ // `|| data` is dead code meant only to preserve the variable through minification.
+ var el = this || data;
+
+ // Force setup before triggering a click
+ if ( rcheckableType.test( el.type ) &&
+ el.click && nodeName( el, "input" ) ) {
+
+ leverageNative( el, "click" );
+ }
+
+ // Return non-false to allow normal event-path propagation
+ return true;
+ },
+
+ // For cross-browser consistency, suppress native .click() on links
+ // Also prevent it if we're currently inside a leveraged native-event stack
+ _default: function( event ) {
+ var target = event.target;
+ return rcheckableType.test( target.type ) &&
+ target.click && nodeName( target, "input" ) &&
+ dataPriv.get( target, "click" ) ||
+ nodeName( target, "a" );
+ }
+ },
+
+ beforeunload: {
+ postDispatch: function( event ) {
+
+ // Support: Firefox 20+
+ // Firefox doesn't alert if the returnValue field is not set.
+ if ( event.result !== undefined && event.originalEvent ) {
+ event.originalEvent.returnValue = event.result;
+ }
+ }
+ }
+ }
+};
+
+// Ensure the presence of an event listener that handles manually-triggered
+// synthetic events by interrupting progress until reinvoked in response to
+// *native* events that it fires directly, ensuring that state changes have
+// already occurred before other listeners are invoked.
+function leverageNative( el, type, expectSync ) {
+
+ // Missing expectSync indicates a trigger call, which must force setup through jQuery.event.add
+ if ( !expectSync ) {
+ if ( dataPriv.get( el, type ) === undefined ) {
+ jQuery.event.add( el, type, returnTrue );
+ }
+ return;
+ }
+
+ // Register the controller as a special universal handler for all event namespaces
+ dataPriv.set( el, type, false );
+ jQuery.event.add( el, type, {
+ namespace: false,
+ handler: function( event ) {
+ var notAsync, result,
+ saved = dataPriv.get( this, type );
+
+ if ( ( event.isTrigger & 1 ) && this[ type ] ) {
+
+ // Interrupt processing of the outer synthetic .trigger()ed event
+ // Saved data should be false in such cases, but might be a leftover capture object
+ // from an async native handler (gh-4350)
+ if ( !saved.length ) {
+
+ // Store arguments for use when handling the inner native event
+ // There will always be at least one argument (an event object), so this array
+ // will not be confused with a leftover capture object.
+ saved = slice.call( arguments );
+ dataPriv.set( this, type, saved );
+
+ // Trigger the native event and capture its result
+ // Support: IE <=9 - 11+
+ // focus() and blur() are asynchronous
+ notAsync = expectSync( this, type );
+ this[ type ]();
+ result = dataPriv.get( this, type );
+ if ( saved !== result || notAsync ) {
+ dataPriv.set( this, type, false );
+ } else {
+ result = {};
+ }
+ if ( saved !== result ) {
+
+ // Cancel the outer synthetic event
+ event.stopImmediatePropagation();
+ event.preventDefault();
+
+ // Support: Chrome 86+
+ // In Chrome, if an element having a focusout handler is blurred by
+ // clicking outside of it, it invokes the handler synchronously. If
+ // that handler calls `.remove()` on the element, the data is cleared,
+ // leaving `result` undefined. We need to guard against this.
+ return result && result.value;
+ }
+
+ // If this is an inner synthetic event for an event with a bubbling surrogate
+ // (focus or blur), assume that the surrogate already propagated from triggering the
+ // native event and prevent that from happening again here.
+ // This technically gets the ordering wrong w.r.t. to `.trigger()` (in which the
+ // bubbling surrogate propagates *after* the non-bubbling base), but that seems
+ // less bad than duplication.
+ } else if ( ( jQuery.event.special[ type ] || {} ).delegateType ) {
+ event.stopPropagation();
+ }
+
+ // If this is a native event triggered above, everything is now in order
+ // Fire an inner synthetic event with the original arguments
+ } else if ( saved.length ) {
+
+ // ...and capture the result
+ dataPriv.set( this, type, {
+ value: jQuery.event.trigger(
+
+ // Support: IE <=9 - 11+
+ // Extend with the prototype to reset the above stopImmediatePropagation()
+ jQuery.extend( saved[ 0 ], jQuery.Event.prototype ),
+ saved.slice( 1 ),
+ this
+ )
+ } );
+
+ // Abort handling of the native event
+ event.stopImmediatePropagation();
+ }
+ }
+ } );
+}
+
+jQuery.removeEvent = function( elem, type, handle ) {
+
+ // This "if" is needed for plain objects
+ if ( elem.removeEventListener ) {
+ elem.removeEventListener( type, handle );
+ }
+};
+
+jQuery.Event = function( src, props ) {
+
+ // Allow instantiation without the 'new' keyword
+ if ( !( this instanceof jQuery.Event ) ) {
+ return new jQuery.Event( src, props );
+ }
+
+ // Event object
+ if ( src && src.type ) {
+ this.originalEvent = src;
+ this.type = src.type;
+
+ // Events bubbling up the document may have been marked as prevented
+ // by a handler lower down the tree; reflect the correct value.
+ this.isDefaultPrevented = src.defaultPrevented ||
+ src.defaultPrevented === undefined &&
+
+ // Support: Android <=2.3 only
+ src.returnValue === false ?
+ returnTrue :
+ returnFalse;
+
+ // Create target properties
+ // Support: Safari <=6 - 7 only
+ // Target should not be a text node (#504, #13143)
+ this.target = ( src.target && src.target.nodeType === 3 ) ?
+ src.target.parentNode :
+ src.target;
+
+ this.currentTarget = src.currentTarget;
+ this.relatedTarget = src.relatedTarget;
+
+ // Event type
+ } else {
+ this.type = src;
+ }
+
+ // Put explicitly provided properties onto the event object
+ if ( props ) {
+ jQuery.extend( this, props );
+ }
+
+ // Create a timestamp if incoming event doesn't have one
+ this.timeStamp = src && src.timeStamp || Date.now();
+
+ // Mark it as fixed
+ this[ jQuery.expando ] = true;
+};
+
+// jQuery.Event is based on DOM3 Events as specified by the ECMAScript Language Binding
+// https://www.w3.org/TR/2003/WD-DOM-Level-3-Events-20030331/ecma-script-binding.html
+jQuery.Event.prototype = {
+ constructor: jQuery.Event,
+ isDefaultPrevented: returnFalse,
+ isPropagationStopped: returnFalse,
+ isImmediatePropagationStopped: returnFalse,
+ isSimulated: false,
+
+ preventDefault: function() {
+ var e = this.originalEvent;
+
+ this.isDefaultPrevented = returnTrue;
+
+ if ( e && !this.isSimulated ) {
+ e.preventDefault();
+ }
+ },
+ stopPropagation: function() {
+ var e = this.originalEvent;
+
+ this.isPropagationStopped = returnTrue;
+
+ if ( e && !this.isSimulated ) {
+ e.stopPropagation();
+ }
+ },
+ stopImmediatePropagation: function() {
+ var e = this.originalEvent;
+
+ this.isImmediatePropagationStopped = returnTrue;
+
+ if ( e && !this.isSimulated ) {
+ e.stopImmediatePropagation();
+ }
+
+ this.stopPropagation();
+ }
+};
+
+// Includes all common event props including KeyEvent and MouseEvent specific props
+jQuery.each( {
+ altKey: true,
+ bubbles: true,
+ cancelable: true,
+ changedTouches: true,
+ ctrlKey: true,
+ detail: true,
+ eventPhase: true,
+ metaKey: true,
+ pageX: true,
+ pageY: true,
+ shiftKey: true,
+ view: true,
+ "char": true,
+ code: true,
+ charCode: true,
+ key: true,
+ keyCode: true,
+ button: true,
+ buttons: true,
+ clientX: true,
+ clientY: true,
+ offsetX: true,
+ offsetY: true,
+ pointerId: true,
+ pointerType: true,
+ screenX: true,
+ screenY: true,
+ targetTouches: true,
+ toElement: true,
+ touches: true,
+ which: true
+}, jQuery.event.addProp );
+
+jQuery.each( { focus: "focusin", blur: "focusout" }, function( type, delegateType ) {
+ jQuery.event.special[ type ] = {
+
+ // Utilize native event if possible so blur/focus sequence is correct
+ setup: function() {
+
+ // Claim the first handler
+ // dataPriv.set( this, "focus", ... )
+ // dataPriv.set( this, "blur", ... )
+ leverageNative( this, type, expectSync );
+
+ // Return false to allow normal processing in the caller
+ return false;
+ },
+ trigger: function() {
+
+ // Force setup before trigger
+ leverageNative( this, type );
+
+ // Return non-false to allow normal event-path propagation
+ return true;
+ },
+
+ // Suppress native focus or blur as it's already being fired
+ // in leverageNative.
+ _default: function() {
+ return true;
+ },
+
+ delegateType: delegateType
+ };
+} );
+
+// Create mouseenter/leave events using mouseover/out and event-time checks
+// so that event delegation works in jQuery.
+// Do the same for pointerenter/pointerleave and pointerover/pointerout
+//
+// Support: Safari 7 only
+// Safari sends mouseenter too often; see:
+// https://bugs.chromium.org/p/chromium/issues/detail?id=470258
+// for the description of the bug (it existed in older Chrome versions as well).
+jQuery.each( {
+ mouseenter: "mouseover",
+ mouseleave: "mouseout",
+ pointerenter: "pointerover",
+ pointerleave: "pointerout"
+}, function( orig, fix ) {
+ jQuery.event.special[ orig ] = {
+ delegateType: fix,
+ bindType: fix,
+
+ handle: function( event ) {
+ var ret,
+ target = this,
+ related = event.relatedTarget,
+ handleObj = event.handleObj;
+
+ // For mouseenter/leave call the handler if related is outside the target.
+ // NB: No relatedTarget if the mouse left/entered the browser window
+ if ( !related || ( related !== target && !jQuery.contains( target, related ) ) ) {
+ event.type = handleObj.origType;
+ ret = handleObj.handler.apply( this, arguments );
+ event.type = fix;
+ }
+ return ret;
+ }
+ };
+} );
+
+jQuery.fn.extend( {
+
+ on: function( types, selector, data, fn ) {
+ return on( this, types, selector, data, fn );
+ },
+ one: function( types, selector, data, fn ) {
+ return on( this, types, selector, data, fn, 1 );
+ },
+ off: function( types, selector, fn ) {
+ var handleObj, type;
+ if ( types && types.preventDefault && types.handleObj ) {
+
+ // ( event ) dispatched jQuery.Event
+ handleObj = types.handleObj;
+ jQuery( types.delegateTarget ).off(
+ handleObj.namespace ?
+ handleObj.origType + "." + handleObj.namespace :
+ handleObj.origType,
+ handleObj.selector,
+ handleObj.handler
+ );
+ return this;
+ }
+ if ( typeof types === "object" ) {
+
+ // ( types-object [, selector] )
+ for ( type in types ) {
+ this.off( type, selector, types[ type ] );
+ }
+ return this;
+ }
+ if ( selector === false || typeof selector === "function" ) {
+
+ // ( types [, fn] )
+ fn = selector;
+ selector = undefined;
+ }
+ if ( fn === false ) {
+ fn = returnFalse;
+ }
+ return this.each( function() {
+ jQuery.event.remove( this, types, fn, selector );
+ } );
+ }
+} );
+
+
+var
+
+ // Support: IE <=10 - 11, Edge 12 - 13 only
+ // In IE/Edge using regex groups here causes severe slowdowns.
+ // See https://connect.microsoft.com/IE/feedback/details/1736512/
+ rnoInnerhtml = /",rE:!0,sL:""}},s,{cN:"pi",b:/<\?\w+/,e:/\?>/,r:10},{cN:"tag",b:"?",e:"/?>",c:[{cN:"title",b:/[^ \/><\n\t]+/,r:0},c]}]}});hljs.registerLanguage("autohotkey",function(e){var r={cN:"escape",b:"`[\\s\\S]"},c=e.C(";","$",{r:0}),n=[{cN:"built_in",b:"A_[a-zA-Z0-9]+"},{cN:"built_in",bK:"ComSpec Clipboard ClipboardAll ErrorLevel"}];return{cI:!0,k:{keyword:"Break Continue Else Gosub If Loop Return While",literal:"A true false NOT AND OR"},c:n.concat([r,e.inherit(e.QSM,{c:[r]}),c,{cN:"number",b:e.NR,r:0},{cN:"var_expand",b:"%",e:"%",i:"\\n",c:[r]},{cN:"label",c:[r],v:[{b:'^[^\\n";]+::(?!=)'},{b:'^[^\\n";]+:(?!=)',r:0}]},{b:",\\s*,",r:10}])}});hljs.registerLanguage("r",function(e){var r="([a-zA-Z]|\\.[a-zA-Z.])[a-zA-Z0-9._]*";return{c:[e.HCM,{b:r,l:r,k:{keyword:"function if in break next repeat else for return switch while try tryCatch stop warning require library attach detach source setMethod setGeneric setGroupGeneric setClass ...",literal:"NULL NA TRUE FALSE T F Inf NaN NA_integer_|10 NA_real_|10 NA_character_|10 NA_complex_|10"},r:0},{cN:"number",b:"0[xX][0-9a-fA-F]+[Li]?\\b",r:0},{cN:"number",b:"\\d+(?:[eE][+\\-]?\\d*)?L\\b",r:0},{cN:"number",b:"\\d+\\.(?!\\d)(?:i\\b)?",r:0},{cN:"number",b:"\\d+(?:\\.\\d*)?(?:[eE][+\\-]?\\d*)?i?\\b",r:0},{cN:"number",b:"\\.\\d+(?:[eE][+\\-]?\\d*)?i?\\b",r:0},{b:"`",e:"`",r:0},{cN:"string",c:[e.BE],v:[{b:'"',e:'"'},{b:"'",e:"'"}]}]}});hljs.registerLanguage("cs",function(e){var r="abstract as base bool break byte case catch char checked const continue decimal dynamic default delegate do double else enum event explicit extern false finally fixed float for foreach goto if implicit in int interface internal is lock long null when object operator out override params private protected public readonly ref sbyte sealed short sizeof stackalloc static string struct switch this true try typeof uint ulong unchecked unsafe ushort using virtual volatile void while async protected public private internal ascending descending from get group into join let orderby partial select set value var where yield",t=e.IR+"(<"+e.IR+">)?";return{aliases:["csharp"],k:r,i:/::/,c:[e.C("///","$",{rB:!0,c:[{cN:"xmlDocTag",v:[{b:"///",r:0},{b:""},{b:"?",e:">"}]}]}),e.CLCM,e.CBCM,{cN:"preprocessor",b:"#",e:"$",k:"if else elif endif define undef warning error line region endregion pragma checksum"},{cN:"string",b:'@"',e:'"',c:[{b:'""'}]},e.ASM,e.QSM,e.CNM,{bK:"class namespace interface",e:/[{;=]/,i:/[^\s:]/,c:[e.TM,e.CLCM,e.CBCM]},{bK:"new return throw await",r:0},{cN:"function",b:"("+t+"\\s+)+"+e.IR+"\\s*\\(",rB:!0,e:/[{;=]/,eE:!0,k:r,c:[{b:e.IR+"\\s*\\(",rB:!0,c:[e.TM],r:0},{cN:"params",b:/\(/,e:/\)/,k:r,r:0,c:[e.ASM,e.QSM,e.CNM,e.CBCM]},e.CLCM,e.CBCM]}]}});hljs.registerLanguage("nsis",function(e){var t={cN:"symbol",b:"\\$(ADMINTOOLS|APPDATA|CDBURN_AREA|CMDLINE|COMMONFILES32|COMMONFILES64|COMMONFILES|COOKIES|DESKTOP|DOCUMENTS|EXEDIR|EXEFILE|EXEPATH|FAVORITES|FONTS|HISTORY|HWNDPARENT|INSTDIR|INTERNET_CACHE|LANGUAGE|LOCALAPPDATA|MUSIC|NETHOOD|OUTDIR|PICTURES|PLUGINSDIR|PRINTHOOD|PROFILE|PROGRAMFILES32|PROGRAMFILES64|PROGRAMFILES|QUICKLAUNCH|RECENT|RESOURCES_LOCALIZED|RESOURCES|SENDTO|SMPROGRAMS|SMSTARTUP|STARTMENU|SYSDIR|TEMP|TEMPLATES|VIDEOS|WINDIR)"},n={cN:"constant",b:"\\$+{[a-zA-Z0-9_]+}"},i={cN:"variable",b:"\\$+[a-zA-Z0-9_]+",i:"\\(\\){}"},r={cN:"constant",b:"\\$+\\([a-zA-Z0-9_]+\\)"},o={cN:"params",b:"(ARCHIVE|FILE_ATTRIBUTE_ARCHIVE|FILE_ATTRIBUTE_NORMAL|FILE_ATTRIBUTE_OFFLINE|FILE_ATTRIBUTE_READONLY|FILE_ATTRIBUTE_SYSTEM|FILE_ATTRIBUTE_TEMPORARY|HKCR|HKCU|HKDD|HKEY_CLASSES_ROOT|HKEY_CURRENT_CONFIG|HKEY_CURRENT_USER|HKEY_DYN_DATA|HKEY_LOCAL_MACHINE|HKEY_PERFORMANCE_DATA|HKEY_USERS|HKLM|HKPD|HKU|IDABORT|IDCANCEL|IDIGNORE|IDNO|IDOK|IDRETRY|IDYES|MB_ABORTRETRYIGNORE|MB_DEFBUTTON1|MB_DEFBUTTON2|MB_DEFBUTTON3|MB_DEFBUTTON4|MB_ICONEXCLAMATION|MB_ICONINFORMATION|MB_ICONQUESTION|MB_ICONSTOP|MB_OK|MB_OKCANCEL|MB_RETRYCANCEL|MB_RIGHT|MB_RTLREADING|MB_SETFOREGROUND|MB_TOPMOST|MB_USERICON|MB_YESNO|NORMAL|OFFLINE|READONLY|SHCTX|SHELL_CONTEXT|SYSTEM|TEMPORARY)"},l={cN:"constant",b:"\\!(addincludedir|addplugindir|appendfile|cd|define|delfile|echo|else|endif|error|execute|finalize|getdllversionsystem|ifdef|ifmacrodef|ifmacrondef|ifndef|if|include|insertmacro|macroend|macro|makensis|packhdr|searchparse|searchreplace|tempfile|undef|verbose|warning)"};return{cI:!1,k:{keyword:"Abort AddBrandingImage AddSize AllowRootDirInstall AllowSkipFiles AutoCloseWindow BGFont BGGradient BrandingText BringToFront Call CallInstDLL Caption ChangeUI CheckBitmap ClearErrors CompletedText ComponentText CopyFiles CRCCheck CreateDirectory CreateFont CreateShortCut Delete DeleteINISec DeleteINIStr DeleteRegKey DeleteRegValue DetailPrint DetailsButtonText DirText DirVar DirVerify EnableWindow EnumRegKey EnumRegValue Exch Exec ExecShell ExecWait ExpandEnvStrings File FileBufSize FileClose FileErrorText FileOpen FileRead FileReadByte FileReadUTF16LE FileReadWord FileSeek FileWrite FileWriteByte FileWriteUTF16LE FileWriteWord FindClose FindFirst FindNext FindWindow FlushINI FunctionEnd GetCurInstType GetCurrentAddress GetDlgItem GetDLLVersion GetDLLVersionLocal GetErrorLevel GetFileTime GetFileTimeLocal GetFullPathName GetFunctionAddress GetInstDirError GetLabelAddress GetTempFileName Goto HideWindow Icon IfAbort IfErrors IfFileExists IfRebootFlag IfSilent InitPluginsDir InstallButtonText InstallColors InstallDir InstallDirRegKey InstProgressFlags InstType InstTypeGetText InstTypeSetText IntCmp IntCmpU IntFmt IntOp IsWindow LangString LicenseBkColor LicenseData LicenseForceSelection LicenseLangString LicenseText LoadLanguageFile LockWindow LogSet LogText ManifestDPIAware ManifestSupportedOS MessageBox MiscButtonText Name Nop OutFile Page PageCallbacks PageExEnd Pop Push Quit ReadEnvStr ReadINIStr ReadRegDWORD ReadRegStr Reboot RegDLL Rename RequestExecutionLevel ReserveFile Return RMDir SearchPath SectionEnd SectionGetFlags SectionGetInstTypes SectionGetSize SectionGetText SectionGroupEnd SectionIn SectionSetFlags SectionSetInstTypes SectionSetSize SectionSetText SendMessage SetAutoClose SetBrandingImage SetCompress SetCompressor SetCompressorDictSize SetCtlColors SetCurInstType SetDatablockOptimize SetDateSave SetDetailsPrint SetDetailsView SetErrorLevel SetErrors SetFileAttributes SetFont SetOutPath SetOverwrite SetPluginUnload SetRebootFlag SetRegView SetShellVarContext SetSilent ShowInstDetails ShowUninstDetails ShowWindow SilentInstall SilentUnInstall Sleep SpaceTexts StrCmp StrCmpS StrCpy StrLen SubCaption SubSectionEnd Unicode UninstallButtonText UninstallCaption UninstallIcon UninstallSubCaption UninstallText UninstPage UnRegDLL Var VIAddVersionKey VIFileVersion VIProductVersion WindowIcon WriteINIStr WriteRegBin WriteRegDWORD WriteRegExpandStr WriteRegStr WriteUninstaller XPStyle",literal:"admin all auto both colored current false force hide highest lastused leave listonly none normal notset off on open print show silent silentlog smooth textonly true user "},c:[e.HCM,e.CBCM,{cN:"string",b:'"',e:'"',i:"\\n",c:[{cN:"symbol",b:"\\$(\\\\(n|r|t)|\\$)"},t,n,i,r]},e.C(";","$",{r:0}),{cN:"function",bK:"Function PageEx Section SectionGroup SubSection",e:"$"},l,n,i,r,o,e.NM,{cN:"literal",b:e.IR+"::"+e.IR}]}});hljs.registerLanguage("less",function(e){var r="[\\w-]+",t="("+r+"|@{"+r+"})",a=[],c=[],n=function(e){return{cN:"string",b:"~?"+e+".*?"+e}},i=function(e,r,t){return{cN:e,b:r,r:t}},s=function(r,t,a){return e.inherit({cN:r,b:t+"\\(",e:"\\(",rB:!0,eE:!0,r:0},a)},b={b:"\\(",e:"\\)",c:c,r:0};c.push(e.CLCM,e.CBCM,n("'"),n('"'),e.CSSNM,i("hexcolor","#[0-9A-Fa-f]+\\b"),s("function","(url|data-uri)",{starts:{cN:"string",e:"[\\)\\n]",eE:!0}}),s("function",r),b,i("variable","@@?"+r,10),i("variable","@{"+r+"}"),i("built_in","~?`[^`]*?`"),{cN:"attribute",b:r+"\\s*:",e:":",rB:!0,eE:!0});var o=c.concat({b:"{",e:"}",c:a}),u={bK:"when",eW:!0,c:[{bK:"and not"}].concat(c)},C={cN:"attribute",b:t,e:":",eE:!0,c:[e.CLCM,e.CBCM],i:/\S/,starts:{e:"[;}]",rE:!0,c:c,i:"[<=$]"}},l={cN:"at_rule",b:"@(import|media|charset|font-face|(-[a-z]+-)?keyframes|supports|document|namespace|page|viewport|host)\\b",starts:{e:"[;{}]",rE:!0,c:c,r:0}},d={cN:"variable",v:[{b:"@"+r+"\\s*:",r:15},{b:"@"+r}],starts:{e:"[;}]",rE:!0,c:o}},p={v:[{b:"[\\.#:&\\[]",e:"[;{}]"},{b:t+"[^;]*{",e:"{"}],rB:!0,rE:!0,i:"[<='$\"]",c:[e.CLCM,e.CBCM,u,i("keyword","all\\b"),i("variable","@{"+r+"}"),i("tag",t+"%?",0),i("id","#"+t),i("class","\\."+t,0),i("keyword","&",0),s("pseudo",":not"),s("keyword",":extend"),i("pseudo","::?"+t),{cN:"attr_selector",b:"\\[",e:"\\]"},{b:"\\(",e:"\\)",c:o},{b:"!important"}]};return a.push(e.CLCM,e.CBCM,l,d,p,C),{cI:!0,i:"[=>'/<($\"]",c:a}});hljs.registerLanguage("pf",function(t){var o={cN:"variable",b:/\$[\w\d#@][\w\d_]*/},e={cN:"variable",b:/,e:/>/};return{aliases:["pf.conf"],l:/[a-z0-9_<>-]+/,k:{built_in:"block match pass load anchor|5 antispoof|10 set table",keyword:"in out log quick on rdomain inet inet6 proto from port os to routeallow-opts divert-packet divert-reply divert-to flags group icmp-typeicmp6-type label once probability recieved-on rtable prio queuetos tag tagged user keep fragment for os dropaf-to|10 binat-to|10 nat-to|10 rdr-to|10 bitmask least-stats random round-robinsource-hash static-portdup-to reply-to route-toparent bandwidth default min max qlimitblock-policy debug fingerprints hostid limit loginterface optimizationreassemble ruleset-optimization basic none profile skip state-defaultsstate-policy timeoutconst counters persistno modulate synproxy state|5 floating if-bound no-sync pflow|10 sloppysource-track global rule max-src-nodes max-src-states max-src-connmax-src-conn-rate overload flushscrub|5 max-mss min-ttl no-df|10 random-id",literal:"all any no-route self urpf-failed egress|5 unknown"},c:[t.HCM,t.NM,t.QSM,o,e]}});hljs.registerLanguage("lasso",function(e){var r="[a-zA-Z_][a-zA-Z0-9_.]*",a="<\\?(lasso(script)?|=)",t="\\]|\\?>",s={literal:"true false none minimal full all void and or not bw nbw ew new cn ncn lt lte gt gte eq neq rx nrx ft",built_in:"array date decimal duration integer map pair string tag xml null boolean bytes keyword list locale queue set stack staticarray local var variable global data self inherited",keyword:"error_code error_msg error_pop error_push error_reset cache database_names database_schemanames database_tablenames define_tag define_type email_batch encode_set html_comment handle handle_error header if inline iterate ljax_target link link_currentaction link_currentgroup link_currentrecord link_detail link_firstgroup link_firstrecord link_lastgroup link_lastrecord link_nextgroup link_nextrecord link_prevgroup link_prevrecord log loop namespace_using output_none portal private protect records referer referrer repeating resultset rows search_args search_arguments select sort_args sort_arguments thread_atomic value_list while abort case else if_empty if_false if_null if_true loop_abort loop_continue loop_count params params_up return return_value run_children soap_definetag soap_lastrequest soap_lastresponse tag_name ascending average by define descending do equals frozen group handle_failure import in into join let match max min on order parent protected provide public require returnhome skip split_thread sum take thread to trait type where with yield yieldhome"},n=e.C("",{r:0}),o={cN:"preprocessor",b:"\\[noprocess\\]",starts:{cN:"markup",e:"\\[/noprocess\\]",rE:!0,c:[n]}},i={cN:"preprocessor",b:"\\[/noprocess|"+a},l={cN:"variable",b:"'"+r+"'"},c=[e.CLCM,{cN:"javadoc",b:"/\\*\\*!",e:"\\*/",c:[e.PWM]},e.CBCM,e.inherit(e.CNM,{b:e.CNR+"|(-?infinity|nan)\\b"}),e.inherit(e.ASM,{i:null}),e.inherit(e.QSM,{i:null}),{cN:"string",b:"`",e:"`"},{cN:"variable",v:[{b:"[#$]"+r},{b:"#",e:"\\d+",i:"\\W"}]},{cN:"tag",b:"::\\s*",e:r,i:"\\W"},{cN:"attribute",v:[{b:"-"+e.UIR,r:0},{b:"(\\.\\.\\.)"}]},{cN:"subst",v:[{b:"->\\s*",c:[l]},{b:":=|/(?!\\w)=?|[-+*%=<>&|!?\\\\]+",r:0}]},{cN:"built_in",b:"\\.\\.?\\s*",r:0,c:[l]},{cN:"class",bK:"define",rE:!0,e:"\\(|=>",c:[e.inherit(e.TM,{b:e.UIR+"(=(?!>))?"})]}];return{aliases:["ls","lassoscript"],cI:!0,l:r+"|&[lg]t;",k:s,c:[{cN:"preprocessor",b:t,r:0,starts:{cN:"markup",e:"\\[|"+a,rE:!0,r:0,c:[n]}},o,i,{cN:"preprocessor",b:"\\[no_square_brackets",starts:{e:"\\[/no_square_brackets\\]",l:r+"|&[lg]t;",k:s,c:[{cN:"preprocessor",b:t,r:0,starts:{cN:"markup",e:"\\[noprocess\\]|"+a,rE:!0,c:[n]}},o,i].concat(c)}},{cN:"preprocessor",b:"\\[",r:0},{cN:"shebang",b:"^#!.+lasso9\\b",r:10}].concat(c)}});hljs.registerLanguage("prolog",function(c){var r={cN:"atom",b:/[a-z][A-Za-z0-9_]*/,r:0},b={cN:"name",v:[{b:/[A-Z][a-zA-Z0-9_]*/},{b:/_[A-Za-z0-9_]*/}],r:0},a={b:/\(/,e:/\)/,r:0},e={b:/\[/,e:/\]/},n={cN:"comment",b:/%/,e:/$/,c:[c.PWM]},t={cN:"string",b:/`/,e:/`/,c:[c.BE]},g={cN:"string",b:/0\'(\\\'|.)/},N={cN:"string",b:/0\'\\s/},o={b:/:-/},s=[r,b,a,o,e,n,c.CBCM,c.QSM,c.ASM,t,g,N,c.CNM];return a.c=s,e.c=s,{c:s.concat([{b:/\.$/}])}});hljs.registerLanguage("oxygene",function(e){var r="abstract add and array as asc aspect assembly async begin break block by case class concat const copy constructor continue create default delegate desc distinct div do downto dynamic each else empty end ensure enum equals event except exit extension external false final finalize finalizer finally flags for forward from function future global group has if implementation implements implies in index inherited inline interface into invariants is iterator join locked locking loop matching method mod module namespace nested new nil not notify nullable of old on operator or order out override parallel params partial pinned private procedure property protected public queryable raise read readonly record reintroduce remove repeat require result reverse sealed select self sequence set shl shr skip static step soft take then to true try tuple type union unit unsafe until uses using var virtual raises volatile where while with write xor yield await mapped deprecated stdcall cdecl pascal register safecall overload library platform reference packed strict published autoreleasepool selector strong weak unretained",t=e.C("{","}",{r:0}),a=e.C("\\(\\*","\\*\\)",{r:10}),n={cN:"string",b:"'",e:"'",c:[{b:"''"}]},o={cN:"string",b:"(#\\d+)+"},i={cN:"function",bK:"function constructor destructor procedure method",e:"[:;]",k:"function constructor|10 destructor|10 procedure|10 method|10",c:[e.TM,{cN:"params",b:"\\(",e:"\\)",k:r,c:[n,o]},t,a]};return{cI:!0,k:r,i:'("|\\$[G-Zg-z]|\\/\\*||=>|->)',c:[t,a,e.CLCM,n,o,e.NM,i,{cN:"class",b:"=\\bclass\\b",e:"end;",k:r,c:[n,o,t,a,e.CLCM,i]}]}});hljs.registerLanguage("applescript",function(e){var t=e.inherit(e.QSM,{i:""}),r={cN:"params",b:"\\(",e:"\\)",c:["self",e.CNM,t]},o=e.C("--","$"),n=e.C("\\(\\*","\\*\\)",{c:["self",o]}),a=[o,n,e.HCM];return{aliases:["osascript"],k:{keyword:"about above after against and around as at back before beginning behind below beneath beside between but by considering contain contains continue copy div does eighth else end equal equals error every exit fifth first for fourth from front get given global if ignoring in into is it its last local me middle mod my ninth not of on onto or over prop property put ref reference repeat returning script second set seventh since sixth some tell tenth that the|0 then third through thru timeout times to transaction try until where while whose with without",constant:"AppleScript false linefeed return pi quote result space tab true",type:"alias application boolean class constant date file integer list number real record string text",command:"activate beep count delay launch log offset read round run say summarize write",property:"character characters contents day frontmost id item length month name paragraph paragraphs rest reverse running time version weekday word words year"},c:[t,e.CNM,{cN:"type",b:"\\bPOSIX file\\b"},{cN:"command",b:"\\b(clipboard info|the clipboard|info for|list (disks|folder)|mount volume|path to|(close|open for) access|(get|set) eof|current date|do shell script|get volume settings|random number|set volume|system attribute|system info|time to GMT|(load|run|store) script|scripting components|ASCII (character|number)|localized string|choose (application|color|file|file name|folder|from list|remote application|URL)|display (alert|dialog))\\b|^\\s*return\\b"},{cN:"constant",b:"\\b(text item delimiters|current application|missing value)\\b"},{cN:"keyword",b:"\\b(apart from|aside from|instead of|out of|greater than|isn't|(doesn't|does not) (equal|come before|come after|contain)|(greater|less) than( or equal)?|(starts?|ends|begins?) with|contained by|comes (before|after)|a (ref|reference))\\b"},{cN:"property",b:"\\b(POSIX path|(date|time) string|quoted form)\\b"},{cN:"function_start",bK:"on",i:"[${=;\\n]",c:[e.UTM,r]}].concat(a),i:"//|->|=>"}});hljs.registerLanguage("makefile",function(e){var a={cN:"variable",b:/\$\(/,e:/\)/,c:[e.BE]};return{aliases:["mk","mak"],c:[e.HCM,{b:/^\w+\s*\W*=/,rB:!0,r:0,starts:{cN:"constant",e:/\s*\W*=/,eE:!0,starts:{e:/$/,r:0,c:[a]}}},{cN:"title",b:/^[\w]+:\s*$/},{cN:"phony",b:/^\.PHONY:/,e:/$/,k:".PHONY",l:/[\.\w]+/},{b:/^\t+/,e:/$/,r:0,c:[e.QSM,a]}]}});hljs.registerLanguage("dust",function(e){var a="if eq ne lt lte gt gte select default math sep";return{aliases:["dst"],cI:!0,sL:"xml",subLanguageMode:"continuous",c:[{cN:"expression",b:"{",e:"}",r:0,c:[{cN:"begin-block",b:"#[a-zA-Z- .]+",k:a},{cN:"string",b:'"',e:'"'},{cN:"end-block",b:"\\/[a-zA-Z- .]+",k:a},{cN:"variable",b:"[a-zA-Z-.]+",k:a,r:0}]}]}});hljs.registerLanguage("clojure-repl",function(e){return{c:[{cN:"prompt",b:/^([\w.-]+|\s*#_)=>/,starts:{e:/$/,sL:"clojure",subLanguageMode:"continuous"}}]}});hljs.registerLanguage("dart",function(e){var t={cN:"subst",b:"\\$\\{",e:"}",k:"true false null this is new super"},r={cN:"string",v:[{b:"r'''",e:"'''"},{b:'r"""',e:'"""'},{b:"r'",e:"'",i:"\\n"},{b:'r"',e:'"',i:"\\n"},{b:"'''",e:"'''",c:[e.BE,t]},{b:'"""',e:'"""',c:[e.BE,t]},{b:"'",e:"'",i:"\\n",c:[e.BE,t]},{b:'"',e:'"',i:"\\n",c:[e.BE,t]}]};t.c=[e.CNM,r];var n={keyword:"assert break case catch class const continue default do else enum extends false final finally for if in is new null rethrow return super switch this throw true try var void while with",literal:"abstract as dynamic export external factory get implements import library operator part set static typedef",built_in:"print Comparable DateTime Duration Function Iterable Iterator List Map Match Null Object Pattern RegExp Set Stopwatch String StringBuffer StringSink Symbol Type Uri bool double int num document window querySelector querySelectorAll Element ElementList"};return{k:n,c:[r,{cN:"dartdoc",b:"/\\*\\*",e:"\\*/",sL:"markdown",subLanguageMode:"continuous"},{cN:"dartdoc",b:"///",e:"$",sL:"markdown",subLanguageMode:"continuous"},e.CLCM,e.CBCM,{cN:"class",bK:"class interface",e:"{",eE:!0,c:[{bK:"extends implements"},e.UTM]},e.CNM,{cN:"annotation",b:"@[A-Za-z]+"},{b:"=>"}]}});
\ No newline at end of file
diff --git a/static/rest_framework/docs/js/jquery.json-view.min.js b/static/rest_framework/docs/js/jquery.json-view.min.js
new file mode 100644
index 0000000..ce3a604
--- /dev/null
+++ b/static/rest_framework/docs/js/jquery.json-view.min.js
@@ -0,0 +1,7 @@
+/**
+ * jquery.json-view - jQuery collapsible JSON plugin
+ * @version v1.0.0
+ * @link http://github.com/bazh/jquery.json-view
+ * @license MIT
+ */
+!function(e){"use strict";var n=function(n){var a=e(" ",{"class":"collapser",on:{click:function(){var n=e(this);n.toggleClass("collapsed");var a=n.parent().children(".block"),p=a.children("ul");n.hasClass("collapsed")?(p.hide(),a.children(".dots, .comments").show()):(p.show(),a.children(".dots, .comments").hide())}}});return n&&a.addClass("collapsed"),a},a=function(a,p){var t=e.extend({},{nl2br:!0},p),r=function(e){return e.toString()?e.toString().replace(/&/g,"&").replace(/"/g,""").replace(//g,">"):""},s=function(n,a){return e(" ",{"class":a,html:r(n)})},l=function(a,p){switch(e.type(a)){case"object":p||(p=0);var c=e(" ",{"class":"block"}),d=Object.keys(a).length;if(!d)return c.append(s("{","b")).append(" ").append(s("}","b"));c.append(s("{","b"));var i=e("",{"class":"obj collapsible level"+p});return e.each(a,function(a,t){d--;var r=e(" ").append(s('"',"q")).append(a).append(s('"',"q")).append(": ").append(l(t,p+1));-1===["object","array"].indexOf(e.type(t))||e.isEmptyObject(t)||r.prepend(n()),d>0&&r.append(","),i.append(r)}),c.append(i),c.append(s("...","dots")),c.append(s("}","b")),c.append(1===Object.keys(a).length?s("// 1 item","comments"):s("// "+Object.keys(a).length+" items","comments")),c;case"array":p||(p=0);var d=a.length,c=e(" ",{"class":"block"});if(!d)return c.append(s("[","b")).append(" ").append(s("]","b"));c.append(s("[","b"));var i=e("",{"class":"obj collapsible level"+p});return e.each(a,function(a,t){d--;var r=e(" ").append(l(t,p+1));-1===["object","array"].indexOf(e.type(t))||e.isEmptyObject(t)||r.prepend(n()),d>0&&r.append(","),i.append(r)}),c.append(i),c.append(s("...","dots")),c.append(s("]","b")),c.append(1===a.length?s("// 1 item","comments"):s("// "+a.length+" items","comments")),c;case"string":if(a=r(a),/^(http|https|file):\/\/[^\s]+$/i.test(a))return e(" ").append(s('"',"q")).append(e(" ",{href:a,text:a})).append(s('"',"q"));if(t.nl2br){var o=/\n/g;o.test(a)&&(a=(a+"").replace(o," "))}var u=e(" ",{"class":"str"}).html(a);return e(" ").append(s('"',"q")).append(u).append(s('"',"q"));case"number":return s(a.toString(),"num");case"undefined":return s("undefined","undef");case"null":return s("null","null");case"boolean":return s(a?"true":"false","bool")}};return l(a)};return e.fn.jsonView=function(n,p){var t=e(this);if(p=e.extend({},{nl2br:!0},p),"string"==typeof n)try{n=JSON.parse(n)}catch(r){}return t.append(e("
",{"class":"json-view"}).append(a(n,p))),t}}(jQuery);
\ No newline at end of file
diff --git a/static/rest_framework/fonts/fontawesome-webfont.eot b/static/rest_framework/fonts/fontawesome-webfont.eot
new file mode 100644
index 0000000..7c79c6a
Binary files /dev/null and b/static/rest_framework/fonts/fontawesome-webfont.eot differ
diff --git a/static/rest_framework/fonts/fontawesome-webfont.svg b/static/rest_framework/fonts/fontawesome-webfont.svg
new file mode 100644
index 0000000..4b2226d
--- /dev/null
+++ b/static/rest_framework/fonts/fontawesome-webfont.svg
@@ -0,0 +1,414 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/static/rest_framework/fonts/fontawesome-webfont.ttf b/static/rest_framework/fonts/fontawesome-webfont.ttf
new file mode 100644
index 0000000..e89738d
Binary files /dev/null and b/static/rest_framework/fonts/fontawesome-webfont.ttf differ
diff --git a/static/rest_framework/fonts/fontawesome-webfont.woff b/static/rest_framework/fonts/fontawesome-webfont.woff
new file mode 100644
index 0000000..8c1748a
Binary files /dev/null and b/static/rest_framework/fonts/fontawesome-webfont.woff differ
diff --git a/static/rest_framework/fonts/glyphicons-halflings-regular.eot b/static/rest_framework/fonts/glyphicons-halflings-regular.eot
new file mode 100644
index 0000000..b93a495
Binary files /dev/null and b/static/rest_framework/fonts/glyphicons-halflings-regular.eot differ
diff --git a/static/rest_framework/fonts/glyphicons-halflings-regular.svg b/static/rest_framework/fonts/glyphicons-halflings-regular.svg
new file mode 100644
index 0000000..187805a
--- /dev/null
+++ b/static/rest_framework/fonts/glyphicons-halflings-regular.svg
@@ -0,0 +1,288 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/static/rest_framework/fonts/glyphicons-halflings-regular.ttf b/static/rest_framework/fonts/glyphicons-halflings-regular.ttf
new file mode 100644
index 0000000..1413fc6
Binary files /dev/null and b/static/rest_framework/fonts/glyphicons-halflings-regular.ttf differ
diff --git a/static/rest_framework/fonts/glyphicons-halflings-regular.woff b/static/rest_framework/fonts/glyphicons-halflings-regular.woff
new file mode 100644
index 0000000..9e61285
Binary files /dev/null and b/static/rest_framework/fonts/glyphicons-halflings-regular.woff differ
diff --git a/static/rest_framework/fonts/glyphicons-halflings-regular.woff2 b/static/rest_framework/fonts/glyphicons-halflings-regular.woff2
new file mode 100644
index 0000000..64539b5
Binary files /dev/null and b/static/rest_framework/fonts/glyphicons-halflings-regular.woff2 differ
diff --git a/static/rest_framework/img/glyphicons-halflings-white.png b/static/rest_framework/img/glyphicons-halflings-white.png
new file mode 100644
index 0000000..3bf6484
Binary files /dev/null and b/static/rest_framework/img/glyphicons-halflings-white.png differ
diff --git a/static/rest_framework/img/glyphicons-halflings.png b/static/rest_framework/img/glyphicons-halflings.png
new file mode 100644
index 0000000..36c3b1e
Binary files /dev/null and b/static/rest_framework/img/glyphicons-halflings.png differ
diff --git a/static/rest_framework/img/grid.png b/static/rest_framework/img/grid.png
new file mode 100644
index 0000000..878c3ed
Binary files /dev/null and b/static/rest_framework/img/grid.png differ
diff --git a/static/rest_framework/js/ajax-form.js b/static/rest_framework/js/ajax-form.js
new file mode 100644
index 0000000..1483305
--- /dev/null
+++ b/static/rest_framework/js/ajax-form.js
@@ -0,0 +1,127 @@
+function replaceDocument(docString) {
+ var doc = document.open("text/html");
+
+ doc.write(docString);
+ doc.close();
+}
+
+function doAjaxSubmit(e) {
+ var form = $(this);
+ var btn = $(this.clk);
+ var method = (
+ btn.data('method') ||
+ form.data('method') ||
+ form.attr('method') || 'GET'
+ ).toUpperCase();
+
+ if (method === 'GET') {
+ // GET requests can always use standard form submits.
+ return;
+ }
+
+ var contentType =
+ form.find('input[data-override="content-type"]').val() ||
+ form.find('select[data-override="content-type"] option:selected').text();
+
+ if (method === 'POST' && !contentType) {
+ // POST requests can use standard form submits, unless we have
+ // overridden the content type.
+ return;
+ }
+
+ // At this point we need to make an AJAX form submission.
+ e.preventDefault();
+
+ var url = form.attr('action');
+ var data;
+
+ if (contentType) {
+ data = form.find('[data-override="content"]').val() || ''
+
+ if (contentType === 'multipart/form-data') {
+ // We need to add a boundary parameter to the header
+ // We assume the first valid-looking boundary line in the body is correct
+ // regex is from RFC 2046 appendix A
+ var boundaryCharNoSpace = "0-9A-Z'()+_,-./:=?";
+ var boundaryChar = boundaryCharNoSpace + ' ';
+ var re = new RegExp('^--([' + boundaryChar + ']{0,69}[' + boundaryCharNoSpace + '])[\\s]*?$', 'im');
+ var boundary = data.match(re);
+ if (boundary !== null) {
+ contentType += '; boundary="' + boundary[1] + '"';
+ }
+ // Fix textarea.value EOL normalisation (multipart/form-data should use CR+NL, not NL)
+ data = data.replace(/\n/g, '\r\n');
+ }
+ } else {
+ contentType = form.attr('enctype') || form.attr('encoding')
+
+ if (contentType === 'multipart/form-data') {
+ if (!window.FormData) {
+ alert('Your browser does not support AJAX multipart form submissions');
+ return;
+ }
+
+ // Use the FormData API and allow the content type to be set automatically,
+ // so it includes the boundary string.
+ // See https://developer.mozilla.org/en-US/docs/Web/API/FormData/Using_FormData_Objects
+ contentType = false;
+ data = new FormData(form[0]);
+ } else {
+ contentType = 'application/x-www-form-urlencoded; charset=UTF-8'
+ data = form.serialize();
+ }
+ }
+
+ var ret = $.ajax({
+ url: url,
+ method: method,
+ data: data,
+ contentType: contentType,
+ processData: false,
+ headers: {
+ 'Accept': 'text/html; q=1.0, */*'
+ },
+ });
+
+ ret.always(function(data, textStatus, jqXHR) {
+ if (textStatus != 'success') {
+ jqXHR = data;
+ }
+
+ var responseContentType = jqXHR.getResponseHeader("content-type") || "";
+
+ if (responseContentType.toLowerCase().indexOf('text/html') === 0) {
+ replaceDocument(jqXHR.responseText);
+
+ try {
+ // Modify the location and scroll to top, as if after page load.
+ history.replaceState({}, '', url);
+ scroll(0, 0);
+ } catch (err) {
+ // History API not supported, so redirect.
+ window.location = url;
+ }
+ } else {
+ // Not HTML content. We can't open this directly, so redirect.
+ window.location = url;
+ }
+ });
+
+ return ret;
+}
+
+function captureSubmittingElement(e) {
+ var target = e.target;
+ var form = this;
+
+ form.clk = target;
+}
+
+$.fn.ajaxForm = function() {
+ var options = {}
+
+ return this
+ .unbind('submit.form-plugin click.form-plugin')
+ .bind('submit.form-plugin', options, doAjaxSubmit)
+ .bind('click.form-plugin', options, captureSubmittingElement);
+};
diff --git a/static/rest_framework/js/bootstrap.min.js b/static/rest_framework/js/bootstrap.min.js
new file mode 100644
index 0000000..eb0a8b4
--- /dev/null
+++ b/static/rest_framework/js/bootstrap.min.js
@@ -0,0 +1,6 @@
+/*!
+ * Bootstrap v3.4.1 (https://getbootstrap.com/)
+ * Copyright 2011-2019 Twitter, Inc.
+ * Licensed under the MIT license
+ */
+if("undefined"==typeof jQuery)throw new Error("Bootstrap's JavaScript requires jQuery");!function(t){"use strict";var e=jQuery.fn.jquery.split(" ")[0].split(".");if(e[0]<2&&e[1]<9||1==e[0]&&9==e[1]&&e[2]<1||3this.$items.length-1||t<0))return this.sliding?this.$element.one("slid.bs.carousel",function(){e.to(t)}):i==t?this.pause().cycle():this.slide(idocument.documentElement.clientHeight;this.$element.css({paddingLeft:!this.bodyIsOverflowing&&t?this.scrollbarWidth:"",paddingRight:this.bodyIsOverflowing&&!t?this.scrollbarWidth:""})},s.prototype.resetAdjustments=function(){this.$element.css({paddingLeft:"",paddingRight:""})},s.prototype.checkScrollbar=function(){var t=window.innerWidth;if(!t){var e=document.documentElement.getBoundingClientRect();t=e.right-Math.abs(e.left)}this.bodyIsOverflowing=document.body.clientWidth
',trigger:"hover focus",title:"",delay:0,html:!1,container:!1,viewport:{selector:"body",padding:0},sanitize:!0,sanitizeFn:null,whiteList:t},m.prototype.init=function(t,e,i){if(this.enabled=!0,this.type=t,this.$element=g(e),this.options=this.getOptions(i),this.$viewport=this.options.viewport&&g(document).find(g.isFunction(this.options.viewport)?this.options.viewport.call(this,this.$element):this.options.viewport.selector||this.options.viewport),this.inState={click:!1,hover:!1,focus:!1},this.$element[0]instanceof document.constructor&&!this.options.selector)throw new Error("`selector` option must be specified when initializing "+this.type+" on the window.document object!");for(var o=this.options.trigger.split(" "),n=o.length;n--;){var s=o[n];if("click"==s)this.$element.on("click."+this.type,this.options.selector,g.proxy(this.toggle,this));else if("manual"!=s){var a="hover"==s?"mouseenter":"focusin",r="hover"==s?"mouseleave":"focusout";this.$element.on(a+"."+this.type,this.options.selector,g.proxy(this.enter,this)),this.$element.on(r+"."+this.type,this.options.selector,g.proxy(this.leave,this))}}this.options.selector?this._options=g.extend({},this.options,{trigger:"manual",selector:""}):this.fixTitle()},m.prototype.getDefaults=function(){return m.DEFAULTS},m.prototype.getOptions=function(t){var e=this.$element.data();for(var i in e)e.hasOwnProperty(i)&&-1!==g.inArray(i,o)&&delete e[i];return(t=g.extend({},this.getDefaults(),e,t)).delay&&"number"==typeof t.delay&&(t.delay={show:t.delay,hide:t.delay}),t.sanitize&&(t.template=n(t.template,t.whiteList,t.sanitizeFn)),t},m.prototype.getDelegateOptions=function(){var i={},o=this.getDefaults();return this._options&&g.each(this._options,function(t,e){o[t]!=e&&(i[t]=e)}),i},m.prototype.enter=function(t){var e=t instanceof this.constructor?t:g(t.currentTarget).data("bs."+this.type);if(e||(e=new this.constructor(t.currentTarget,this.getDelegateOptions()),g(t.currentTarget).data("bs."+this.type,e)),t instanceof g.Event&&(e.inState["focusin"==t.type?"focus":"hover"]=!0),e.tip().hasClass("in")||"in"==e.hoverState)e.hoverState="in";else{if(clearTimeout(e.timeout),e.hoverState="in",!e.options.delay||!e.options.delay.show)return e.show();e.timeout=setTimeout(function(){"in"==e.hoverState&&e.show()},e.options.delay.show)}},m.prototype.isInStateTrue=function(){for(var t in this.inState)if(this.inState[t])return!0;return!1},m.prototype.leave=function(t){var e=t instanceof this.constructor?t:g(t.currentTarget).data("bs."+this.type);if(e||(e=new this.constructor(t.currentTarget,this.getDelegateOptions()),g(t.currentTarget).data("bs."+this.type,e)),t instanceof g.Event&&(e.inState["focusout"==t.type?"focus":"hover"]=!1),!e.isInStateTrue()){if(clearTimeout(e.timeout),e.hoverState="out",!e.options.delay||!e.options.delay.hide)return e.hide();e.timeout=setTimeout(function(){"out"==e.hoverState&&e.hide()},e.options.delay.hide)}},m.prototype.show=function(){var t=g.Event("show.bs."+this.type);if(this.hasContent()&&this.enabled){this.$element.trigger(t);var e=g.contains(this.$element[0].ownerDocument.documentElement,this.$element[0]);if(t.isDefaultPrevented()||!e)return;var i=this,o=this.tip(),n=this.getUID(this.type);this.setContent(),o.attr("id",n),this.$element.attr("aria-describedby",n),this.options.animation&&o.addClass("fade");var s="function"==typeof this.options.placement?this.options.placement.call(this,o[0],this.$element[0]):this.options.placement,a=/\s?auto?\s?/i,r=a.test(s);r&&(s=s.replace(a,"")||"top"),o.detach().css({top:0,left:0,display:"block"}).addClass(s).data("bs."+this.type,this),this.options.container?o.appendTo(g(document).find(this.options.container)):o.insertAfter(this.$element),this.$element.trigger("inserted.bs."+this.type);var l=this.getPosition(),h=o[0].offsetWidth,d=o[0].offsetHeight;if(r){var p=s,c=this.getPosition(this.$viewport);s="bottom"==s&&l.bottom+d>c.bottom?"top":"top"==s&&l.top-dc.width?"left":"left"==s&&l.left-ha.top+a.height&&(n.top=a.top+a.height-l)}else{var h=e.left-s,d=e.left+s+i;ha.right&&(n.left=a.left+a.width-d)}return n},m.prototype.getTitle=function(){var t=this.$element,e=this.options;return t.attr("data-original-title")||("function"==typeof e.title?e.title.call(t[0]):e.title)},m.prototype.getUID=function(t){for(;t+=~~(1e6*Math.random()),document.getElementById(t););return t},m.prototype.tip=function(){if(!this.$tip&&(this.$tip=g(this.options.template),1!=this.$tip.length))throw new Error(this.type+" `template` option must consist of exactly 1 top-level element!");return this.$tip},m.prototype.arrow=function(){return this.$arrow=this.$arrow||this.tip().find(".tooltip-arrow")},m.prototype.enable=function(){this.enabled=!0},m.prototype.disable=function(){this.enabled=!1},m.prototype.toggleEnabled=function(){this.enabled=!this.enabled},m.prototype.toggle=function(t){var e=this;t&&((e=g(t.currentTarget).data("bs."+this.type))||(e=new this.constructor(t.currentTarget,this.getDelegateOptions()),g(t.currentTarget).data("bs."+this.type,e))),t?(e.inState.click=!e.inState.click,e.isInStateTrue()?e.enter(e):e.leave(e)):e.tip().hasClass("in")?e.leave(e):e.enter(e)},m.prototype.destroy=function(){var t=this;clearTimeout(this.timeout),this.hide(function(){t.$element.off("."+t.type).removeData("bs."+t.type),t.$tip&&t.$tip.detach(),t.$tip=null,t.$arrow=null,t.$viewport=null,t.$element=null})},m.prototype.sanitizeHtml=function(t){return n(t,this.options.whiteList,this.options.sanitizeFn)};var e=g.fn.tooltip;g.fn.tooltip=function i(o){return this.each(function(){var t=g(this),e=t.data("bs.tooltip"),i="object"==typeof o&&o;!e&&/destroy|hide/.test(o)||(e||t.data("bs.tooltip",e=new m(this,i)),"string"==typeof o&&e[o]())})},g.fn.tooltip.Constructor=m,g.fn.tooltip.noConflict=function(){return g.fn.tooltip=e,this}}(jQuery),function(n){"use strict";var s=function(t,e){this.init("popover",t,e)};if(!n.fn.tooltip)throw new Error("Popover requires tooltip.js");s.VERSION="3.4.1",s.DEFAULTS=n.extend({},n.fn.tooltip.Constructor.DEFAULTS,{placement:"right",trigger:"click",content:"",template:''}),((s.prototype=n.extend({},n.fn.tooltip.Constructor.prototype)).constructor=s).prototype.getDefaults=function(){return s.DEFAULTS},s.prototype.setContent=function(){var t=this.tip(),e=this.getTitle(),i=this.getContent();if(this.options.html){var o=typeof i;this.options.sanitize&&(e=this.sanitizeHtml(e),"string"===o&&(i=this.sanitizeHtml(i))),t.find(".popover-title").html(e),t.find(".popover-content").children().detach().end()["string"===o?"html":"append"](i)}else t.find(".popover-title").text(e),t.find(".popover-content").children().detach().end().text(i);t.removeClass("fade top bottom left right in"),t.find(".popover-title").html()||t.find(".popover-title").hide()},s.prototype.hasContent=function(){return this.getTitle()||this.getContent()},s.prototype.getContent=function(){var t=this.$element,e=this.options;return t.attr("data-content")||("function"==typeof e.content?e.content.call(t[0]):e.content)},s.prototype.arrow=function(){return this.$arrow=this.$arrow||this.tip().find(".arrow")};var t=n.fn.popover;n.fn.popover=function e(o){return this.each(function(){var t=n(this),e=t.data("bs.popover"),i="object"==typeof o&&o;!e&&/destroy|hide/.test(o)||(e||t.data("bs.popover",e=new s(this,i)),"string"==typeof o&&e[o]())})},n.fn.popover.Constructor=s,n.fn.popover.noConflict=function(){return n.fn.popover=t,this}}(jQuery),function(s){"use strict";function n(t,e){this.$body=s(document.body),this.$scrollElement=s(t).is(document.body)?s(window):s(t),this.options=s.extend({},n.DEFAULTS,e),this.selector=(this.options.target||"")+" .nav li > a",this.offsets=[],this.targets=[],this.activeTarget=null,this.scrollHeight=0,this.$scrollElement.on("scroll.bs.scrollspy",s.proxy(this.process,this)),this.refresh(),this.process()}function e(o){return this.each(function(){var t=s(this),e=t.data("bs.scrollspy"),i="object"==typeof o&&o;e||t.data("bs.scrollspy",e=new n(this,i)),"string"==typeof o&&e[o]()})}n.VERSION="3.4.1",n.DEFAULTS={offset:10},n.prototype.getScrollHeight=function(){return this.$scrollElement[0].scrollHeight||Math.max(this.$body[0].scrollHeight,document.documentElement.scrollHeight)},n.prototype.refresh=function(){var t=this,o="offset",n=0;this.offsets=[],this.targets=[],this.scrollHeight=this.getScrollHeight(),s.isWindow(this.$scrollElement[0])||(o="position",n=this.$scrollElement.scrollTop()),this.$body.find(this.selector).map(function(){var t=s(this),e=t.data("target")||t.attr("href"),i=/^#./.test(e)&&s(e);return i&&i.length&&i.is(":visible")&&[[i[o]().top+n,e]]||null}).sort(function(t,e){return t[0]-e[0]}).each(function(){t.offsets.push(this[0]),t.targets.push(this[1])})},n.prototype.process=function(){var t,e=this.$scrollElement.scrollTop()+this.options.offset,i=this.getScrollHeight(),o=this.options.offset+i-this.$scrollElement.height(),n=this.offsets,s=this.targets,a=this.activeTarget;if(this.scrollHeight!=i&&this.refresh(),o<=e)return a!=(t=s[s.length-1])&&this.activate(t);if(a&&e=n[t]&&(n[t+1]===undefined||e .active"),n=i&&r.support.transition&&(o.length&&o.hasClass("fade")||!!e.find("> .fade").length);function s(){o.removeClass("active").find("> .dropdown-menu > .active").removeClass("active").end().find('[data-toggle="tab"]').attr("aria-expanded",!1),t.addClass("active").find('[data-toggle="tab"]').attr("aria-expanded",!0),n?(t[0].offsetWidth,t.addClass("in")):t.removeClass("fade"),t.parent(".dropdown-menu").length&&t.closest("li.dropdown").addClass("active").end().find('[data-toggle="tab"]').attr("aria-expanded",!0),i&&i()}o.length&&n?o.one("bsTransitionEnd",s).emulateTransitionEnd(a.TRANSITION_DURATION):s(),o.removeClass("in")};var t=r.fn.tab;r.fn.tab=e,r.fn.tab.Constructor=a,r.fn.tab.noConflict=function(){return r.fn.tab=t,this};var i=function(t){t.preventDefault(),e.call(r(this),"show")};r(document).on("click.bs.tab.data-api",'[data-toggle="tab"]',i).on("click.bs.tab.data-api",'[data-toggle="pill"]',i)}(jQuery),function(l){"use strict";var h=function(t,e){this.options=l.extend({},h.DEFAULTS,e);var i=this.options.target===h.DEFAULTS.target?l(this.options.target):l(document).find(this.options.target);this.$target=i.on("scroll.bs.affix.data-api",l.proxy(this.checkPosition,this)).on("click.bs.affix.data-api",l.proxy(this.checkPositionWithEventLoop,this)),this.$element=l(t),this.affixed=null,this.unpin=null,this.pinnedOffset=null,this.checkPosition()};function i(o){return this.each(function(){var t=l(this),e=t.data("bs.affix"),i="object"==typeof o&&o;e||t.data("bs.affix",e=new h(this,i)),"string"==typeof o&&e[o]()})}h.VERSION="3.4.1",h.RESET="affix affix-top affix-bottom",h.DEFAULTS={offset:0,target:window},h.prototype.getState=function(t,e,i,o){var n=this.$target.scrollTop(),s=this.$element.offset(),a=this.$target.height();if(null!=i&&"top"==this.affixed)return n 0 && arguments[0] !== undefined ? arguments[0] : {};
+
+ _classCallCheck(this, BasicAuthentication);
+
+ var username = options.username;
+ var password = options.password;
+ var hash = window.btoa(username + ':' + password);
+ this.auth = 'Basic ' + hash;
+ }
+
+ _createClass(BasicAuthentication, [{
+ key: 'authenticate',
+ value: function authenticate(options) {
+ options.headers['Authorization'] = this.auth;
+ return options;
+ }
+ }]);
+
+ return BasicAuthentication;
+}();
+
+module.exports = {
+ BasicAuthentication: BasicAuthentication
+};
+
+},{}],2:[function(require,module,exports){
+'use strict';
+
+var basic = require('./basic');
+var session = require('./session');
+var token = require('./token');
+
+module.exports = {
+ BasicAuthentication: basic.BasicAuthentication,
+ SessionAuthentication: session.SessionAuthentication,
+ TokenAuthentication: token.TokenAuthentication
+};
+
+},{"./basic":1,"./session":3,"./token":4}],3:[function(require,module,exports){
+'use strict';
+
+var _createClass = function () { function defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } return function (Constructor, protoProps, staticProps) { if (protoProps) defineProperties(Constructor.prototype, protoProps); if (staticProps) defineProperties(Constructor, staticProps); return Constructor; }; }();
+
+function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }
+
+var utils = require('../utils');
+
+function trim(str) {
+ return str.replace(/^\s\s*/, '').replace(/\s\s*$/, '');
+}
+
+function getCookie(cookieName, cookieString) {
+ cookieString = cookieString || window.document.cookie;
+ if (cookieString && cookieString !== '') {
+ var cookies = cookieString.split(';');
+ for (var i = 0; i < cookies.length; i++) {
+ var cookie = trim(cookies[i]);
+ // Does this cookie string begin with the name we want?
+ if (cookie.substring(0, cookieName.length + 1) === cookieName + '=') {
+ return decodeURIComponent(cookie.substring(cookieName.length + 1));
+ }
+ }
+ }
+ return null;
+}
+
+var SessionAuthentication = function () {
+ function SessionAuthentication() {
+ var options = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : {};
+
+ _classCallCheck(this, SessionAuthentication);
+
+ this.csrfToken = getCookie(options.csrfCookieName, options.cookieString);
+ this.csrfHeaderName = options.csrfHeaderName;
+ }
+
+ _createClass(SessionAuthentication, [{
+ key: 'authenticate',
+ value: function authenticate(options) {
+ options.credentials = 'same-origin';
+ if (this.csrfToken && !utils.csrfSafeMethod(options.method)) {
+ options.headers[this.csrfHeaderName] = this.csrfToken;
+ }
+ return options;
+ }
+ }]);
+
+ return SessionAuthentication;
+}();
+
+module.exports = {
+ SessionAuthentication: SessionAuthentication
+};
+
+},{"../utils":15}],4:[function(require,module,exports){
+'use strict';
+
+var _createClass = function () { function defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } return function (Constructor, protoProps, staticProps) { if (protoProps) defineProperties(Constructor.prototype, protoProps); if (staticProps) defineProperties(Constructor, staticProps); return Constructor; }; }();
+
+function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }
+
+var TokenAuthentication = function () {
+ function TokenAuthentication() {
+ var options = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : {};
+
+ _classCallCheck(this, TokenAuthentication);
+
+ this.token = options.token;
+ this.scheme = options.scheme || 'Bearer';
+ }
+
+ _createClass(TokenAuthentication, [{
+ key: 'authenticate',
+ value: function authenticate(options) {
+ options.headers['Authorization'] = this.scheme + ' ' + this.token;
+ return options;
+ }
+ }]);
+
+ return TokenAuthentication;
+}();
+
+module.exports = {
+ TokenAuthentication: TokenAuthentication
+};
+
+},{}],5:[function(require,module,exports){
+'use strict';
+
+var _createClass = function () { function defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } return function (Constructor, protoProps, staticProps) { if (protoProps) defineProperties(Constructor.prototype, protoProps); if (staticProps) defineProperties(Constructor, staticProps); return Constructor; }; }();
+
+function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }
+
+var document = require('./document');
+var codecs = require('./codecs');
+var errors = require('./errors');
+var transports = require('./transports');
+var utils = require('./utils');
+
+function lookupLink(node, keys) {
+ var _iteratorNormalCompletion = true;
+ var _didIteratorError = false;
+ var _iteratorError = undefined;
+
+ try {
+ for (var _iterator = keys[Symbol.iterator](), _step; !(_iteratorNormalCompletion = (_step = _iterator.next()).done); _iteratorNormalCompletion = true) {
+ var key = _step.value;
+
+ if (node instanceof document.Document) {
+ node = node.content[key];
+ } else {
+ node = node[key];
+ }
+ if (node === undefined) {
+ throw new errors.LinkLookupError('Invalid link lookup: ' + JSON.stringify(keys));
+ }
+ }
+ } catch (err) {
+ _didIteratorError = true;
+ _iteratorError = err;
+ } finally {
+ try {
+ if (!_iteratorNormalCompletion && _iterator.return) {
+ _iterator.return();
+ }
+ } finally {
+ if (_didIteratorError) {
+ throw _iteratorError;
+ }
+ }
+ }
+
+ if (!(node instanceof document.Link)) {
+ throw new errors.LinkLookupError('Invalid link lookup: ' + JSON.stringify(keys));
+ }
+ return node;
+}
+
+var Client = function () {
+ function Client() {
+ var options = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : {};
+
+ _classCallCheck(this, Client);
+
+ var transportOptions = {
+ auth: options.auth || null,
+ headers: options.headers || {},
+ requestCallback: options.requestCallback,
+ responseCallback: options.responseCallback
+ };
+
+ this.decoders = options.decoders || [new codecs.CoreJSONCodec(), new codecs.JSONCodec(), new codecs.TextCodec()];
+ this.transports = options.transports || [new transports.HTTPTransport(transportOptions)];
+ }
+
+ _createClass(Client, [{
+ key: 'action',
+ value: function action(document, keys) {
+ var params = arguments.length > 2 && arguments[2] !== undefined ? arguments[2] : {};
+
+ var link = lookupLink(document, keys);
+ var transport = utils.determineTransport(this.transports, link.url);
+ return transport.action(link, this.decoders, params);
+ }
+ }, {
+ key: 'get',
+ value: function get(url) {
+ var link = new document.Link(url, 'get');
+ var transport = utils.determineTransport(this.transports, url);
+ return transport.action(link, this.decoders);
+ }
+ }]);
+
+ return Client;
+}();
+
+module.exports = {
+ Client: Client
+};
+
+},{"./codecs":7,"./document":10,"./errors":11,"./transports":14,"./utils":15}],6:[function(require,module,exports){
+'use strict';
+
+var _createClass = function () { function defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } return function (Constructor, protoProps, staticProps) { if (protoProps) defineProperties(Constructor.prototype, protoProps); if (staticProps) defineProperties(Constructor, staticProps); return Constructor; }; }();
+
+var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol" ? function (obj) { return typeof obj; } : function (obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; };
+
+function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }
+
+var document = require('../document');
+var URL = require('url-parse');
+
+function unescapeKey(key) {
+ if (key.match(/__(type|meta)$/)) {
+ return key.substring(1);
+ }
+ return key;
+}
+
+function getString(obj, key) {
+ var value = obj[key];
+ if (typeof value === 'string') {
+ return value;
+ }
+ return '';
+}
+
+function getBoolean(obj, key) {
+ var value = obj[key];
+ if (typeof value === 'boolean') {
+ return value;
+ }
+ return false;
+}
+
+function getObject(obj, key) {
+ var value = obj[key];
+ if ((typeof value === 'undefined' ? 'undefined' : _typeof(value)) === 'object') {
+ return value;
+ }
+ return {};
+}
+
+function getArray(obj, key) {
+ var value = obj[key];
+ if (value instanceof Array) {
+ return value;
+ }
+ return [];
+}
+
+function getContent(data, baseUrl) {
+ var excluded = ['_type', '_meta'];
+ var content = {};
+ for (var property in data) {
+ if (data.hasOwnProperty(property) && !excluded.includes(property)) {
+ var key = unescapeKey(property);
+ var value = primitiveToNode(data[property], baseUrl);
+ content[key] = value;
+ }
+ }
+ return content;
+}
+
+function primitiveToNode(data, baseUrl) {
+ var isObject = data instanceof Object && !(data instanceof Array);
+
+ if (isObject && data._type === 'document') {
+ // Document
+ var meta = getObject(data, '_meta');
+ var relativeUrl = getString(meta, 'url');
+ var url = relativeUrl ? URL(relativeUrl, baseUrl).toString() : '';
+ var title = getString(meta, 'title');
+ var description = getString(meta, 'description');
+ var content = getContent(data, url);
+ return new document.Document(url, title, description, content);
+ } else if (isObject && data._type === 'link') {
+ // Link
+ var _relativeUrl = getString(data, 'url');
+ var _url = _relativeUrl ? URL(_relativeUrl, baseUrl).toString() : '';
+ var method = getString(data, 'action') || 'get';
+ var _title = getString(data, 'title');
+ var _description = getString(data, 'description');
+ var fieldsData = getArray(data, 'fields');
+ var fields = [];
+ for (var idx = 0, len = fieldsData.length; idx < len; idx++) {
+ var value = fieldsData[idx];
+ var name = getString(value, 'name');
+ var required = getBoolean(value, 'required');
+ var location = getString(value, 'location');
+ var fieldDescription = getString(value, 'fieldDescription');
+ var field = new document.Field(name, required, location, fieldDescription);
+ fields.push(field);
+ }
+ return new document.Link(_url, method, 'application/json', fields, _title, _description);
+ } else if (isObject) {
+ // Object
+ var _content = {};
+ for (var key in data) {
+ if (data.hasOwnProperty(key)) {
+ _content[key] = primitiveToNode(data[key], baseUrl);
+ }
+ }
+ return _content;
+ } else if (data instanceof Array) {
+ // Object
+ var _content2 = [];
+ for (var _idx = 0, _len = data.length; _idx < _len; _idx++) {
+ _content2.push(primitiveToNode(data[_idx], baseUrl));
+ }
+ return _content2;
+ }
+ // Primitive
+ return data;
+}
+
+var CoreJSONCodec = function () {
+ function CoreJSONCodec() {
+ _classCallCheck(this, CoreJSONCodec);
+
+ this.mediaType = 'application/coreapi+json';
+ }
+
+ _createClass(CoreJSONCodec, [{
+ key: 'decode',
+ value: function decode(text) {
+ var options = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : {};
+
+ var data = text;
+ if (options.preloaded === undefined || !options.preloaded) {
+ data = JSON.parse(text);
+ }
+ return primitiveToNode(data, options.url);
+ }
+ }]);
+
+ return CoreJSONCodec;
+}();
+
+module.exports = {
+ CoreJSONCodec: CoreJSONCodec
+};
+
+},{"../document":10,"url-parse":19}],7:[function(require,module,exports){
+'use strict';
+
+var corejson = require('./corejson');
+var json = require('./json');
+var text = require('./text');
+
+module.exports = {
+ CoreJSONCodec: corejson.CoreJSONCodec,
+ JSONCodec: json.JSONCodec,
+ TextCodec: text.TextCodec
+};
+
+},{"./corejson":6,"./json":8,"./text":9}],8:[function(require,module,exports){
+'use strict';
+
+var _createClass = function () { function defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } return function (Constructor, protoProps, staticProps) { if (protoProps) defineProperties(Constructor.prototype, protoProps); if (staticProps) defineProperties(Constructor, staticProps); return Constructor; }; }();
+
+function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }
+
+var JSONCodec = function () {
+ function JSONCodec() {
+ _classCallCheck(this, JSONCodec);
+
+ this.mediaType = 'application/json';
+ }
+
+ _createClass(JSONCodec, [{
+ key: 'decode',
+ value: function decode(text) {
+ var options = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : {};
+
+ return JSON.parse(text);
+ }
+ }]);
+
+ return JSONCodec;
+}();
+
+module.exports = {
+ JSONCodec: JSONCodec
+};
+
+},{}],9:[function(require,module,exports){
+'use strict';
+
+var _createClass = function () { function defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } return function (Constructor, protoProps, staticProps) { if (protoProps) defineProperties(Constructor.prototype, protoProps); if (staticProps) defineProperties(Constructor, staticProps); return Constructor; }; }();
+
+function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }
+
+var TextCodec = function () {
+ function TextCodec() {
+ _classCallCheck(this, TextCodec);
+
+ this.mediaType = 'text/*';
+ }
+
+ _createClass(TextCodec, [{
+ key: 'decode',
+ value: function decode(text) {
+ var options = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : {};
+
+ return text;
+ }
+ }]);
+
+ return TextCodec;
+}();
+
+module.exports = {
+ TextCodec: TextCodec
+};
+
+},{}],10:[function(require,module,exports){
+'use strict';
+
+function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }
+
+var Document = function Document() {
+ var url = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : '';
+ var title = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : '';
+ var description = arguments.length > 2 && arguments[2] !== undefined ? arguments[2] : '';
+ var content = arguments.length > 3 && arguments[3] !== undefined ? arguments[3] : {};
+
+ _classCallCheck(this, Document);
+
+ this.url = url;
+ this.title = title;
+ this.description = description;
+ this.content = content;
+};
+
+var Link = function Link(url, method) {
+ var encoding = arguments.length > 2 && arguments[2] !== undefined ? arguments[2] : 'application/json';
+ var fields = arguments.length > 3 && arguments[3] !== undefined ? arguments[3] : [];
+ var title = arguments.length > 4 && arguments[4] !== undefined ? arguments[4] : '';
+ var description = arguments.length > 5 && arguments[5] !== undefined ? arguments[5] : '';
+
+ _classCallCheck(this, Link);
+
+ if (url === undefined) {
+ throw new Error('url argument is required');
+ }
+
+ if (method === undefined) {
+ throw new Error('method argument is required');
+ }
+
+ this.url = url;
+ this.method = method;
+ this.encoding = encoding;
+ this.fields = fields;
+ this.title = title;
+ this.description = description;
+};
+
+var Field = function Field(name) {
+ var required = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : false;
+ var location = arguments.length > 2 && arguments[2] !== undefined ? arguments[2] : '';
+ var description = arguments.length > 3 && arguments[3] !== undefined ? arguments[3] : '';
+
+ _classCallCheck(this, Field);
+
+ if (name === undefined) {
+ throw new Error('name argument is required');
+ }
+
+ this.name = name;
+ this.required = required;
+ this.location = location;
+ this.description = description;
+};
+
+module.exports = {
+ Document: Document,
+ Link: Link,
+ Field: Field
+};
+
+},{}],11:[function(require,module,exports){
+'use strict';
+
+function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }
+
+function _possibleConstructorReturn(self, call) { if (!self) { throw new ReferenceError("this hasn't been initialised - super() hasn't been called"); } return call && (typeof call === "object" || typeof call === "function") ? call : self; }
+
+function _inherits(subClass, superClass) { if (typeof superClass !== "function" && superClass !== null) { throw new TypeError("Super expression must either be null or a function, not " + typeof superClass); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, enumerable: false, writable: true, configurable: true } }); if (superClass) Object.setPrototypeOf ? Object.setPrototypeOf(subClass, superClass) : subClass.__proto__ = superClass; }
+
+var ParameterError = function (_Error) {
+ _inherits(ParameterError, _Error);
+
+ function ParameterError(message) {
+ _classCallCheck(this, ParameterError);
+
+ var _this = _possibleConstructorReturn(this, (ParameterError.__proto__ || Object.getPrototypeOf(ParameterError)).call(this, message));
+
+ _this.message = message;
+ _this.name = 'ParameterError';
+ return _this;
+ }
+
+ return ParameterError;
+}(Error);
+
+var LinkLookupError = function (_Error2) {
+ _inherits(LinkLookupError, _Error2);
+
+ function LinkLookupError(message) {
+ _classCallCheck(this, LinkLookupError);
+
+ var _this2 = _possibleConstructorReturn(this, (LinkLookupError.__proto__ || Object.getPrototypeOf(LinkLookupError)).call(this, message));
+
+ _this2.message = message;
+ _this2.name = 'LinkLookupError';
+ return _this2;
+ }
+
+ return LinkLookupError;
+}(Error);
+
+var ErrorMessage = function (_Error3) {
+ _inherits(ErrorMessage, _Error3);
+
+ function ErrorMessage(message, content) {
+ _classCallCheck(this, ErrorMessage);
+
+ var _this3 = _possibleConstructorReturn(this, (ErrorMessage.__proto__ || Object.getPrototypeOf(ErrorMessage)).call(this, message));
+
+ _this3.message = message;
+ _this3.content = content;
+ _this3.name = 'ErrorMessage';
+ return _this3;
+ }
+
+ return ErrorMessage;
+}(Error);
+
+module.exports = {
+ ParameterError: ParameterError,
+ LinkLookupError: LinkLookupError,
+ ErrorMessage: ErrorMessage
+};
+
+},{}],12:[function(require,module,exports){
+'use strict';
+
+var auth = require('./auth');
+var client = require('./client');
+var codecs = require('./codecs');
+var document = require('./document');
+var errors = require('./errors');
+var transports = require('./transports');
+var utils = require('./utils');
+
+var coreapi = {
+ Client: client.Client,
+ Document: document.Document,
+ Link: document.Link,
+ auth: auth,
+ codecs: codecs,
+ errors: errors,
+ transports: transports,
+ utils: utils
+};
+
+module.exports = coreapi;
+
+},{"./auth":2,"./client":5,"./codecs":7,"./document":10,"./errors":11,"./transports":14,"./utils":15}],13:[function(require,module,exports){
+'use strict';
+
+var _createClass = function () { function defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } return function (Constructor, protoProps, staticProps) { if (protoProps) defineProperties(Constructor.prototype, protoProps); if (staticProps) defineProperties(Constructor, staticProps); return Constructor; }; }();
+
+function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }
+
+var fetch = require('isomorphic-fetch');
+var errors = require('../errors');
+var utils = require('../utils');
+var URL = require('url-parse');
+var urlTemplate = require('url-template');
+
+var parseResponse = function parseResponse(response, decoders, responseCallback) {
+ return response.text().then(function (text) {
+ if (responseCallback) {
+ responseCallback(response, text);
+ }
+ var contentType = response.headers.get('Content-Type');
+ var decoder = utils.negotiateDecoder(decoders, contentType);
+ var options = { url: response.url };
+ return decoder.decode(text, options);
+ });
+};
+
+var HTTPTransport = function () {
+ function HTTPTransport() {
+ var options = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : {};
+
+ _classCallCheck(this, HTTPTransport);
+
+ this.schemes = ['http', 'https'];
+ this.auth = options.auth || null;
+ this.headers = options.headers || {};
+ this.fetch = options.fetch || fetch;
+ this.FormData = options.FormData || window.FormData;
+ this.requestCallback = options.requestCallback;
+ this.responseCallback = options.responseCallback;
+ }
+
+ _createClass(HTTPTransport, [{
+ key: 'buildRequest',
+ value: function buildRequest(link, decoders) {
+ var params = arguments.length > 2 && arguments[2] !== undefined ? arguments[2] : {};
+
+ var fields = link.fields;
+ var method = link.method.toUpperCase();
+ var queryParams = {};
+ var pathParams = {};
+ var formParams = {};
+ var fieldNames = [];
+ var hasBody = false;
+
+ for (var idx = 0, len = fields.length; idx < len; idx++) {
+ var field = fields[idx];
+
+ // Ensure any required fields are included
+ if (!params.hasOwnProperty(field.name)) {
+ if (field.required) {
+ throw new errors.ParameterError('Missing required field: "' + field.name + '"');
+ } else {
+ continue;
+ }
+ }
+
+ fieldNames.push(field.name);
+ if (field.location === 'query') {
+ queryParams[field.name] = params[field.name];
+ } else if (field.location === 'path') {
+ pathParams[field.name] = params[field.name];
+ } else if (field.location === 'form') {
+ formParams[field.name] = params[field.name];
+ hasBody = true;
+ } else if (field.location === 'body') {
+ formParams = params[field.name];
+ hasBody = true;
+ }
+ }
+
+ // Check for any parameters that did not have a matching field
+ for (var property in params) {
+ if (params.hasOwnProperty(property) && !fieldNames.includes(property)) {
+ throw new errors.ParameterError('Unknown parameter: "' + property + '"');
+ }
+ }
+
+ var requestOptions = { method: method, headers: {} };
+
+ Object.assign(requestOptions.headers, this.headers);
+
+ if (hasBody) {
+ if (link.encoding === 'application/json') {
+ requestOptions.body = JSON.stringify(formParams);
+ requestOptions.headers['Content-Type'] = 'application/json';
+ } else if (link.encoding === 'multipart/form-data') {
+ var form = new this.FormData();
+
+ for (var paramKey in formParams) {
+ form.append(paramKey, formParams[paramKey]);
+ }
+ requestOptions.body = form;
+ } else if (link.encoding === 'application/x-www-form-urlencoded') {
+ var formBody = [];
+ for (var _paramKey in formParams) {
+ var encodedKey = encodeURIComponent(_paramKey);
+ var encodedValue = encodeURIComponent(formParams[_paramKey]);
+ formBody.push(encodedKey + '=' + encodedValue);
+ }
+ formBody = formBody.join('&');
+
+ requestOptions.body = formBody;
+ requestOptions.headers['Content-Type'] = 'application/x-www-form-urlencoded';
+ }
+ }
+
+ if (this.auth) {
+ requestOptions = this.auth.authenticate(requestOptions);
+ }
+
+ var parsedUrl = urlTemplate.parse(link.url);
+ parsedUrl = parsedUrl.expand(pathParams);
+ parsedUrl = new URL(parsedUrl);
+ parsedUrl.set('query', queryParams);
+
+ return {
+ url: parsedUrl.toString(),
+ options: requestOptions
+ };
+ }
+ }, {
+ key: 'action',
+ value: function action(link, decoders) {
+ var params = arguments.length > 2 && arguments[2] !== undefined ? arguments[2] : {};
+
+ var responseCallback = this.responseCallback;
+ var request = this.buildRequest(link, decoders, params);
+
+ if (this.requestCallback) {
+ this.requestCallback(request);
+ }
+
+ return this.fetch(request.url, request.options).then(function (response) {
+ if (response.status === 204) {
+ return;
+ }
+ return parseResponse(response, decoders, responseCallback).then(function (data) {
+ if (response.ok) {
+ return data;
+ } else {
+ var title = response.status + ' ' + response.statusText;
+ var error = new errors.ErrorMessage(title, data);
+ return Promise.reject(error);
+ }
+ });
+ });
+ }
+ }]);
+
+ return HTTPTransport;
+}();
+
+module.exports = {
+ HTTPTransport: HTTPTransport
+};
+
+},{"../errors":11,"../utils":15,"isomorphic-fetch":16,"url-parse":19,"url-template":21}],14:[function(require,module,exports){
+'use strict';
+
+var http = require('./http');
+
+module.exports = {
+ HTTPTransport: http.HTTPTransport
+};
+
+},{"./http":13}],15:[function(require,module,exports){
+'use strict';
+
+var URL = require('url-parse');
+
+var determineTransport = function determineTransport(transports, url) {
+ var parsedUrl = new URL(url);
+ var scheme = parsedUrl.protocol.replace(':', '');
+
+ var _iteratorNormalCompletion = true;
+ var _didIteratorError = false;
+ var _iteratorError = undefined;
+
+ try {
+ for (var _iterator = transports[Symbol.iterator](), _step; !(_iteratorNormalCompletion = (_step = _iterator.next()).done); _iteratorNormalCompletion = true) {
+ var transport = _step.value;
+
+ if (transport.schemes.includes(scheme)) {
+ return transport;
+ }
+ }
+ } catch (err) {
+ _didIteratorError = true;
+ _iteratorError = err;
+ } finally {
+ try {
+ if (!_iteratorNormalCompletion && _iterator.return) {
+ _iterator.return();
+ }
+ } finally {
+ if (_didIteratorError) {
+ throw _iteratorError;
+ }
+ }
+ }
+
+ throw Error('Unsupported scheme in URL: ' + url);
+};
+
+var negotiateDecoder = function negotiateDecoder(decoders, contentType) {
+ if (contentType === undefined || contentType === null) {
+ return decoders[0];
+ }
+
+ var fullType = contentType.toLowerCase().split(';')[0].trim();
+ var mainType = fullType.split('/')[0] + '/*';
+ var wildcardType = '*/*';
+ var acceptableTypes = [fullType, mainType, wildcardType];
+
+ var _iteratorNormalCompletion2 = true;
+ var _didIteratorError2 = false;
+ var _iteratorError2 = undefined;
+
+ try {
+ for (var _iterator2 = decoders[Symbol.iterator](), _step2; !(_iteratorNormalCompletion2 = (_step2 = _iterator2.next()).done); _iteratorNormalCompletion2 = true) {
+ var decoder = _step2.value;
+
+ if (acceptableTypes.includes(decoder.mediaType)) {
+ return decoder;
+ }
+ }
+ } catch (err) {
+ _didIteratorError2 = true;
+ _iteratorError2 = err;
+ } finally {
+ try {
+ if (!_iteratorNormalCompletion2 && _iterator2.return) {
+ _iterator2.return();
+ }
+ } finally {
+ if (_didIteratorError2) {
+ throw _iteratorError2;
+ }
+ }
+ }
+
+ throw Error('Unsupported media in Content-Type header: ' + contentType);
+};
+
+var csrfSafeMethod = function csrfSafeMethod(method) {
+ // these HTTP methods do not require CSRF protection
+ return (/^(GET|HEAD|OPTIONS|TRACE)$/.test(method)
+ );
+};
+
+module.exports = {
+ determineTransport: determineTransport,
+ negotiateDecoder: negotiateDecoder,
+ csrfSafeMethod: csrfSafeMethod
+};
+
+},{"url-parse":19}],16:[function(require,module,exports){
+// the whatwg-fetch polyfill installs the fetch() function
+// on the global object (window or self)
+//
+// Return that as the export for use in Webpack, Browserify etc.
+require('whatwg-fetch');
+module.exports = self.fetch.bind(self);
+
+},{"whatwg-fetch":22}],17:[function(require,module,exports){
+'use strict';
+
+var has = Object.prototype.hasOwnProperty;
+
+/**
+ * Simple query string parser.
+ *
+ * @param {String} query The query string that needs to be parsed.
+ * @returns {Object}
+ * @api public
+ */
+function querystring(query) {
+ var parser = /([^=?&]+)=?([^&]*)/g
+ , result = {}
+ , part;
+
+ //
+ // Little nifty parsing hack, leverage the fact that RegExp.exec increments
+ // the lastIndex property so we can continue executing this loop until we've
+ // parsed all results.
+ //
+ for (;
+ part = parser.exec(query);
+ result[decodeURIComponent(part[1])] = decodeURIComponent(part[2])
+ );
+
+ return result;
+}
+
+/**
+ * Transform a query string to an object.
+ *
+ * @param {Object} obj Object that should be transformed.
+ * @param {String} prefix Optional prefix.
+ * @returns {String}
+ * @api public
+ */
+function querystringify(obj, prefix) {
+ prefix = prefix || '';
+
+ var pairs = [];
+
+ //
+ // Optionally prefix with a '?' if needed
+ //
+ if ('string' !== typeof prefix) prefix = '?';
+
+ for (var key in obj) {
+ if (has.call(obj, key)) {
+ pairs.push(encodeURIComponent(key) +'='+ encodeURIComponent(obj[key]));
+ }
+ }
+
+ return pairs.length ? prefix + pairs.join('&') : '';
+}
+
+//
+// Expose the module.
+//
+exports.stringify = querystringify;
+exports.parse = querystring;
+
+},{}],18:[function(require,module,exports){
+'use strict';
+
+/**
+ * Check if we're required to add a port number.
+ *
+ * @see https://url.spec.whatwg.org/#default-port
+ * @param {Number|String} port Port number we need to check
+ * @param {String} protocol Protocol we need to check against.
+ * @returns {Boolean} Is it a default port for the given protocol
+ * @api private
+ */
+module.exports = function required(port, protocol) {
+ protocol = protocol.split(':')[0];
+ port = +port;
+
+ if (!port) return false;
+
+ switch (protocol) {
+ case 'http':
+ case 'ws':
+ return port !== 80;
+
+ case 'https':
+ case 'wss':
+ return port !== 443;
+
+ case 'ftp':
+ return port !== 21;
+
+ case 'gopher':
+ return port !== 70;
+
+ case 'file':
+ return false;
+ }
+
+ return port !== 0;
+};
+
+},{}],19:[function(require,module,exports){
+'use strict';
+
+var required = require('requires-port')
+ , lolcation = require('./lolcation')
+ , qs = require('querystringify')
+ , protocolre = /^([a-z][a-z0-9.+-]*:)?(\/\/)?([\S\s]*)/i;
+
+/**
+ * These are the parse rules for the URL parser, it informs the parser
+ * about:
+ *
+ * 0. The char it Needs to parse, if it's a string it should be done using
+ * indexOf, RegExp using exec and NaN means set as current value.
+ * 1. The property we should set when parsing this value.
+ * 2. Indication if it's backwards or forward parsing, when set as number it's
+ * the value of extra chars that should be split off.
+ * 3. Inherit from location if non existing in the parser.
+ * 4. `toLowerCase` the resulting value.
+ */
+var rules = [
+ ['#', 'hash'], // Extract from the back.
+ ['?', 'query'], // Extract from the back.
+ ['/', 'pathname'], // Extract from the back.
+ ['@', 'auth', 1], // Extract from the front.
+ [NaN, 'host', undefined, 1, 1], // Set left over value.
+ [/:(\d+)$/, 'port', undefined, 1], // RegExp the back.
+ [NaN, 'hostname', undefined, 1, 1] // Set left over.
+];
+
+/**
+ * @typedef ProtocolExtract
+ * @type Object
+ * @property {String} protocol Protocol matched in the URL, in lowercase.
+ * @property {Boolean} slashes `true` if protocol is followed by "//", else `false`.
+ * @property {String} rest Rest of the URL that is not part of the protocol.
+ */
+
+/**
+ * Extract protocol information from a URL with/without double slash ("//").
+ *
+ * @param {String} address URL we want to extract from.
+ * @return {ProtocolExtract} Extracted information.
+ * @api private
+ */
+function extractProtocol(address) {
+ var match = protocolre.exec(address);
+
+ return {
+ protocol: match[1] ? match[1].toLowerCase() : '',
+ slashes: !!match[2],
+ rest: match[3]
+ };
+}
+
+/**
+ * Resolve a relative URL pathname against a base URL pathname.
+ *
+ * @param {String} relative Pathname of the relative URL.
+ * @param {String} base Pathname of the base URL.
+ * @return {String} Resolved pathname.
+ * @api private
+ */
+function resolve(relative, base) {
+ var path = (base || '/').split('/').slice(0, -1).concat(relative.split('/'))
+ , i = path.length
+ , last = path[i - 1]
+ , unshift = false
+ , up = 0;
+
+ while (i--) {
+ if (path[i] === '.') {
+ path.splice(i, 1);
+ } else if (path[i] === '..') {
+ path.splice(i, 1);
+ up++;
+ } else if (up) {
+ if (i === 0) unshift = true;
+ path.splice(i, 1);
+ up--;
+ }
+ }
+
+ if (unshift) path.unshift('');
+ if (last === '.' || last === '..') path.push('');
+
+ return path.join('/');
+}
+
+/**
+ * The actual URL instance. Instead of returning an object we've opted-in to
+ * create an actual constructor as it's much more memory efficient and
+ * faster and it pleases my OCD.
+ *
+ * @constructor
+ * @param {String} address URL we want to parse.
+ * @param {Object|String} location Location defaults for relative paths.
+ * @param {Boolean|Function} parser Parser for the query string.
+ * @api public
+ */
+function URL(address, location, parser) {
+ if (!(this instanceof URL)) {
+ return new URL(address, location, parser);
+ }
+
+ var relative, extracted, parse, instruction, index, key
+ , instructions = rules.slice()
+ , type = typeof location
+ , url = this
+ , i = 0;
+
+ //
+ // The following if statements allows this module two have compatibility with
+ // 2 different API:
+ //
+ // 1. Node.js's `url.parse` api which accepts a URL, boolean as arguments
+ // where the boolean indicates that the query string should also be parsed.
+ //
+ // 2. The `URL` interface of the browser which accepts a URL, object as
+ // arguments. The supplied object will be used as default values / fall-back
+ // for relative paths.
+ //
+ if ('object' !== type && 'string' !== type) {
+ parser = location;
+ location = null;
+ }
+
+ if (parser && 'function' !== typeof parser) parser = qs.parse;
+
+ location = lolcation(location);
+
+ //
+ // Extract protocol information before running the instructions.
+ //
+ extracted = extractProtocol(address || '');
+ relative = !extracted.protocol && !extracted.slashes;
+ url.slashes = extracted.slashes || relative && location.slashes;
+ url.protocol = extracted.protocol || location.protocol || '';
+ address = extracted.rest;
+
+ //
+ // When the authority component is absent the URL starts with a path
+ // component.
+ //
+ if (!extracted.slashes) instructions[2] = [/(.*)/, 'pathname'];
+
+ for (; i < instructions.length; i++) {
+ instruction = instructions[i];
+ parse = instruction[0];
+ key = instruction[1];
+
+ if (parse !== parse) {
+ url[key] = address;
+ } else if ('string' === typeof parse) {
+ if (~(index = address.indexOf(parse))) {
+ if ('number' === typeof instruction[2]) {
+ url[key] = address.slice(0, index);
+ address = address.slice(index + instruction[2]);
+ } else {
+ url[key] = address.slice(index);
+ address = address.slice(0, index);
+ }
+ }
+ } else if (index = parse.exec(address)) {
+ url[key] = index[1];
+ address = address.slice(0, index.index);
+ }
+
+ url[key] = url[key] || (
+ relative && instruction[3] ? location[key] || '' : ''
+ );
+
+ //
+ // Hostname, host and protocol should be lowercased so they can be used to
+ // create a proper `origin`.
+ //
+ if (instruction[4]) url[key] = url[key].toLowerCase();
+ }
+
+ //
+ // Also parse the supplied query string in to an object. If we're supplied
+ // with a custom parser as function use that instead of the default build-in
+ // parser.
+ //
+ if (parser) url.query = parser(url.query);
+
+ //
+ // If the URL is relative, resolve the pathname against the base URL.
+ //
+ if (
+ relative
+ && location.slashes
+ && url.pathname.charAt(0) !== '/'
+ && (url.pathname !== '' || location.pathname !== '')
+ ) {
+ url.pathname = resolve(url.pathname, location.pathname);
+ }
+
+ //
+ // We should not add port numbers if they are already the default port number
+ // for a given protocol. As the host also contains the port number we're going
+ // override it with the hostname which contains no port number.
+ //
+ if (!required(url.port, url.protocol)) {
+ url.host = url.hostname;
+ url.port = '';
+ }
+
+ //
+ // Parse down the `auth` for the username and password.
+ //
+ url.username = url.password = '';
+ if (url.auth) {
+ instruction = url.auth.split(':');
+ url.username = instruction[0] || '';
+ url.password = instruction[1] || '';
+ }
+
+ url.origin = url.protocol && url.host && url.protocol !== 'file:'
+ ? url.protocol +'//'+ url.host
+ : 'null';
+
+ //
+ // The href is just the compiled result.
+ //
+ url.href = url.toString();
+}
+
+/**
+ * This is convenience method for changing properties in the URL instance to
+ * insure that they all propagate correctly.
+ *
+ * @param {String} part Property we need to adjust.
+ * @param {Mixed} value The newly assigned value.
+ * @param {Boolean|Function} fn When setting the query, it will be the function
+ * used to parse the query.
+ * When setting the protocol, double slash will be
+ * removed from the final url if it is true.
+ * @returns {URL}
+ * @api public
+ */
+URL.prototype.set = function set(part, value, fn) {
+ var url = this;
+
+ switch (part) {
+ case 'query':
+ if ('string' === typeof value && value.length) {
+ value = (fn || qs.parse)(value);
+ }
+
+ url[part] = value;
+ break;
+
+ case 'port':
+ url[part] = value;
+
+ if (!required(value, url.protocol)) {
+ url.host = url.hostname;
+ url[part] = '';
+ } else if (value) {
+ url.host = url.hostname +':'+ value;
+ }
+
+ break;
+
+ case 'hostname':
+ url[part] = value;
+
+ if (url.port) value += ':'+ url.port;
+ url.host = value;
+ break;
+
+ case 'host':
+ url[part] = value;
+
+ if (/:\d+$/.test(value)) {
+ value = value.split(':');
+ url.port = value.pop();
+ url.hostname = value.join(':');
+ } else {
+ url.hostname = value;
+ url.port = '';
+ }
+
+ break;
+
+ case 'protocol':
+ url.protocol = value.toLowerCase();
+ url.slashes = !fn;
+ break;
+
+ case 'pathname':
+ url.pathname = value.length && value.charAt(0) !== '/' ? '/' + value : value;
+
+ break;
+
+ default:
+ url[part] = value;
+ }
+
+ for (var i = 0; i < rules.length; i++) {
+ var ins = rules[i];
+
+ if (ins[4]) url[ins[1]] = url[ins[1]].toLowerCase();
+ }
+
+ url.origin = url.protocol && url.host && url.protocol !== 'file:'
+ ? url.protocol +'//'+ url.host
+ : 'null';
+
+ url.href = url.toString();
+
+ return url;
+};
+
+/**
+ * Transform the properties back in to a valid and full URL string.
+ *
+ * @param {Function} stringify Optional query stringify function.
+ * @returns {String}
+ * @api public
+ */
+URL.prototype.toString = function toString(stringify) {
+ if (!stringify || 'function' !== typeof stringify) stringify = qs.stringify;
+
+ var query
+ , url = this
+ , protocol = url.protocol;
+
+ if (protocol && protocol.charAt(protocol.length - 1) !== ':') protocol += ':';
+
+ var result = protocol + (url.slashes ? '//' : '');
+
+ if (url.username) {
+ result += url.username;
+ if (url.password) result += ':'+ url.password;
+ result += '@';
+ }
+
+ result += url.host + url.pathname;
+
+ query = 'object' === typeof url.query ? stringify(url.query) : url.query;
+ if (query) result += '?' !== query.charAt(0) ? '?'+ query : query;
+
+ if (url.hash) result += url.hash;
+
+ return result;
+};
+
+//
+// Expose the URL parser and some additional properties that might be useful for
+// others or testing.
+//
+URL.extractProtocol = extractProtocol;
+URL.location = lolcation;
+URL.qs = qs;
+
+module.exports = URL;
+
+},{"./lolcation":20,"querystringify":17,"requires-port":18}],20:[function(require,module,exports){
+(function (global){
+'use strict';
+
+var slashes = /^[A-Za-z][A-Za-z0-9+-.]*:\/\//;
+
+/**
+ * These properties should not be copied or inherited from. This is only needed
+ * for all non blob URL's as a blob URL does not include a hash, only the
+ * origin.
+ *
+ * @type {Object}
+ * @private
+ */
+var ignore = { hash: 1, query: 1 }
+ , URL;
+
+/**
+ * The location object differs when your code is loaded through a normal page,
+ * Worker or through a worker using a blob. And with the blobble begins the
+ * trouble as the location object will contain the URL of the blob, not the
+ * location of the page where our code is loaded in. The actual origin is
+ * encoded in the `pathname` so we can thankfully generate a good "default"
+ * location from it so we can generate proper relative URL's again.
+ *
+ * @param {Object|String} loc Optional default location object.
+ * @returns {Object} lolcation object.
+ * @api public
+ */
+module.exports = function lolcation(loc) {
+ loc = loc || global.location || {};
+ URL = URL || require('./');
+
+ var finaldestination = {}
+ , type = typeof loc
+ , key;
+
+ if ('blob:' === loc.protocol) {
+ finaldestination = new URL(unescape(loc.pathname), {});
+ } else if ('string' === type) {
+ finaldestination = new URL(loc, {});
+ for (key in ignore) delete finaldestination[key];
+ } else if ('object' === type) {
+ for (key in loc) {
+ if (key in ignore) continue;
+ finaldestination[key] = loc[key];
+ }
+
+ if (finaldestination.slashes === undefined) {
+ finaldestination.slashes = slashes.test(loc.href);
+ }
+ }
+
+ return finaldestination;
+};
+
+}).call(this,typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {})
+
+},{"./":19}],21:[function(require,module,exports){
+(function (root, factory) {
+ if (typeof exports === 'object') {
+ module.exports = factory();
+ } else if (typeof define === 'function' && define.amd) {
+ define([], factory);
+ } else {
+ root.urltemplate = factory();
+ }
+}(this, function () {
+ /**
+ * @constructor
+ */
+ function UrlTemplate() {
+ }
+
+ /**
+ * @private
+ * @param {string} str
+ * @return {string}
+ */
+ UrlTemplate.prototype.encodeReserved = function (str) {
+ return str.split(/(%[0-9A-Fa-f]{2})/g).map(function (part) {
+ if (!/%[0-9A-Fa-f]/.test(part)) {
+ part = encodeURI(part).replace(/%5B/g, '[').replace(/%5D/g, ']');
+ }
+ return part;
+ }).join('');
+ };
+
+ /**
+ * @private
+ * @param {string} str
+ * @return {string}
+ */
+ UrlTemplate.prototype.encodeUnreserved = function (str) {
+ return encodeURIComponent(str).replace(/[!'()*]/g, function (c) {
+ return '%' + c.charCodeAt(0).toString(16).toUpperCase();
+ });
+ }
+
+ /**
+ * @private
+ * @param {string} operator
+ * @param {string} value
+ * @param {string} key
+ * @return {string}
+ */
+ UrlTemplate.prototype.encodeValue = function (operator, value, key) {
+ value = (operator === '+' || operator === '#') ? this.encodeReserved(value) : this.encodeUnreserved(value);
+
+ if (key) {
+ return this.encodeUnreserved(key) + '=' + value;
+ } else {
+ return value;
+ }
+ };
+
+ /**
+ * @private
+ * @param {*} value
+ * @return {boolean}
+ */
+ UrlTemplate.prototype.isDefined = function (value) {
+ return value !== undefined && value !== null;
+ };
+
+ /**
+ * @private
+ * @param {string}
+ * @return {boolean}
+ */
+ UrlTemplate.prototype.isKeyOperator = function (operator) {
+ return operator === ';' || operator === '&' || operator === '?';
+ };
+
+ /**
+ * @private
+ * @param {Object} context
+ * @param {string} operator
+ * @param {string} key
+ * @param {string} modifier
+ */
+ UrlTemplate.prototype.getValues = function (context, operator, key, modifier) {
+ var value = context[key],
+ result = [];
+
+ if (this.isDefined(value) && value !== '') {
+ if (typeof value === 'string' || typeof value === 'number' || typeof value === 'boolean') {
+ value = value.toString();
+
+ if (modifier && modifier !== '*') {
+ value = value.substring(0, parseInt(modifier, 10));
+ }
+
+ result.push(this.encodeValue(operator, value, this.isKeyOperator(operator) ? key : null));
+ } else {
+ if (modifier === '*') {
+ if (Array.isArray(value)) {
+ value.filter(this.isDefined).forEach(function (value) {
+ result.push(this.encodeValue(operator, value, this.isKeyOperator(operator) ? key : null));
+ }, this);
+ } else {
+ Object.keys(value).forEach(function (k) {
+ if (this.isDefined(value[k])) {
+ result.push(this.encodeValue(operator, value[k], k));
+ }
+ }, this);
+ }
+ } else {
+ var tmp = [];
+
+ if (Array.isArray(value)) {
+ value.filter(this.isDefined).forEach(function (value) {
+ tmp.push(this.encodeValue(operator, value));
+ }, this);
+ } else {
+ Object.keys(value).forEach(function (k) {
+ if (this.isDefined(value[k])) {
+ tmp.push(this.encodeUnreserved(k));
+ tmp.push(this.encodeValue(operator, value[k].toString()));
+ }
+ }, this);
+ }
+
+ if (this.isKeyOperator(operator)) {
+ result.push(this.encodeUnreserved(key) + '=' + tmp.join(','));
+ } else if (tmp.length !== 0) {
+ result.push(tmp.join(','));
+ }
+ }
+ }
+ } else {
+ if (operator === ';') {
+ if (this.isDefined(value)) {
+ result.push(this.encodeUnreserved(key));
+ }
+ } else if (value === '' && (operator === '&' || operator === '?')) {
+ result.push(this.encodeUnreserved(key) + '=');
+ } else if (value === '') {
+ result.push('');
+ }
+ }
+ return result;
+ };
+
+ /**
+ * @param {string} template
+ * @return {function(Object):string}
+ */
+ UrlTemplate.prototype.parse = function (template) {
+ var that = this;
+ var operators = ['+', '#', '.', '/', ';', '?', '&'];
+
+ return {
+ expand: function (context) {
+ return template.replace(/\{([^\{\}]+)\}|([^\{\}]+)/g, function (_, expression, literal) {
+ if (expression) {
+ var operator = null,
+ values = [];
+
+ if (operators.indexOf(expression.charAt(0)) !== -1) {
+ operator = expression.charAt(0);
+ expression = expression.substr(1);
+ }
+
+ expression.split(/,/g).forEach(function (variable) {
+ var tmp = /([^:\*]*)(?::(\d+)|(\*))?/.exec(variable);
+ values.push.apply(values, that.getValues(context, operator, tmp[1], tmp[2] || tmp[3]));
+ });
+
+ if (operator && operator !== '+') {
+ var separator = ',';
+
+ if (operator === '?') {
+ separator = '&';
+ } else if (operator !== '#') {
+ separator = operator;
+ }
+ return (values.length !== 0 ? operator : '') + values.join(separator);
+ } else {
+ return values.join(',');
+ }
+ } else {
+ return that.encodeReserved(literal);
+ }
+ });
+ }
+ };
+ };
+
+ return new UrlTemplate();
+}));
+
+},{}],22:[function(require,module,exports){
+(function(self) {
+ 'use strict';
+
+ if (self.fetch) {
+ return
+ }
+
+ var support = {
+ searchParams: 'URLSearchParams' in self,
+ iterable: 'Symbol' in self && 'iterator' in Symbol,
+ blob: 'FileReader' in self && 'Blob' in self && (function() {
+ try {
+ new Blob()
+ return true
+ } catch(e) {
+ return false
+ }
+ })(),
+ formData: 'FormData' in self,
+ arrayBuffer: 'ArrayBuffer' in self
+ }
+
+ if (support.arrayBuffer) {
+ var viewClasses = [
+ '[object Int8Array]',
+ '[object Uint8Array]',
+ '[object Uint8ClampedArray]',
+ '[object Int16Array]',
+ '[object Uint16Array]',
+ '[object Int32Array]',
+ '[object Uint32Array]',
+ '[object Float32Array]',
+ '[object Float64Array]'
+ ]
+
+ var isDataView = function(obj) {
+ return obj && DataView.prototype.isPrototypeOf(obj)
+ }
+
+ var isArrayBufferView = ArrayBuffer.isView || function(obj) {
+ return obj && viewClasses.indexOf(Object.prototype.toString.call(obj)) > -1
+ }
+ }
+
+ function normalizeName(name) {
+ if (typeof name !== 'string') {
+ name = String(name)
+ }
+ if (/[^a-z0-9\-#$%&'*+.\^_`|~]/i.test(name)) {
+ throw new TypeError('Invalid character in header field name')
+ }
+ return name.toLowerCase()
+ }
+
+ function normalizeValue(value) {
+ if (typeof value !== 'string') {
+ value = String(value)
+ }
+ return value
+ }
+
+ // Build a destructive iterator for the value list
+ function iteratorFor(items) {
+ var iterator = {
+ next: function() {
+ var value = items.shift()
+ return {done: value === undefined, value: value}
+ }
+ }
+
+ if (support.iterable) {
+ iterator[Symbol.iterator] = function() {
+ return iterator
+ }
+ }
+
+ return iterator
+ }
+
+ function Headers(headers) {
+ this.map = {}
+
+ if (headers instanceof Headers) {
+ headers.forEach(function(value, name) {
+ this.append(name, value)
+ }, this)
+
+ } else if (headers) {
+ Object.getOwnPropertyNames(headers).forEach(function(name) {
+ this.append(name, headers[name])
+ }, this)
+ }
+ }
+
+ Headers.prototype.append = function(name, value) {
+ name = normalizeName(name)
+ value = normalizeValue(value)
+ var oldValue = this.map[name]
+ this.map[name] = oldValue ? oldValue+','+value : value
+ }
+
+ Headers.prototype['delete'] = function(name) {
+ delete this.map[normalizeName(name)]
+ }
+
+ Headers.prototype.get = function(name) {
+ name = normalizeName(name)
+ return this.has(name) ? this.map[name] : null
+ }
+
+ Headers.prototype.has = function(name) {
+ return this.map.hasOwnProperty(normalizeName(name))
+ }
+
+ Headers.prototype.set = function(name, value) {
+ this.map[normalizeName(name)] = normalizeValue(value)
+ }
+
+ Headers.prototype.forEach = function(callback, thisArg) {
+ for (var name in this.map) {
+ if (this.map.hasOwnProperty(name)) {
+ callback.call(thisArg, this.map[name], name, this)
+ }
+ }
+ }
+
+ Headers.prototype.keys = function() {
+ var items = []
+ this.forEach(function(value, name) { items.push(name) })
+ return iteratorFor(items)
+ }
+
+ Headers.prototype.values = function() {
+ var items = []
+ this.forEach(function(value) { items.push(value) })
+ return iteratorFor(items)
+ }
+
+ Headers.prototype.entries = function() {
+ var items = []
+ this.forEach(function(value, name) { items.push([name, value]) })
+ return iteratorFor(items)
+ }
+
+ if (support.iterable) {
+ Headers.prototype[Symbol.iterator] = Headers.prototype.entries
+ }
+
+ function consumed(body) {
+ if (body.bodyUsed) {
+ return Promise.reject(new TypeError('Already read'))
+ }
+ body.bodyUsed = true
+ }
+
+ function fileReaderReady(reader) {
+ return new Promise(function(resolve, reject) {
+ reader.onload = function() {
+ resolve(reader.result)
+ }
+ reader.onerror = function() {
+ reject(reader.error)
+ }
+ })
+ }
+
+ function readBlobAsArrayBuffer(blob) {
+ var reader = new FileReader()
+ var promise = fileReaderReady(reader)
+ reader.readAsArrayBuffer(blob)
+ return promise
+ }
+
+ function readBlobAsText(blob) {
+ var reader = new FileReader()
+ var promise = fileReaderReady(reader)
+ reader.readAsText(blob)
+ return promise
+ }
+
+ function bufferClone(buf) {
+ if (buf.slice) {
+ return buf.slice(0)
+ } else {
+ var view = new Uint8Array(buf.byteLength)
+ view.set(new Uint8Array(buf))
+ return view.buffer
+ }
+ }
+
+ function Body() {
+ this.bodyUsed = false
+
+ this._initBody = function(body) {
+ this._bodyInit = body
+ if (!body) {
+ this._bodyText = ''
+ } else if (typeof body === 'string') {
+ this._bodyText = body
+ } else if (support.blob && Blob.prototype.isPrototypeOf(body)) {
+ this._bodyBlob = body
+ } else if (support.formData && FormData.prototype.isPrototypeOf(body)) {
+ this._bodyFormData = body
+ } else if (support.searchParams && URLSearchParams.prototype.isPrototypeOf(body)) {
+ this._bodyText = body.toString()
+ } else if (support.arrayBuffer && support.blob && isDataView(body)) {
+ this._bodyArrayBuffer = bufferClone(body.buffer)
+ // IE 10-11 can't handle a DataView body.
+ this._bodyInit = new Blob([this._bodyArrayBuffer])
+ } else if (support.arrayBuffer && (ArrayBuffer.prototype.isPrototypeOf(body) || isArrayBufferView(body))) {
+ this._bodyArrayBuffer = bufferClone(body)
+ } else {
+ throw new Error('unsupported BodyInit type')
+ }
+
+ if (!this.headers.get('content-type')) {
+ if (typeof body === 'string') {
+ this.headers.set('content-type', 'text/plain;charset=UTF-8')
+ } else if (this._bodyBlob && this._bodyBlob.type) {
+ this.headers.set('content-type', this._bodyBlob.type)
+ } else if (support.searchParams && URLSearchParams.prototype.isPrototypeOf(body)) {
+ this.headers.set('content-type', 'application/x-www-form-urlencoded;charset=UTF-8')
+ }
+ }
+ }
+
+ if (support.blob) {
+ this.blob = function() {
+ var rejected = consumed(this)
+ if (rejected) {
+ return rejected
+ }
+
+ if (this._bodyBlob) {
+ return Promise.resolve(this._bodyBlob)
+ } else if (this._bodyArrayBuffer) {
+ return Promise.resolve(new Blob([this._bodyArrayBuffer]))
+ } else if (this._bodyFormData) {
+ throw new Error('could not read FormData body as blob')
+ } else {
+ return Promise.resolve(new Blob([this._bodyText]))
+ }
+ }
+ }
+
+ this.text = function() {
+ var rejected = consumed(this)
+ if (rejected) {
+ return rejected
+ }
+
+ if (this._bodyBlob) {
+ return readBlobAsText(this._bodyBlob)
+ } else if (this._bodyArrayBuffer) {
+ var view = new Uint8Array(this._bodyArrayBuffer)
+ var str = String.fromCharCode.apply(null, view)
+ return Promise.resolve(str)
+ } else if (this._bodyFormData) {
+ throw new Error('could not read FormData body as text')
+ } else {
+ return Promise.resolve(this._bodyText)
+ }
+ }
+
+ if (support.arrayBuffer) {
+ this.arrayBuffer = function() {
+ if (this._bodyArrayBuffer) {
+ return consumed(this) || Promise.resolve(this._bodyArrayBuffer)
+ } else {
+ return this.blob().then(readBlobAsArrayBuffer)
+ }
+ }
+ }
+
+ if (support.formData) {
+ this.formData = function() {
+ return this.text().then(decode)
+ }
+ }
+
+ this.json = function() {
+ return this.text().then(JSON.parse)
+ }
+
+ return this
+ }
+
+ // HTTP methods whose capitalization should be normalized
+ var methods = ['DELETE', 'GET', 'HEAD', 'OPTIONS', 'POST', 'PUT']
+
+ function normalizeMethod(method) {
+ var upcased = method.toUpperCase()
+ return (methods.indexOf(upcased) > -1) ? upcased : method
+ }
+
+ function Request(input, options) {
+ options = options || {}
+ var body = options.body
+
+ if (typeof input === 'string') {
+ this.url = input
+ } else {
+ if (input.bodyUsed) {
+ throw new TypeError('Already read')
+ }
+ this.url = input.url
+ this.credentials = input.credentials
+ if (!options.headers) {
+ this.headers = new Headers(input.headers)
+ }
+ this.method = input.method
+ this.mode = input.mode
+ if (!body && input._bodyInit != null) {
+ body = input._bodyInit
+ input.bodyUsed = true
+ }
+ }
+
+ this.credentials = options.credentials || this.credentials || 'omit'
+ if (options.headers || !this.headers) {
+ this.headers = new Headers(options.headers)
+ }
+ this.method = normalizeMethod(options.method || this.method || 'GET')
+ this.mode = options.mode || this.mode || null
+ this.referrer = null
+
+ if ((this.method === 'GET' || this.method === 'HEAD') && body) {
+ throw new TypeError('Body not allowed for GET or HEAD requests')
+ }
+ this._initBody(body)
+ }
+
+ Request.prototype.clone = function() {
+ return new Request(this, { body: this._bodyInit })
+ }
+
+ function decode(body) {
+ var form = new FormData()
+ body.trim().split('&').forEach(function(bytes) {
+ if (bytes) {
+ var split = bytes.split('=')
+ var name = split.shift().replace(/\+/g, ' ')
+ var value = split.join('=').replace(/\+/g, ' ')
+ form.append(decodeURIComponent(name), decodeURIComponent(value))
+ }
+ })
+ return form
+ }
+
+ function parseHeaders(rawHeaders) {
+ var headers = new Headers()
+ rawHeaders.split('\r\n').forEach(function(line) {
+ var parts = line.split(':')
+ var key = parts.shift().trim()
+ if (key) {
+ var value = parts.join(':').trim()
+ headers.append(key, value)
+ }
+ })
+ return headers
+ }
+
+ Body.call(Request.prototype)
+
+ function Response(bodyInit, options) {
+ if (!options) {
+ options = {}
+ }
+
+ this.type = 'default'
+ this.status = 'status' in options ? options.status : 200
+ this.ok = this.status >= 200 && this.status < 300
+ this.statusText = 'statusText' in options ? options.statusText : 'OK'
+ this.headers = new Headers(options.headers)
+ this.url = options.url || ''
+ this._initBody(bodyInit)
+ }
+
+ Body.call(Response.prototype)
+
+ Response.prototype.clone = function() {
+ return new Response(this._bodyInit, {
+ status: this.status,
+ statusText: this.statusText,
+ headers: new Headers(this.headers),
+ url: this.url
+ })
+ }
+
+ Response.error = function() {
+ var response = new Response(null, {status: 0, statusText: ''})
+ response.type = 'error'
+ return response
+ }
+
+ var redirectStatuses = [301, 302, 303, 307, 308]
+
+ Response.redirect = function(url, status) {
+ if (redirectStatuses.indexOf(status) === -1) {
+ throw new RangeError('Invalid status code')
+ }
+
+ return new Response(null, {status: status, headers: {location: url}})
+ }
+
+ self.Headers = Headers
+ self.Request = Request
+ self.Response = Response
+
+ self.fetch = function(input, init) {
+ return new Promise(function(resolve, reject) {
+ var request = new Request(input, init)
+ var xhr = new XMLHttpRequest()
+
+ xhr.onload = function() {
+ var options = {
+ status: xhr.status,
+ statusText: xhr.statusText,
+ headers: parseHeaders(xhr.getAllResponseHeaders() || '')
+ }
+ options.url = 'responseURL' in xhr ? xhr.responseURL : options.headers.get('X-Request-URL')
+ var body = 'response' in xhr ? xhr.response : xhr.responseText
+ resolve(new Response(body, options))
+ }
+
+ xhr.onerror = function() {
+ reject(new TypeError('Network request failed'))
+ }
+
+ xhr.ontimeout = function() {
+ reject(new TypeError('Network request failed'))
+ }
+
+ xhr.open(request.method, request.url, true)
+
+ if (request.credentials === 'include') {
+ xhr.withCredentials = true
+ }
+
+ if ('responseType' in xhr && support.blob) {
+ xhr.responseType = 'blob'
+ }
+
+ request.headers.forEach(function(value, name) {
+ xhr.setRequestHeader(name, value)
+ })
+
+ xhr.send(typeof request._bodyInit === 'undefined' ? null : request._bodyInit)
+ })
+ }
+ self.fetch.polyfill = true
+})(typeof self !== 'undefined' ? self : this);
+
+},{}]},{},[12])(12)
+});
+//# sourceMappingURL=data:application/json;charset=utf-8;base64,eyJ2ZXJzaW9uIjozLCJzb3VyY2VzIjpbIm5vZGVfbW9kdWxlcy9icm93c2VyLXBhY2svX3ByZWx1ZGUuanMiLCJsaWIvYXV0aC9iYXNpYy5qcyIsImxpYi9hdXRoL2luZGV4LmpzIiwibGliL2F1dGgvc2Vzc2lvbi5qcyIsImxpYi9hdXRoL3Rva2VuLmpzIiwibGliL2NsaWVudC5qcyIsImxpYi9jb2RlY3MvY29yZWpzb24uanMiLCJsaWIvY29kZWNzL2luZGV4LmpzIiwibGliL2NvZGVjcy9qc29uLmpzIiwibGliL2NvZGVjcy90ZXh0LmpzIiwibGliL2RvY3VtZW50LmpzIiwibGliL2Vycm9ycy5qcyIsImxpYi9pbmRleC5qcyIsImxpYi90cmFuc3BvcnRzL2h0dHAuanMiLCJsaWIvdHJhbnNwb3J0cy9pbmRleC5qcyIsImxpYi91dGlscy5qcyIsIm5vZGVfbW9kdWxlcy9pc29tb3JwaGljLWZldGNoL2ZldGNoLW5wbS1icm93c2VyaWZ5LmpzIiwibm9kZV9tb2R1bGVzL3F1ZXJ5c3RyaW5naWZ5L2luZGV4LmpzIiwibm9kZV9tb2R1bGVzL3JlcXVpcmVzLXBvcnQvaW5kZXguanMiLCJub2RlX21vZHVsZXMvdXJsLXBhcnNlL2luZGV4LmpzIiwibm9kZV9tb2R1bGVzL3VybC1wYXJzZS9sb2xjYXRpb24uanMiLCJub2RlX21vZHVsZXMvdXJsLXRlbXBsYXRlL2xpYi91cmwtdGVtcGxhdGUuanMiLCJub2RlX21vZHVsZXMvd2hhdHdnLWZldGNoL2ZldGNoLmpzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBOzs7Ozs7O0lDQU0sbUI7QUFDSixpQ0FBMkI7QUFBQSxRQUFkLE9BQWMsdUVBQUosRUFBSTs7QUFBQTs7QUFDekIsUUFBTSxXQUFXLFFBQVEsUUFBekI7QUFDQSxRQUFNLFdBQVcsUUFBUSxRQUF6QjtBQUNBLFFBQU0sT0FBTyxPQUFPLElBQVAsQ0FBWSxXQUFXLEdBQVgsR0FBaUIsUUFBN0IsQ0FBYjtBQUNBLFNBQUssSUFBTCxHQUFZLFdBQVcsSUFBdkI7QUFDRDs7OztpQ0FFYSxPLEVBQVM7QUFDckIsY0FBUSxPQUFSLENBQWdCLGVBQWhCLElBQW1DLEtBQUssSUFBeEM7QUFDQSxhQUFPLE9BQVA7QUFDRDs7Ozs7O0FBR0gsT0FBTyxPQUFQLEdBQWlCO0FBQ2YsdUJBQXFCO0FBRE4sQ0FBakI7Ozs7O0FDZEEsSUFBTSxRQUFRLFFBQVEsU0FBUixDQUFkO0FBQ0EsSUFBTSxVQUFVLFFBQVEsV0FBUixDQUFoQjtBQUNBLElBQU0sUUFBUSxRQUFRLFNBQVIsQ0FBZDs7QUFFQSxPQUFPLE9BQVAsR0FBaUI7QUFDZix1QkFBcUIsTUFBTSxtQkFEWjtBQUVmLHlCQUF1QixRQUFRLHFCQUZoQjtBQUdmLHVCQUFxQixNQUFNO0FBSFosQ0FBakI7Ozs7Ozs7OztBQ0pBLElBQU0sUUFBUSxRQUFRLFVBQVIsQ0FBZDs7QUFFQSxTQUFTLElBQVQsQ0FBZSxHQUFmLEVBQW9CO0FBQ2xCLFNBQU8sSUFBSSxPQUFKLENBQVksUUFBWixFQUFzQixFQUF0QixFQUEwQixPQUExQixDQUFrQyxRQUFsQyxFQUE0QyxFQUE1QyxDQUFQO0FBQ0Q7O0FBRUQsU0FBUyxTQUFULENBQW9CLFVBQXBCLEVBQWdDLFlBQWhDLEVBQThDO0FBQzVDLGlCQUFlLGdCQUFnQixPQUFPLFFBQVAsQ0FBZ0IsTUFBL0M7QUFDQSxNQUFJLGdCQUFnQixpQkFBaUIsRUFBckMsRUFBeUM7QUFDdkMsUUFBTSxVQUFVLGFBQWEsS0FBYixDQUFtQixHQUFuQixDQUFoQjtBQUNBLFNBQUssSUFBSSxJQUFJLENBQWIsRUFBZ0IsSUFBSSxRQUFRLE1BQTVCLEVBQW9DLEdBQXBDLEVBQXlDO0FBQ3ZDLFVBQU0sU0FBUyxLQUFLLFFBQVEsQ0FBUixDQUFMLENBQWY7QUFDQTtBQUNBLFVBQUksT0FBTyxTQUFQLENBQWlCLENBQWpCLEVBQW9CLFdBQVcsTUFBWCxHQUFvQixDQUF4QyxNQUFnRCxhQUFhLEdBQWpFLEVBQXVFO0FBQ3JFLGVBQU8sbUJBQW1CLE9BQU8sU0FBUCxDQUFpQixXQUFXLE1BQVgsR0FBb0IsQ0FBckMsQ0FBbkIsQ0FBUDtBQUNEO0FBQ0Y7QUFDRjtBQUNELFNBQU8sSUFBUDtBQUNEOztJQUVLLHFCO0FBQ0osbUNBQTJCO0FBQUEsUUFBZCxPQUFjLHVFQUFKLEVBQUk7O0FBQUE7O0FBQ3pCLFNBQUssU0FBTCxHQUFpQixVQUFVLFFBQVEsY0FBbEIsRUFBa0MsUUFBUSxZQUExQyxDQUFqQjtBQUNBLFNBQUssY0FBTCxHQUFzQixRQUFRLGNBQTlCO0FBQ0Q7Ozs7aUNBRWEsTyxFQUFTO0FBQ3JCLGNBQVEsV0FBUixHQUFzQixhQUF0QjtBQUNBLFVBQUksS0FBSyxTQUFMLElBQWtCLENBQUMsTUFBTSxjQUFOLENBQXFCLFFBQVEsTUFBN0IsQ0FBdkIsRUFBNkQ7QUFDM0QsZ0JBQVEsT0FBUixDQUFnQixLQUFLLGNBQXJCLElBQXVDLEtBQUssU0FBNUM7QUFDRDtBQUNELGFBQU8sT0FBUDtBQUNEOzs7Ozs7QUFHSCxPQUFPLE9BQVAsR0FBaUI7QUFDZix5QkFBdUI7QUFEUixDQUFqQjs7Ozs7Ozs7O0lDcENNLG1CO0FBQ0osaUNBQTJCO0FBQUEsUUFBZCxPQUFjLHVFQUFKLEVBQUk7O0FBQUE7O0FBQ3pCLFNBQUssS0FBTCxHQUFhLFFBQVEsS0FBckI7QUFDQSxTQUFLLE1BQUwsR0FBYyxRQUFRLE1BQVIsSUFBa0IsUUFBaEM7QUFDRDs7OztpQ0FFYSxPLEVBQVM7QUFDckIsY0FBUSxPQUFSLENBQWdCLGVBQWhCLElBQW1DLEtBQUssTUFBTCxHQUFjLEdBQWQsR0FBb0IsS0FBSyxLQUE1RDtBQUNBLGFBQU8sT0FBUDtBQUNEOzs7Ozs7QUFHSCxPQUFPLE9BQVAsR0FBaUI7QUFDZix1QkFBcUI7QUFETixDQUFqQjs7Ozs7Ozs7O0FDWkEsSUFBTSxXQUFXLFFBQVEsWUFBUixDQUFqQjtBQUNBLElBQU0sU0FBUyxRQUFRLFVBQVIsQ0FBZjtBQUNBLElBQU0sU0FBUyxRQUFRLFVBQVIsQ0FBZjtBQUNBLElBQU0sYUFBYSxRQUFRLGNBQVIsQ0FBbkI7QUFDQSxJQUFNLFFBQVEsUUFBUSxTQUFSLENBQWQ7O0FBRUEsU0FBUyxVQUFULENBQXFCLElBQXJCLEVBQTJCLElBQTNCLEVBQWlDO0FBQUE7QUFBQTtBQUFBOztBQUFBO0FBQy9CLHlCQUFnQixJQUFoQiw4SEFBc0I7QUFBQSxVQUFiLEdBQWE7O0FBQ3BCLFVBQUksZ0JBQWdCLFNBQVMsUUFBN0IsRUFBdUM7QUFDckMsZUFBTyxLQUFLLE9BQUwsQ0FBYSxHQUFiLENBQVA7QUFDRCxPQUZELE1BRU87QUFDTCxlQUFPLEtBQUssR0FBTCxDQUFQO0FBQ0Q7QUFDRCxVQUFJLFNBQVMsU0FBYixFQUF3QjtBQUN0QixjQUFNLElBQUksT0FBTyxlQUFYLDJCQUFtRCxLQUFLLFNBQUwsQ0FBZSxJQUFmLENBQW5ELENBQU47QUFDRDtBQUNGO0FBVjhCO0FBQUE7QUFBQTtBQUFBO0FBQUE7QUFBQTtBQUFBO0FBQUE7QUFBQTtBQUFBO0FBQUE7QUFBQTtBQUFBO0FBQUE7O0FBVy9CLE1BQUksRUFBRSxnQkFBZ0IsU0FBUyxJQUEzQixDQUFKLEVBQXNDO0FBQ3BDLFVBQU0sSUFBSSxPQUFPLGVBQVgsMkJBQW1ELEtBQUssU0FBTCxDQUFlLElBQWYsQ0FBbkQsQ0FBTjtBQUNEO0FBQ0QsU0FBTyxJQUFQO0FBQ0Q7O0lBRUssTTtBQUNKLG9CQUEyQjtBQUFBLFFBQWQsT0FBYyx1RUFBSixFQUFJOztBQUFBOztBQUN6QixRQUFNLG1CQUFtQjtBQUN2QixZQUFNLFFBQVEsSUFBUixJQUFnQixJQURDO0FBRXZCLGVBQVMsUUFBUSxPQUFSLElBQW1CLEVBRkw7QUFHdkIsdUJBQWlCLFFBQVEsZUFIRjtBQUl2Qix3QkFBa0IsUUFBUTtBQUpILEtBQXpCOztBQU9BLFNBQUssUUFBTCxHQUFnQixRQUFRLFFBQVIsSUFBb0IsQ0FBQyxJQUFJLE9BQU8sYUFBWCxFQUFELEVBQTZCLElBQUksT0FBTyxTQUFYLEVBQTdCLEVBQXFELElBQUksT0FBTyxTQUFYLEVBQXJELENBQXBDO0FBQ0EsU0FBSyxVQUFMLEdBQWtCLFFBQVEsVUFBUixJQUFzQixDQUFDLElBQUksV0FBVyxhQUFmLENBQTZCLGdCQUE3QixDQUFELENBQXhDO0FBQ0Q7Ozs7MkJBRU8sUSxFQUFVLEksRUFBbUI7QUFBQSxVQUFiLE1BQWEsdUVBQUosRUFBSTs7QUFDbkMsVUFBTSxPQUFPLFdBQVcsUUFBWCxFQUFxQixJQUFyQixDQUFiO0FBQ0EsVUFBTSxZQUFZLE1BQU0sa0JBQU4sQ0FBeUIsS0FBSyxVQUE5QixFQUEwQyxLQUFLLEdBQS9DLENBQWxCO0FBQ0EsYUFBTyxVQUFVLE1BQVYsQ0FBaUIsSUFBakIsRUFBdUIsS0FBSyxRQUE1QixFQUFzQyxNQUF0QyxDQUFQO0FBQ0Q7Ozt3QkFFSSxHLEVBQUs7QUFDUixVQUFNLE9BQU8sSUFBSSxTQUFTLElBQWIsQ0FBa0IsR0FBbEIsRUFBdUIsS0FBdkIsQ0FBYjtBQUNBLFVBQU0sWUFBWSxNQUFNLGtCQUFOLENBQXlCLEtBQUssVUFBOUIsRUFBMEMsR0FBMUMsQ0FBbEI7QUFDQSxhQUFPLFVBQVUsTUFBVixDQUFpQixJQUFqQixFQUF1QixLQUFLLFFBQTVCLENBQVA7QUFDRDs7Ozs7O0FBR0gsT0FBTyxPQUFQLEdBQWlCO0FBQ2YsVUFBUTtBQURPLENBQWpCOzs7Ozs7Ozs7OztBQ2pEQSxJQUFNLFdBQVcsUUFBUSxhQUFSLENBQWpCO0FBQ0EsSUFBTSxNQUFNLFFBQVEsV0FBUixDQUFaOztBQUVBLFNBQVMsV0FBVCxDQUFzQixHQUF0QixFQUEyQjtBQUN6QixNQUFJLElBQUksS0FBSixDQUFVLGdCQUFWLENBQUosRUFBaUM7QUFDL0IsV0FBTyxJQUFJLFNBQUosQ0FBYyxDQUFkLENBQVA7QUFDRDtBQUNELFNBQU8sR0FBUDtBQUNEOztBQUVELFNBQVMsU0FBVCxDQUFvQixHQUFwQixFQUF5QixHQUF6QixFQUE4QjtBQUM1QixNQUFNLFFBQVEsSUFBSSxHQUFKLENBQWQ7QUFDQSxNQUFJLE9BQVEsS0FBUixLQUFtQixRQUF2QixFQUFpQztBQUMvQixXQUFPLEtBQVA7QUFDRDtBQUNELFNBQU8sRUFBUDtBQUNEOztBQUVELFNBQVMsVUFBVCxDQUFxQixHQUFyQixFQUEwQixHQUExQixFQUErQjtBQUM3QixNQUFNLFFBQVEsSUFBSSxHQUFKLENBQWQ7QUFDQSxNQUFJLE9BQVEsS0FBUixLQUFtQixTQUF2QixFQUFrQztBQUNoQyxXQUFPLEtBQVA7QUFDRDtBQUNELFNBQU8sS0FBUDtBQUNEOztBQUVELFNBQVMsU0FBVCxDQUFvQixHQUFwQixFQUF5QixHQUF6QixFQUE4QjtBQUM1QixNQUFNLFFBQVEsSUFBSSxHQUFKLENBQWQ7QUFDQSxNQUFJLFFBQVEsS0FBUix5Q0FBUSxLQUFSLE9BQW1CLFFBQXZCLEVBQWlDO0FBQy9CLFdBQU8sS0FBUDtBQUNEO0FBQ0QsU0FBTyxFQUFQO0FBQ0Q7O0FBRUQsU0FBUyxRQUFULENBQW1CLEdBQW5CLEVBQXdCLEdBQXhCLEVBQTZCO0FBQzNCLE1BQU0sUUFBUSxJQUFJLEdBQUosQ0FBZDtBQUNBLE1BQUksaUJBQWlCLEtBQXJCLEVBQTRCO0FBQzFCLFdBQU8sS0FBUDtBQUNEO0FBQ0QsU0FBTyxFQUFQO0FBQ0Q7O0FBRUQsU0FBUyxVQUFULENBQXFCLElBQXJCLEVBQTJCLE9BQTNCLEVBQW9DO0FBQ2xDLE1BQU0sV0FBVyxDQUFDLE9BQUQsRUFBVSxPQUFWLENBQWpCO0FBQ0EsTUFBSSxVQUFVLEVBQWQ7QUFDQSxPQUFLLElBQUksUUFBVCxJQUFxQixJQUFyQixFQUEyQjtBQUN6QixRQUFJLEtBQUssY0FBTCxDQUFvQixRQUFwQixLQUFpQyxDQUFDLFNBQVMsUUFBVCxDQUFrQixRQUFsQixDQUF0QyxFQUFtRTtBQUNqRSxVQUFNLE1BQU0sWUFBWSxRQUFaLENBQVo7QUFDQSxVQUFNLFFBQVEsZ0JBQWdCLEtBQUssUUFBTCxDQUFoQixFQUFnQyxPQUFoQyxDQUFkO0FBQ0EsY0FBUSxHQUFSLElBQWUsS0FBZjtBQUNEO0FBQ0Y7QUFDRCxTQUFPLE9BQVA7QUFDRDs7QUFFRCxTQUFTLGVBQVQsQ0FBMEIsSUFBMUIsRUFBZ0MsT0FBaEMsRUFBeUM7QUFDdkMsTUFBTSxXQUFXLGdCQUFnQixNQUFoQixJQUEwQixFQUFFLGdCQUFnQixLQUFsQixDQUEzQzs7QUFFQSxNQUFJLFlBQVksS0FBSyxLQUFMLEtBQWUsVUFBL0IsRUFBMkM7QUFDekM7QUFDQSxRQUFNLE9BQU8sVUFBVSxJQUFWLEVBQWdCLE9BQWhCLENBQWI7QUFDQSxRQUFNLGNBQWMsVUFBVSxJQUFWLEVBQWdCLEtBQWhCLENBQXBCO0FBQ0EsUUFBTSxNQUFNLGNBQWMsSUFBSSxXQUFKLEVBQWlCLE9BQWpCLEVBQTBCLFFBQTFCLEVBQWQsR0FBcUQsRUFBakU7QUFDQSxRQUFNLFFBQVEsVUFBVSxJQUFWLEVBQWdCLE9BQWhCLENBQWQ7QUFDQSxRQUFNLGNBQWMsVUFBVSxJQUFWLEVBQWdCLGFBQWhCLENBQXBCO0FBQ0EsUUFBTSxVQUFVLFdBQVcsSUFBWCxFQUFpQixHQUFqQixDQUFoQjtBQUNBLFdBQU8sSUFBSSxTQUFTLFFBQWIsQ0FBc0IsR0FBdEIsRUFBMkIsS0FBM0IsRUFBa0MsV0FBbEMsRUFBK0MsT0FBL0MsQ0FBUDtBQUNELEdBVEQsTUFTTyxJQUFJLFlBQVksS0FBSyxLQUFMLEtBQWUsTUFBL0IsRUFBdUM7QUFDNUM7QUFDQSxRQUFNLGVBQWMsVUFBVSxJQUFWLEVBQWdCLEtBQWhCLENBQXBCO0FBQ0EsUUFBTSxPQUFNLGVBQWMsSUFBSSxZQUFKLEVBQWlCLE9BQWpCLEVBQTBCLFFBQTFCLEVBQWQsR0FBcUQsRUFBakU7QUFDQSxRQUFNLFNBQVMsVUFBVSxJQUFWLEVBQWdCLFFBQWhCLEtBQTZCLEtBQTVDO0FBQ0EsUUFBTSxTQUFRLFVBQVUsSUFBVixFQUFnQixPQUFoQixDQUFkO0FBQ0EsUUFBTSxlQUFjLFVBQVUsSUFBVixFQUFnQixhQUFoQixDQUFwQjtBQUNBLFFBQU0sYUFBYSxTQUFTLElBQVQsRUFBZSxRQUFmLENBQW5CO0FBQ0EsUUFBSSxTQUFTLEVBQWI7QUFDQSxTQUFLLElBQUksTUFBTSxDQUFWLEVBQWEsTUFBTSxXQUFXLE1BQW5DLEVBQTJDLE1BQU0sR0FBakQsRUFBc0QsS0FBdEQsRUFBNkQ7QUFDM0QsVUFBSSxRQUFRLFdBQVcsR0FBWCxDQUFaO0FBQ0EsVUFBSSxPQUFPLFVBQVUsS0FBVixFQUFpQixNQUFqQixDQUFYO0FBQ0EsVUFBSSxXQUFXLFdBQVcsS0FBWCxFQUFrQixVQUFsQixDQUFmO0FBQ0EsVUFBSSxXQUFXLFVBQVUsS0FBVixFQUFpQixVQUFqQixDQUFmO0FBQ0EsVUFBSSxtQkFBbUIsVUFBVSxLQUFWLEVBQWlCLGtCQUFqQixDQUF2QjtBQUNBLFVBQUksUUFBUSxJQUFJLFNBQVMsS0FBYixDQUFtQixJQUFuQixFQUF5QixRQUF6QixFQUFtQyxRQUFuQyxFQUE2QyxnQkFBN0MsQ0FBWjtBQUNBLGFBQU8sSUFBUCxDQUFZLEtBQVo7QUFDRDtBQUNELFdBQU8sSUFBSSxTQUFTLElBQWIsQ0FBa0IsSUFBbEIsRUFBdUIsTUFBdkIsRUFBK0Isa0JBQS9CLEVBQW1ELE1BQW5ELEVBQTJELE1BQTNELEVBQWtFLFlBQWxFLENBQVA7QUFDRCxHQW5CTSxNQW1CQSxJQUFJLFFBQUosRUFBYztBQUNuQjtBQUNBLFFBQUksV0FBVSxFQUFkO0FBQ0EsU0FBSyxJQUFJLEdBQVQsSUFBZ0IsSUFBaEIsRUFBc0I7QUFDcEIsVUFBSSxLQUFLLGNBQUwsQ0FBb0IsR0FBcEIsQ0FBSixFQUE4QjtBQUM1QixpQkFBUSxHQUFSLElBQWUsZ0JBQWdCLEtBQUssR0FBTCxDQUFoQixFQUEyQixPQUEzQixDQUFmO0FBQ0Q7QUFDRjtBQUNELFdBQU8sUUFBUDtBQUNELEdBVE0sTUFTQSxJQUFJLGdCQUFnQixLQUFwQixFQUEyQjtBQUNoQztBQUNBLFFBQUksWUFBVSxFQUFkO0FBQ0EsU0FBSyxJQUFJLE9BQU0sQ0FBVixFQUFhLE9BQU0sS0FBSyxNQUE3QixFQUFxQyxPQUFNLElBQTNDLEVBQWdELE1BQWhELEVBQXVEO0FBQ3JELGdCQUFRLElBQVIsQ0FBYSxnQkFBZ0IsS0FBSyxJQUFMLENBQWhCLEVBQTJCLE9BQTNCLENBQWI7QUFDRDtBQUNELFdBQU8sU0FBUDtBQUNEO0FBQ0Q7QUFDQSxTQUFPLElBQVA7QUFDRDs7SUFFSyxhO0FBQ0osMkJBQWU7QUFBQTs7QUFDYixTQUFLLFNBQUwsR0FBaUIsMEJBQWpCO0FBQ0Q7Ozs7MkJBRU8sSSxFQUFvQjtBQUFBLFVBQWQsT0FBYyx1RUFBSixFQUFJOztBQUMxQixVQUFJLE9BQU8sSUFBWDtBQUNBLFVBQUksUUFBUSxTQUFSLEtBQXNCLFNBQXRCLElBQW1DLENBQUMsUUFBUSxTQUFoRCxFQUEyRDtBQUN6RCxlQUFPLEtBQUssS0FBTCxDQUFXLElBQVgsQ0FBUDtBQUNEO0FBQ0QsYUFBTyxnQkFBZ0IsSUFBaEIsRUFBc0IsUUFBUSxHQUE5QixDQUFQO0FBQ0Q7Ozs7OztBQUdILE9BQU8sT0FBUCxHQUFpQjtBQUNmLGlCQUFlO0FBREEsQ0FBakI7Ozs7O0FDekhBLElBQU0sV0FBVyxRQUFRLFlBQVIsQ0FBakI7QUFDQSxJQUFNLE9BQU8sUUFBUSxRQUFSLENBQWI7QUFDQSxJQUFNLE9BQU8sUUFBUSxRQUFSLENBQWI7O0FBRUEsT0FBTyxPQUFQLEdBQWlCO0FBQ2YsaUJBQWUsU0FBUyxhQURUO0FBRWYsYUFBVyxLQUFLLFNBRkQ7QUFHZixhQUFXLEtBQUs7QUFIRCxDQUFqQjs7Ozs7Ozs7O0lDSk0sUztBQUNKLHVCQUFlO0FBQUE7O0FBQ2IsU0FBSyxTQUFMLEdBQWlCLGtCQUFqQjtBQUNEOzs7OzJCQUVPLEksRUFBb0I7QUFBQSxVQUFkLE9BQWMsdUVBQUosRUFBSTs7QUFDMUIsYUFBTyxLQUFLLEtBQUwsQ0FBVyxJQUFYLENBQVA7QUFDRDs7Ozs7O0FBR0gsT0FBTyxPQUFQLEdBQWlCO0FBQ2YsYUFBVztBQURJLENBQWpCOzs7Ozs7Ozs7SUNWTSxTO0FBQ0osdUJBQWU7QUFBQTs7QUFDYixTQUFLLFNBQUwsR0FBaUIsUUFBakI7QUFDRDs7OzsyQkFFTyxJLEVBQW9CO0FBQUEsVUFBZCxPQUFjLHVFQUFKLEVBQUk7O0FBQzFCLGFBQU8sSUFBUDtBQUNEOzs7Ozs7QUFHSCxPQUFPLE9BQVAsR0FBaUI7QUFDZixhQUFXO0FBREksQ0FBakI7Ozs7Ozs7SUNWTSxRLEdBQ0osb0JBQW1FO0FBQUEsTUFBdEQsR0FBc0QsdUVBQWhELEVBQWdEO0FBQUEsTUFBNUMsS0FBNEMsdUVBQXBDLEVBQW9DO0FBQUEsTUFBaEMsV0FBZ0MsdUVBQWxCLEVBQWtCO0FBQUEsTUFBZCxPQUFjLHVFQUFKLEVBQUk7O0FBQUE7O0FBQ2pFLE9BQUssR0FBTCxHQUFXLEdBQVg7QUFDQSxPQUFLLEtBQUwsR0FBYSxLQUFiO0FBQ0EsT0FBSyxXQUFMLEdBQW1CLFdBQW5CO0FBQ0EsT0FBSyxPQUFMLEdBQWUsT0FBZjtBQUNELEM7O0lBR0csSSxHQUNKLGNBQWEsR0FBYixFQUFrQixNQUFsQixFQUFvRztBQUFBLE1BQTFFLFFBQTBFLHVFQUEvRCxrQkFBK0Q7QUFBQSxNQUEzQyxNQUEyQyx1RUFBbEMsRUFBa0M7QUFBQSxNQUE5QixLQUE4Qix1RUFBdEIsRUFBc0I7QUFBQSxNQUFsQixXQUFrQix1RUFBSixFQUFJOztBQUFBOztBQUNsRyxNQUFJLFFBQVEsU0FBWixFQUF1QjtBQUNyQixVQUFNLElBQUksS0FBSixDQUFVLDBCQUFWLENBQU47QUFDRDs7QUFFRCxNQUFJLFdBQVcsU0FBZixFQUEwQjtBQUN4QixVQUFNLElBQUksS0FBSixDQUFVLDZCQUFWLENBQU47QUFDRDs7QUFFRCxPQUFLLEdBQUwsR0FBVyxHQUFYO0FBQ0EsT0FBSyxNQUFMLEdBQWMsTUFBZDtBQUNBLE9BQUssUUFBTCxHQUFnQixRQUFoQjtBQUNBLE9BQUssTUFBTCxHQUFjLE1BQWQ7QUFDQSxPQUFLLEtBQUwsR0FBYSxLQUFiO0FBQ0EsT0FBSyxXQUFMLEdBQW1CLFdBQW5CO0FBQ0QsQzs7SUFHRyxLLEdBQ0osZUFBYSxJQUFiLEVBQXNFO0FBQUEsTUFBbkQsUUFBbUQsdUVBQXhDLEtBQXdDO0FBQUEsTUFBakMsUUFBaUMsdUVBQXRCLEVBQXNCO0FBQUEsTUFBbEIsV0FBa0IsdUVBQUosRUFBSTs7QUFBQTs7QUFDcEUsTUFBSSxTQUFTLFNBQWIsRUFBd0I7QUFDdEIsVUFBTSxJQUFJLEtBQUosQ0FBVSwyQkFBVixDQUFOO0FBQ0Q7O0FBRUQsT0FBSyxJQUFMLEdBQVksSUFBWjtBQUNBLE9BQUssUUFBTCxHQUFnQixRQUFoQjtBQUNBLE9BQUssUUFBTCxHQUFnQixRQUFoQjtBQUNBLE9BQUssV0FBTCxHQUFtQixXQUFuQjtBQUNELEM7O0FBR0gsT0FBTyxPQUFQLEdBQWlCO0FBQ2YsWUFBVSxRQURLO0FBRWYsUUFBTSxJQUZTO0FBR2YsU0FBTztBQUhRLENBQWpCOzs7Ozs7Ozs7OztJQ3pDTSxjOzs7QUFDSiwwQkFBYSxPQUFiLEVBQXNCO0FBQUE7O0FBQUEsZ0lBQ2QsT0FEYzs7QUFFcEIsVUFBSyxPQUFMLEdBQWUsT0FBZjtBQUNBLFVBQUssSUFBTCxHQUFZLGdCQUFaO0FBSG9CO0FBSXJCOzs7RUFMMEIsSzs7SUFRdkIsZTs7O0FBQ0osMkJBQWEsT0FBYixFQUFzQjtBQUFBOztBQUFBLG1JQUNkLE9BRGM7O0FBRXBCLFdBQUssT0FBTCxHQUFlLE9BQWY7QUFDQSxXQUFLLElBQUwsR0FBWSxpQkFBWjtBQUhvQjtBQUlyQjs7O0VBTDJCLEs7O0lBUXhCLFk7OztBQUNKLHdCQUFhLE9BQWIsRUFBc0IsT0FBdEIsRUFBK0I7QUFBQTs7QUFBQSw2SEFDdkIsT0FEdUI7O0FBRTdCLFdBQUssT0FBTCxHQUFlLE9BQWY7QUFDQSxXQUFLLE9BQUwsR0FBZSxPQUFmO0FBQ0EsV0FBSyxJQUFMLEdBQVksY0FBWjtBQUo2QjtBQUs5Qjs7O0VBTndCLEs7O0FBUzNCLE9BQU8sT0FBUCxHQUFpQjtBQUNmLGtCQUFnQixjQUREO0FBRWYsbUJBQWlCLGVBRkY7QUFHZixnQkFBYztBQUhDLENBQWpCOzs7OztBQ3pCQSxJQUFNLE9BQU8sUUFBUSxRQUFSLENBQWI7QUFDQSxJQUFNLFNBQVMsUUFBUSxVQUFSLENBQWY7QUFDQSxJQUFNLFNBQVMsUUFBUSxVQUFSLENBQWY7QUFDQSxJQUFNLFdBQVcsUUFBUSxZQUFSLENBQWpCO0FBQ0EsSUFBTSxTQUFTLFFBQVEsVUFBUixDQUFmO0FBQ0EsSUFBTSxhQUFhLFFBQVEsY0FBUixDQUFuQjtBQUNBLElBQU0sUUFBUSxRQUFRLFNBQVIsQ0FBZDs7QUFFQSxJQUFNLFVBQVU7QUFDZCxVQUFRLE9BQU8sTUFERDtBQUVkLFlBQVUsU0FBUyxRQUZMO0FBR2QsUUFBTSxTQUFTLElBSEQ7QUFJZCxRQUFNLElBSlE7QUFLZCxVQUFRLE1BTE07QUFNZCxVQUFRLE1BTk07QUFPZCxjQUFZLFVBUEU7QUFRZCxTQUFPO0FBUk8sQ0FBaEI7O0FBV0EsT0FBTyxPQUFQLEdBQWlCLE9BQWpCOzs7Ozs7Ozs7QUNuQkEsSUFBTSxRQUFRLFFBQVEsa0JBQVIsQ0FBZDtBQUNBLElBQU0sU0FBUyxRQUFRLFdBQVIsQ0FBZjtBQUNBLElBQU0sUUFBUSxRQUFRLFVBQVIsQ0FBZDtBQUNBLElBQU0sTUFBTSxRQUFRLFdBQVIsQ0FBWjtBQUNBLElBQU0sY0FBYyxRQUFRLGNBQVIsQ0FBcEI7O0FBRUEsSUFBTSxnQkFBZ0IsU0FBaEIsYUFBZ0IsQ0FBQyxRQUFELEVBQVcsUUFBWCxFQUFxQixnQkFBckIsRUFBMEM7QUFDOUQsU0FBTyxTQUFTLElBQVQsR0FBZ0IsSUFBaEIsQ0FBcUIsZ0JBQVE7QUFDbEMsUUFBSSxnQkFBSixFQUFzQjtBQUNwQix1QkFBaUIsUUFBakIsRUFBMkIsSUFBM0I7QUFDRDtBQUNELFFBQU0sY0FBYyxTQUFTLE9BQVQsQ0FBaUIsR0FBakIsQ0FBcUIsY0FBckIsQ0FBcEI7QUFDQSxRQUFNLFVBQVUsTUFBTSxnQkFBTixDQUF1QixRQUF2QixFQUFpQyxXQUFqQyxDQUFoQjtBQUNBLFFBQU0sVUFBVSxFQUFDLEtBQUssU0FBUyxHQUFmLEVBQWhCO0FBQ0EsV0FBTyxRQUFRLE1BQVIsQ0FBZSxJQUFmLEVBQXFCLE9BQXJCLENBQVA7QUFDRCxHQVJNLENBQVA7QUFTRCxDQVZEOztJQVlNLGE7QUFDSiwyQkFBMkI7QUFBQSxRQUFkLE9BQWMsdUVBQUosRUFBSTs7QUFBQTs7QUFDekIsU0FBSyxPQUFMLEdBQWUsQ0FBQyxNQUFELEVBQVMsT0FBVCxDQUFmO0FBQ0EsU0FBSyxJQUFMLEdBQVksUUFBUSxJQUFSLElBQWdCLElBQTVCO0FBQ0EsU0FBSyxPQUFMLEdBQWUsUUFBUSxPQUFSLElBQW1CLEVBQWxDO0FBQ0EsU0FBSyxLQUFMLEdBQWEsUUFBUSxLQUFSLElBQWlCLEtBQTlCO0FBQ0EsU0FBSyxRQUFMLEdBQWdCLFFBQVEsUUFBUixJQUFvQixPQUFPLFFBQTNDO0FBQ0EsU0FBSyxlQUFMLEdBQXVCLFFBQVEsZUFBL0I7QUFDQSxTQUFLLGdCQUFMLEdBQXdCLFFBQVEsZ0JBQWhDO0FBQ0Q7Ozs7aUNBRWEsSSxFQUFNLFEsRUFBdUI7QUFBQSxVQUFiLE1BQWEsdUVBQUosRUFBSTs7QUFDekMsVUFBTSxTQUFTLEtBQUssTUFBcEI7QUFDQSxVQUFNLFNBQVMsS0FBSyxNQUFMLENBQVksV0FBWixFQUFmO0FBQ0EsVUFBSSxjQUFjLEVBQWxCO0FBQ0EsVUFBSSxhQUFhLEVBQWpCO0FBQ0EsVUFBSSxhQUFhLEVBQWpCO0FBQ0EsVUFBSSxhQUFhLEVBQWpCO0FBQ0EsVUFBSSxVQUFVLEtBQWQ7O0FBRUEsV0FBSyxJQUFJLE1BQU0sQ0FBVixFQUFhLE1BQU0sT0FBTyxNQUEvQixFQUF1QyxNQUFNLEdBQTdDLEVBQWtELEtBQWxELEVBQXlEO0FBQ3ZELFlBQU0sUUFBUSxPQUFPLEdBQVAsQ0FBZDs7QUFFQTtBQUNBLFlBQUksQ0FBQyxPQUFPLGNBQVAsQ0FBc0IsTUFBTSxJQUE1QixDQUFMLEVBQXdDO0FBQ3RDLGNBQUksTUFBTSxRQUFWLEVBQW9CO0FBQ2xCLGtCQUFNLElBQUksT0FBTyxjQUFYLCtCQUFzRCxNQUFNLElBQTVELE9BQU47QUFDRCxXQUZELE1BRU87QUFDTDtBQUNEO0FBQ0Y7O0FBRUQsbUJBQVcsSUFBWCxDQUFnQixNQUFNLElBQXRCO0FBQ0EsWUFBSSxNQUFNLFFBQU4sS0FBbUIsT0FBdkIsRUFBZ0M7QUFDOUIsc0JBQVksTUFBTSxJQUFsQixJQUEwQixPQUFPLE1BQU0sSUFBYixDQUExQjtBQUNELFNBRkQsTUFFTyxJQUFJLE1BQU0sUUFBTixLQUFtQixNQUF2QixFQUErQjtBQUNwQyxxQkFBVyxNQUFNLElBQWpCLElBQXlCLE9BQU8sTUFBTSxJQUFiLENBQXpCO0FBQ0QsU0FGTSxNQUVBLElBQUksTUFBTSxRQUFOLEtBQW1CLE1BQXZCLEVBQStCO0FBQ3BDLHFCQUFXLE1BQU0sSUFBakIsSUFBeUIsT0FBTyxNQUFNLElBQWIsQ0FBekI7QUFDQSxvQkFBVSxJQUFWO0FBQ0QsU0FITSxNQUdBLElBQUksTUFBTSxRQUFOLEtBQW1CLE1BQXZCLEVBQStCO0FBQ3BDLHVCQUFhLE9BQU8sTUFBTSxJQUFiLENBQWI7QUFDQSxvQkFBVSxJQUFWO0FBQ0Q7QUFDRjs7QUFFRDtBQUNBLFdBQUssSUFBSSxRQUFULElBQXFCLE1BQXJCLEVBQTZCO0FBQzNCLFlBQUksT0FBTyxjQUFQLENBQXNCLFFBQXRCLEtBQW1DLENBQUMsV0FBVyxRQUFYLENBQW9CLFFBQXBCLENBQXhDLEVBQXVFO0FBQ3JFLGdCQUFNLElBQUksT0FBTyxjQUFYLDBCQUFpRCxRQUFqRCxPQUFOO0FBQ0Q7QUFDRjs7QUFFRCxVQUFJLGlCQUFpQixFQUFDLFFBQVEsTUFBVCxFQUFpQixTQUFTLEVBQTFCLEVBQXJCOztBQUVBLGFBQU8sTUFBUCxDQUFjLGVBQWUsT0FBN0IsRUFBc0MsS0FBSyxPQUEzQzs7QUFFQSxVQUFJLE9BQUosRUFBYTtBQUNYLFlBQUksS0FBSyxRQUFMLEtBQWtCLGtCQUF0QixFQUEwQztBQUN4Qyx5QkFBZSxJQUFmLEdBQXNCLEtBQUssU0FBTCxDQUFlLFVBQWYsQ0FBdEI7QUFDQSx5QkFBZSxPQUFmLENBQXVCLGNBQXZCLElBQXlDLGtCQUF6QztBQUNELFNBSEQsTUFHTyxJQUFJLEtBQUssUUFBTCxLQUFrQixxQkFBdEIsRUFBNkM7QUFDbEQsY0FBSSxPQUFPLElBQUksS0FBSyxRQUFULEVBQVg7O0FBRUEsZUFBSyxJQUFJLFFBQVQsSUFBcUIsVUFBckIsRUFBaUM7QUFDL0IsaUJBQUssTUFBTCxDQUFZLFFBQVosRUFBc0IsV0FBVyxRQUFYLENBQXRCO0FBQ0Q7QUFDRCx5QkFBZSxJQUFmLEdBQXNCLElBQXRCO0FBQ0QsU0FQTSxNQU9BLElBQUksS0FBSyxRQUFMLEtBQWtCLG1DQUF0QixFQUEyRDtBQUNoRSxjQUFJLFdBQVcsRUFBZjtBQUNBLGVBQUssSUFBSSxTQUFULElBQXFCLFVBQXJCLEVBQWlDO0FBQy9CLGdCQUFNLGFBQWEsbUJBQW1CLFNBQW5CLENBQW5CO0FBQ0EsZ0JBQU0sZUFBZSxtQkFBbUIsV0FBVyxTQUFYLENBQW5CLENBQXJCO0FBQ0EscUJBQVMsSUFBVCxDQUFjLGFBQWEsR0FBYixHQUFtQixZQUFqQztBQUNEO0FBQ0QscUJBQVcsU0FBUyxJQUFULENBQWMsR0FBZCxDQUFYOztBQUVBLHlCQUFlLElBQWYsR0FBc0IsUUFBdEI7QUFDQSx5QkFBZSxPQUFmLENBQXVCLGNBQXZCLElBQXlDLG1DQUF6QztBQUNEO0FBQ0Y7O0FBRUQsVUFBSSxLQUFLLElBQVQsRUFBZTtBQUNiLHlCQUFpQixLQUFLLElBQUwsQ0FBVSxZQUFWLENBQXVCLGNBQXZCLENBQWpCO0FBQ0Q7O0FBRUQsVUFBSSxZQUFZLFlBQVksS0FBWixDQUFrQixLQUFLLEdBQXZCLENBQWhCO0FBQ0Esa0JBQVksVUFBVSxNQUFWLENBQWlCLFVBQWpCLENBQVo7QUFDQSxrQkFBWSxJQUFJLEdBQUosQ0FBUSxTQUFSLENBQVo7QUFDQSxnQkFBVSxHQUFWLENBQWMsT0FBZCxFQUF1QixXQUF2Qjs7QUFFQSxhQUFPO0FBQ0wsYUFBSyxVQUFVLFFBQVYsRUFEQTtBQUVMLGlCQUFTO0FBRkosT0FBUDtBQUlEOzs7MkJBRU8sSSxFQUFNLFEsRUFBdUI7QUFBQSxVQUFiLE1BQWEsdUVBQUosRUFBSTs7QUFDbkMsVUFBTSxtQkFBbUIsS0FBSyxnQkFBOUI7QUFDQSxVQUFNLFVBQVUsS0FBSyxZQUFMLENBQWtCLElBQWxCLEVBQXdCLFFBQXhCLEVBQWtDLE1BQWxDLENBQWhCOztBQUVBLFVBQUksS0FBSyxlQUFULEVBQTBCO0FBQ3hCLGFBQUssZUFBTCxDQUFxQixPQUFyQjtBQUNEOztBQUVELGFBQU8sS0FBSyxLQUFMLENBQVcsUUFBUSxHQUFuQixFQUF3QixRQUFRLE9BQWhDLEVBQ0osSUFESSxDQUNDLFVBQVUsUUFBVixFQUFvQjtBQUN4QixZQUFJLFNBQVMsTUFBVCxLQUFvQixHQUF4QixFQUE2QjtBQUMzQjtBQUNEO0FBQ0QsZUFBTyxjQUFjLFFBQWQsRUFBd0IsUUFBeEIsRUFBa0MsZ0JBQWxDLEVBQ0osSUFESSxDQUNDLFVBQVUsSUFBVixFQUFnQjtBQUNwQixjQUFJLFNBQVMsRUFBYixFQUFpQjtBQUNmLG1CQUFPLElBQVA7QUFDRCxXQUZELE1BRU87QUFDTCxnQkFBTSxRQUFRLFNBQVMsTUFBVCxHQUFrQixHQUFsQixHQUF3QixTQUFTLFVBQS9DO0FBQ0EsZ0JBQU0sUUFBUSxJQUFJLE9BQU8sWUFBWCxDQUF3QixLQUF4QixFQUErQixJQUEvQixDQUFkO0FBQ0EsbUJBQU8sUUFBUSxNQUFSLENBQWUsS0FBZixDQUFQO0FBQ0Q7QUFDRixTQVRJLENBQVA7QUFVRCxPQWZJLENBQVA7QUFnQkQ7Ozs7OztBQUdILE9BQU8sT0FBUCxHQUFpQjtBQUNmLGlCQUFlO0FBREEsQ0FBakI7Ozs7O0FDOUlBLElBQU0sT0FBTyxRQUFRLFFBQVIsQ0FBYjs7QUFFQSxPQUFPLE9BQVAsR0FBaUI7QUFDZixpQkFBZSxLQUFLO0FBREwsQ0FBakI7Ozs7O0FDRkEsSUFBTSxNQUFNLFFBQVEsV0FBUixDQUFaOztBQUVBLElBQU0scUJBQXFCLFNBQXJCLGtCQUFxQixDQUFVLFVBQVYsRUFBc0IsR0FBdEIsRUFBMkI7QUFDcEQsTUFBTSxZQUFZLElBQUksR0FBSixDQUFRLEdBQVIsQ0FBbEI7QUFDQSxNQUFNLFNBQVMsVUFBVSxRQUFWLENBQW1CLE9BQW5CLENBQTJCLEdBQTNCLEVBQWdDLEVBQWhDLENBQWY7O0FBRm9EO0FBQUE7QUFBQTs7QUFBQTtBQUlwRCx5QkFBc0IsVUFBdEIsOEhBQWtDO0FBQUEsVUFBekIsU0FBeUI7O0FBQ2hDLFVBQUksVUFBVSxPQUFWLENBQWtCLFFBQWxCLENBQTJCLE1BQTNCLENBQUosRUFBd0M7QUFDdEMsZUFBTyxTQUFQO0FBQ0Q7QUFDRjtBQVJtRDtBQUFBO0FBQUE7QUFBQTtBQUFBO0FBQUE7QUFBQTtBQUFBO0FBQUE7QUFBQTtBQUFBO0FBQUE7QUFBQTtBQUFBOztBQVVwRCxRQUFNLHNDQUFvQyxHQUFwQyxDQUFOO0FBQ0QsQ0FYRDs7QUFhQSxJQUFNLG1CQUFtQixTQUFuQixnQkFBbUIsQ0FBVSxRQUFWLEVBQW9CLFdBQXBCLEVBQWlDO0FBQ3hELE1BQUksZ0JBQWdCLFNBQWhCLElBQTZCLGdCQUFnQixJQUFqRCxFQUF1RDtBQUNyRCxXQUFPLFNBQVMsQ0FBVCxDQUFQO0FBQ0Q7O0FBRUQsTUFBTSxXQUFXLFlBQVksV0FBWixHQUEwQixLQUExQixDQUFnQyxHQUFoQyxFQUFxQyxDQUFyQyxFQUF3QyxJQUF4QyxFQUFqQjtBQUNBLE1BQU0sV0FBVyxTQUFTLEtBQVQsQ0FBZSxHQUFmLEVBQW9CLENBQXBCLElBQXlCLElBQTFDO0FBQ0EsTUFBTSxlQUFlLEtBQXJCO0FBQ0EsTUFBTSxrQkFBa0IsQ0FBQyxRQUFELEVBQVcsUUFBWCxFQUFxQixZQUFyQixDQUF4Qjs7QUFSd0Q7QUFBQTtBQUFBOztBQUFBO0FBVXhELDBCQUFvQixRQUFwQixtSUFBOEI7QUFBQSxVQUFyQixPQUFxQjs7QUFDNUIsVUFBSSxnQkFBZ0IsUUFBaEIsQ0FBeUIsUUFBUSxTQUFqQyxDQUFKLEVBQWlEO0FBQy9DLGVBQU8sT0FBUDtBQUNEO0FBQ0Y7QUFkdUQ7QUFBQTtBQUFBO0FBQUE7QUFBQTtBQUFBO0FBQUE7QUFBQTtBQUFBO0FBQUE7QUFBQTtBQUFBO0FBQUE7QUFBQTs7QUFnQnhELFFBQU0scURBQW1ELFdBQW5ELENBQU47QUFDRCxDQWpCRDs7QUFtQkEsSUFBTSxpQkFBaUIsU0FBakIsY0FBaUIsQ0FBVSxNQUFWLEVBQWtCO0FBQ3ZDO0FBQ0EsU0FBUSw4QkFBNkIsSUFBN0IsQ0FBa0MsTUFBbEM7QUFBUjtBQUNELENBSEQ7O0FBS0EsT0FBTyxPQUFQLEdBQWlCO0FBQ2Ysc0JBQW9CLGtCQURMO0FBRWYsb0JBQWtCLGdCQUZIO0FBR2Ysa0JBQWdCO0FBSEQsQ0FBakI7OztBQ3ZDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTs7QUNOQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBOztBQzdEQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7O0FDdENBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBOzs7QUNyV0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBOzs7O0FDckRBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBOztBQ2hNQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0EiLCJmaWxlIjoiZ2VuZXJhdGVkLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXNDb250ZW50IjpbIihmdW5jdGlvbiBlKHQsbixyKXtmdW5jdGlvbiBzKG8sdSl7aWYoIW5bb10pe2lmKCF0W29dKXt2YXIgYT10eXBlb2YgcmVxdWlyZT09XCJmdW5jdGlvblwiJiZyZXF1aXJlO2lmKCF1JiZhKXJldHVybiBhKG8sITApO2lmKGkpcmV0dXJuIGkobywhMCk7dmFyIGY9bmV3IEVycm9yKFwiQ2Fubm90IGZpbmQgbW9kdWxlICdcIitvK1wiJ1wiKTt0aHJvdyBmLmNvZGU9XCJNT0RVTEVfTk9UX0ZPVU5EXCIsZn12YXIgbD1uW29dPXtleHBvcnRzOnt9fTt0W29dWzBdLmNhbGwobC5leHBvcnRzLGZ1bmN0aW9uKGUpe3ZhciBuPXRbb11bMV1bZV07cmV0dXJuIHMobj9uOmUpfSxsLGwuZXhwb3J0cyxlLHQsbixyKX1yZXR1cm4gbltvXS5leHBvcnRzfXZhciBpPXR5cGVvZiByZXF1aXJlPT1cImZ1bmN0aW9uXCImJnJlcXVpcmU7Zm9yKHZhciBvPTA7bzxyLmxlbmd0aDtvKyspcyhyW29dKTtyZXR1cm4gc30pIiwiY2xhc3MgQmFzaWNBdXRoZW50aWNhdGlvbiB7XG4gIGNvbnN0cnVjdG9yIChvcHRpb25zID0ge30pIHtcbiAgICBjb25zdCB1c2VybmFtZSA9IG9wdGlvbnMudXNlcm5hbWVcbiAgICBjb25zdCBwYXNzd29yZCA9IG9wdGlvbnMucGFzc3dvcmRcbiAgICBjb25zdCBoYXNoID0gd2luZG93LmJ0b2EodXNlcm5hbWUgKyAnOicgKyBwYXNzd29yZClcbiAgICB0aGlzLmF1dGggPSAnQmFzaWMgJyArIGhhc2hcbiAgfVxuXG4gIGF1dGhlbnRpY2F0ZSAob3B0aW9ucykge1xuICAgIG9wdGlvbnMuaGVhZGVyc1snQXV0aG9yaXphdGlvbiddID0gdGhpcy5hdXRoXG4gICAgcmV0dXJuIG9wdGlvbnNcbiAgfVxufVxuXG5tb2R1bGUuZXhwb3J0cyA9IHtcbiAgQmFzaWNBdXRoZW50aWNhdGlvbjogQmFzaWNBdXRoZW50aWNhdGlvblxufVxuIiwiY29uc3QgYmFzaWMgPSByZXF1aXJlKCcuL2Jhc2ljJylcbmNvbnN0IHNlc3Npb24gPSByZXF1aXJlKCcuL3Nlc3Npb24nKVxuY29uc3QgdG9rZW4gPSByZXF1aXJlKCcuL3Rva2VuJylcblxubW9kdWxlLmV4cG9ydHMgPSB7XG4gIEJhc2ljQXV0aGVudGljYXRpb246IGJhc2ljLkJhc2ljQXV0aGVudGljYXRpb24sXG4gIFNlc3Npb25BdXRoZW50aWNhdGlvbjogc2Vzc2lvbi5TZXNzaW9uQXV0aGVudGljYXRpb24sXG4gIFRva2VuQXV0aGVudGljYXRpb246IHRva2VuLlRva2VuQXV0aGVudGljYXRpb25cbn1cbiIsImNvbnN0IHV0aWxzID0gcmVxdWlyZSgnLi4vdXRpbHMnKVxuXG5mdW5jdGlvbiB0cmltIChzdHIpIHtcbiAgcmV0dXJuIHN0ci5yZXBsYWNlKC9eXFxzXFxzKi8sICcnKS5yZXBsYWNlKC9cXHNcXHMqJC8sICcnKVxufVxuXG5mdW5jdGlvbiBnZXRDb29raWUgKGNvb2tpZU5hbWUsIGNvb2tpZVN0cmluZykge1xuICBjb29raWVTdHJpbmcgPSBjb29raWVTdHJpbmcgfHwgd2luZG93LmRvY3VtZW50LmNvb2tpZVxuICBpZiAoY29va2llU3RyaW5nICYmIGNvb2tpZVN0cmluZyAhPT0gJycpIHtcbiAgICBjb25zdCBjb29raWVzID0gY29va2llU3RyaW5nLnNwbGl0KCc7JylcbiAgICBmb3IgKHZhciBpID0gMDsgaSA8IGNvb2tpZXMubGVuZ3RoOyBpKyspIHtcbiAgICAgIGNvbnN0IGNvb2tpZSA9IHRyaW0oY29va2llc1tpXSlcbiAgICAgIC8vIERvZXMgdGhpcyBjb29raWUgc3RyaW5nIGJlZ2luIHdpdGggdGhlIG5hbWUgd2Ugd2FudD9cbiAgICAgIGlmIChjb29raWUuc3Vic3RyaW5nKDAsIGNvb2tpZU5hbWUubGVuZ3RoICsgMSkgPT09IChjb29raWVOYW1lICsgJz0nKSkge1xuICAgICAgICByZXR1cm4gZGVjb2RlVVJJQ29tcG9uZW50KGNvb2tpZS5zdWJzdHJpbmcoY29va2llTmFtZS5sZW5ndGggKyAxKSlcbiAgICAgIH1cbiAgICB9XG4gIH1cbiAgcmV0dXJuIG51bGxcbn1cblxuY2xhc3MgU2Vzc2lvbkF1dGhlbnRpY2F0aW9uIHtcbiAgY29uc3RydWN0b3IgKG9wdGlvbnMgPSB7fSkge1xuICAgIHRoaXMuY3NyZlRva2VuID0gZ2V0Q29va2llKG9wdGlvbnMuY3NyZkNvb2tpZU5hbWUsIG9wdGlvbnMuY29va2llU3RyaW5nKVxuICAgIHRoaXMuY3NyZkhlYWRlck5hbWUgPSBvcHRpb25zLmNzcmZIZWFkZXJOYW1lXG4gIH1cblxuICBhdXRoZW50aWNhdGUgKG9wdGlvbnMpIHtcbiAgICBvcHRpb25zLmNyZWRlbnRpYWxzID0gJ3NhbWUtb3JpZ2luJ1xuICAgIGlmICh0aGlzLmNzcmZUb2tlbiAmJiAhdXRpbHMuY3NyZlNhZmVNZXRob2Qob3B0aW9ucy5tZXRob2QpKSB7XG4gICAgICBvcHRpb25zLmhlYWRlcnNbdGhpcy5jc3JmSGVhZGVyTmFtZV0gPSB0aGlzLmNzcmZUb2tlblxuICAgIH1cbiAgICByZXR1cm4gb3B0aW9uc1xuICB9XG59XG5cbm1vZHVsZS5leHBvcnRzID0ge1xuICBTZXNzaW9uQXV0aGVudGljYXRpb246IFNlc3Npb25BdXRoZW50aWNhdGlvblxufVxuIiwiY2xhc3MgVG9rZW5BdXRoZW50aWNhdGlvbiB7XG4gIGNvbnN0cnVjdG9yIChvcHRpb25zID0ge30pIHtcbiAgICB0aGlzLnRva2VuID0gb3B0aW9ucy50b2tlblxuICAgIHRoaXMuc2NoZW1lID0gb3B0aW9ucy5zY2hlbWUgfHwgJ0JlYXJlcidcbiAgfVxuXG4gIGF1dGhlbnRpY2F0ZSAob3B0aW9ucykge1xuICAgIG9wdGlvbnMuaGVhZGVyc1snQXV0aG9yaXphdGlvbiddID0gdGhpcy5zY2hlbWUgKyAnICcgKyB0aGlzLnRva2VuXG4gICAgcmV0dXJuIG9wdGlvbnNcbiAgfVxufVxuXG5tb2R1bGUuZXhwb3J0cyA9IHtcbiAgVG9rZW5BdXRoZW50aWNhdGlvbjogVG9rZW5BdXRoZW50aWNhdGlvblxufVxuIiwiY29uc3QgZG9jdW1lbnQgPSByZXF1aXJlKCcuL2RvY3VtZW50JylcbmNvbnN0IGNvZGVjcyA9IHJlcXVpcmUoJy4vY29kZWNzJylcbmNvbnN0IGVycm9ycyA9IHJlcXVpcmUoJy4vZXJyb3JzJylcbmNvbnN0IHRyYW5zcG9ydHMgPSByZXF1aXJlKCcuL3RyYW5zcG9ydHMnKVxuY29uc3QgdXRpbHMgPSByZXF1aXJlKCcuL3V0aWxzJylcblxuZnVuY3Rpb24gbG9va3VwTGluayAobm9kZSwga2V5cykge1xuICBmb3IgKGxldCBrZXkgb2Yga2V5cykge1xuICAgIGlmIChub2RlIGluc3RhbmNlb2YgZG9jdW1lbnQuRG9jdW1lbnQpIHtcbiAgICAgIG5vZGUgPSBub2RlLmNvbnRlbnRba2V5XVxuICAgIH0gZWxzZSB7XG4gICAgICBub2RlID0gbm9kZVtrZXldXG4gICAgfVxuICAgIGlmIChub2RlID09PSB1bmRlZmluZWQpIHtcbiAgICAgIHRocm93IG5ldyBlcnJvcnMuTGlua0xvb2t1cEVycm9yKGBJbnZhbGlkIGxpbmsgbG9va3VwOiAke0pTT04uc3RyaW5naWZ5KGtleXMpfWApXG4gICAgfVxuICB9XG4gIGlmICghKG5vZGUgaW5zdGFuY2VvZiBkb2N1bWVudC5MaW5rKSkge1xuICAgIHRocm93IG5ldyBlcnJvcnMuTGlua0xvb2t1cEVycm9yKGBJbnZhbGlkIGxpbmsgbG9va3VwOiAke0pTT04uc3RyaW5naWZ5KGtleXMpfWApXG4gIH1cbiAgcmV0dXJuIG5vZGVcbn1cblxuY2xhc3MgQ2xpZW50IHtcbiAgY29uc3RydWN0b3IgKG9wdGlvbnMgPSB7fSkge1xuICAgIGNvbnN0IHRyYW5zcG9ydE9wdGlvbnMgPSB7XG4gICAgICBhdXRoOiBvcHRpb25zLmF1dGggfHwgbnVsbCxcbiAgICAgIGhlYWRlcnM6IG9wdGlvbnMuaGVhZGVycyB8fCB7fSxcbiAgICAgIHJlcXVlc3RDYWxsYmFjazogb3B0aW9ucy5yZXF1ZXN0Q2FsbGJhY2ssXG4gICAgICByZXNwb25zZUNhbGxiYWNrOiBvcHRpb25zLnJlc3BvbnNlQ2FsbGJhY2tcbiAgICB9XG5cbiAgICB0aGlzLmRlY29kZXJzID0gb3B0aW9ucy5kZWNvZGVycyB8fCBbbmV3IGNvZGVjcy5Db3JlSlNPTkNvZGVjKCksIG5ldyBjb2RlY3MuSlNPTkNvZGVjKCksIG5ldyBjb2RlY3MuVGV4dENvZGVjKCldXG4gICAgdGhpcy50cmFuc3BvcnRzID0gb3B0aW9ucy50cmFuc3BvcnRzIHx8IFtuZXcgdHJhbnNwb3J0cy5IVFRQVHJhbnNwb3J0KHRyYW5zcG9ydE9wdGlvbnMpXVxuICB9XG5cbiAgYWN0aW9uIChkb2N1bWVudCwga2V5cywgcGFyYW1zID0ge30pIHtcbiAgICBjb25zdCBsaW5rID0gbG9va3VwTGluayhkb2N1bWVudCwga2V5cylcbiAgICBjb25zdCB0cmFuc3BvcnQgPSB1dGlscy5kZXRlcm1pbmVUcmFuc3BvcnQodGhpcy50cmFuc3BvcnRzLCBsaW5rLnVybClcbiAgICByZXR1cm4gdHJhbnNwb3J0LmFjdGlvbihsaW5rLCB0aGlzLmRlY29kZXJzLCBwYXJhbXMpXG4gIH1cblxuICBnZXQgKHVybCkge1xuICAgIGNvbnN0IGxpbmsgPSBuZXcgZG9jdW1lbnQuTGluayh1cmwsICdnZXQnKVxuICAgIGNvbnN0IHRyYW5zcG9ydCA9IHV0aWxzLmRldGVybWluZVRyYW5zcG9ydCh0aGlzLnRyYW5zcG9ydHMsIHVybClcbiAgICByZXR1cm4gdHJhbnNwb3J0LmFjdGlvbihsaW5rLCB0aGlzLmRlY29kZXJzKVxuICB9XG59XG5cbm1vZHVsZS5leHBvcnRzID0ge1xuICBDbGllbnQ6IENsaWVudFxufVxuIiwiY29uc3QgZG9jdW1lbnQgPSByZXF1aXJlKCcuLi9kb2N1bWVudCcpXG5jb25zdCBVUkwgPSByZXF1aXJlKCd1cmwtcGFyc2UnKVxuXG5mdW5jdGlvbiB1bmVzY2FwZUtleSAoa2V5KSB7XG4gIGlmIChrZXkubWF0Y2goL19fKHR5cGV8bWV0YSkkLykpIHtcbiAgICByZXR1cm4ga2V5LnN1YnN0cmluZygxKVxuICB9XG4gIHJldHVybiBrZXlcbn1cblxuZnVuY3Rpb24gZ2V0U3RyaW5nIChvYmosIGtleSkge1xuICBjb25zdCB2YWx1ZSA9IG9ialtrZXldXG4gIGlmICh0eXBlb2YgKHZhbHVlKSA9PT0gJ3N0cmluZycpIHtcbiAgICByZXR1cm4gdmFsdWVcbiAgfVxuICByZXR1cm4gJydcbn1cblxuZnVuY3Rpb24gZ2V0Qm9vbGVhbiAob2JqLCBrZXkpIHtcbiAgY29uc3QgdmFsdWUgPSBvYmpba2V5XVxuICBpZiAodHlwZW9mICh2YWx1ZSkgPT09ICdib29sZWFuJykge1xuICAgIHJldHVybiB2YWx1ZVxuICB9XG4gIHJldHVybiBmYWxzZVxufVxuXG5mdW5jdGlvbiBnZXRPYmplY3QgKG9iaiwga2V5KSB7XG4gIGNvbnN0IHZhbHVlID0gb2JqW2tleV1cbiAgaWYgKHR5cGVvZiAodmFsdWUpID09PSAnb2JqZWN0Jykge1xuICAgIHJldHVybiB2YWx1ZVxuICB9XG4gIHJldHVybiB7fVxufVxuXG5mdW5jdGlvbiBnZXRBcnJheSAob2JqLCBrZXkpIHtcbiAgY29uc3QgdmFsdWUgPSBvYmpba2V5XVxuICBpZiAodmFsdWUgaW5zdGFuY2VvZiBBcnJheSkge1xuICAgIHJldHVybiB2YWx1ZVxuICB9XG4gIHJldHVybiBbXVxufVxuXG5mdW5jdGlvbiBnZXRDb250ZW50IChkYXRhLCBiYXNlVXJsKSB7XG4gIGNvbnN0IGV4Y2x1ZGVkID0gWydfdHlwZScsICdfbWV0YSddXG4gIHZhciBjb250ZW50ID0ge31cbiAgZm9yICh2YXIgcHJvcGVydHkgaW4gZGF0YSkge1xuICAgIGlmIChkYXRhLmhhc093blByb3BlcnR5KHByb3BlcnR5KSAmJiAhZXhjbHVkZWQuaW5jbHVkZXMocHJvcGVydHkpKSB7XG4gICAgICBjb25zdCBrZXkgPSB1bmVzY2FwZUtleShwcm9wZXJ0eSlcbiAgICAgIGNvbnN0IHZhbHVlID0gcHJpbWl0aXZlVG9Ob2RlKGRhdGFbcHJvcGVydHldLCBiYXNlVXJsKVxuICAgICAgY29udGVudFtrZXldID0gdmFsdWVcbiAgICB9XG4gIH1cbiAgcmV0dXJuIGNvbnRlbnRcbn1cblxuZnVuY3Rpb24gcHJpbWl0aXZlVG9Ob2RlIChkYXRhLCBiYXNlVXJsKSB7XG4gIGNvbnN0IGlzT2JqZWN0ID0gZGF0YSBpbnN0YW5jZW9mIE9iamVjdCAmJiAhKGRhdGEgaW5zdGFuY2VvZiBBcnJheSlcblxuICBpZiAoaXNPYmplY3QgJiYgZGF0YS5fdHlwZSA9PT0gJ2RvY3VtZW50Jykge1xuICAgIC8vIERvY3VtZW50XG4gICAgY29uc3QgbWV0YSA9IGdldE9iamVjdChkYXRhLCAnX21ldGEnKVxuICAgIGNvbnN0IHJlbGF0aXZlVXJsID0gZ2V0U3RyaW5nKG1ldGEsICd1cmwnKVxuICAgIGNvbnN0IHVybCA9IHJlbGF0aXZlVXJsID8gVVJMKHJlbGF0aXZlVXJsLCBiYXNlVXJsKS50b1N0cmluZygpIDogJydcbiAgICBjb25zdCB0aXRsZSA9IGdldFN0cmluZyhtZXRhLCAndGl0bGUnKVxuICAgIGNvbnN0IGRlc2NyaXB0aW9uID0gZ2V0U3RyaW5nKG1ldGEsICdkZXNjcmlwdGlvbicpXG4gICAgY29uc3QgY29udGVudCA9IGdldENvbnRlbnQoZGF0YSwgdXJsKVxuICAgIHJldHVybiBuZXcgZG9jdW1lbnQuRG9jdW1lbnQodXJsLCB0aXRsZSwgZGVzY3JpcHRpb24sIGNvbnRlbnQpXG4gIH0gZWxzZSBpZiAoaXNPYmplY3QgJiYgZGF0YS5fdHlwZSA9PT0gJ2xpbmsnKSB7XG4gICAgLy8gTGlua1xuICAgIGNvbnN0IHJlbGF0aXZlVXJsID0gZ2V0U3RyaW5nKGRhdGEsICd1cmwnKVxuICAgIGNvbnN0IHVybCA9IHJlbGF0aXZlVXJsID8gVVJMKHJlbGF0aXZlVXJsLCBiYXNlVXJsKS50b1N0cmluZygpIDogJydcbiAgICBjb25zdCBtZXRob2QgPSBnZXRTdHJpbmcoZGF0YSwgJ2FjdGlvbicpIHx8ICdnZXQnXG4gICAgY29uc3QgdGl0bGUgPSBnZXRTdHJpbmcoZGF0YSwgJ3RpdGxlJylcbiAgICBjb25zdCBkZXNjcmlwdGlvbiA9IGdldFN0cmluZyhkYXRhLCAnZGVzY3JpcHRpb24nKVxuICAgIGNvbnN0IGZpZWxkc0RhdGEgPSBnZXRBcnJheShkYXRhLCAnZmllbGRzJylcbiAgICB2YXIgZmllbGRzID0gW11cbiAgICBmb3IgKGxldCBpZHggPSAwLCBsZW4gPSBmaWVsZHNEYXRhLmxlbmd0aDsgaWR4IDwgbGVuOyBpZHgrKykge1xuICAgICAgbGV0IHZhbHVlID0gZmllbGRzRGF0YVtpZHhdXG4gICAgICBsZXQgbmFtZSA9IGdldFN0cmluZyh2YWx1ZSwgJ25hbWUnKVxuICAgICAgbGV0IHJlcXVpcmVkID0gZ2V0Qm9vbGVhbih2YWx1ZSwgJ3JlcXVpcmVkJylcbiAgICAgIGxldCBsb2NhdGlvbiA9IGdldFN0cmluZyh2YWx1ZSwgJ2xvY2F0aW9uJylcbiAgICAgIGxldCBmaWVsZERlc2NyaXB0aW9uID0gZ2V0U3RyaW5nKHZhbHVlLCAnZmllbGREZXNjcmlwdGlvbicpXG4gICAgICBsZXQgZmllbGQgPSBuZXcgZG9jdW1lbnQuRmllbGQobmFtZSwgcmVxdWlyZWQsIGxvY2F0aW9uLCBmaWVsZERlc2NyaXB0aW9uKVxuICAgICAgZmllbGRzLnB1c2goZmllbGQpXG4gICAgfVxuICAgIHJldHVybiBuZXcgZG9jdW1lbnQuTGluayh1cmwsIG1ldGhvZCwgJ2FwcGxpY2F0aW9uL2pzb24nLCBmaWVsZHMsIHRpdGxlLCBkZXNjcmlwdGlvbilcbiAgfSBlbHNlIGlmIChpc09iamVjdCkge1xuICAgIC8vIE9iamVjdFxuICAgIGxldCBjb250ZW50ID0ge31cbiAgICBmb3IgKGxldCBrZXkgaW4gZGF0YSkge1xuICAgICAgaWYgKGRhdGEuaGFzT3duUHJvcGVydHkoa2V5KSkge1xuICAgICAgICBjb250ZW50W2tleV0gPSBwcmltaXRpdmVUb05vZGUoZGF0YVtrZXldLCBiYXNlVXJsKVxuICAgICAgfVxuICAgIH1cbiAgICByZXR1cm4gY29udGVudFxuICB9IGVsc2UgaWYgKGRhdGEgaW5zdGFuY2VvZiBBcnJheSkge1xuICAgIC8vIE9iamVjdFxuICAgIGxldCBjb250ZW50ID0gW11cbiAgICBmb3IgKGxldCBpZHggPSAwLCBsZW4gPSBkYXRhLmxlbmd0aDsgaWR4IDwgbGVuOyBpZHgrKykge1xuICAgICAgY29udGVudC5wdXNoKHByaW1pdGl2ZVRvTm9kZShkYXRhW2lkeF0sIGJhc2VVcmwpKVxuICAgIH1cbiAgICByZXR1cm4gY29udGVudFxuICB9XG4gIC8vIFByaW1pdGl2ZVxuICByZXR1cm4gZGF0YVxufVxuXG5jbGFzcyBDb3JlSlNPTkNvZGVjIHtcbiAgY29uc3RydWN0b3IgKCkge1xuICAgIHRoaXMubWVkaWFUeXBlID0gJ2FwcGxpY2F0aW9uL2NvcmVhcGkranNvbidcbiAgfVxuXG4gIGRlY29kZSAodGV4dCwgb3B0aW9ucyA9IHt9KSB7XG4gICAgbGV0IGRhdGEgPSB0ZXh0XG4gICAgaWYgKG9wdGlvbnMucHJlbG9hZGVkID09PSB1bmRlZmluZWQgfHwgIW9wdGlvbnMucHJlbG9hZGVkKSB7XG4gICAgICBkYXRhID0gSlNPTi5wYXJzZSh0ZXh0KVxuICAgIH1cbiAgICByZXR1cm4gcHJpbWl0aXZlVG9Ob2RlKGRhdGEsIG9wdGlvbnMudXJsKVxuICB9XG59XG5cbm1vZHVsZS5leHBvcnRzID0ge1xuICBDb3JlSlNPTkNvZGVjOiBDb3JlSlNPTkNvZGVjXG59XG4iLCJjb25zdCBjb3JlanNvbiA9IHJlcXVpcmUoJy4vY29yZWpzb24nKVxuY29uc3QganNvbiA9IHJlcXVpcmUoJy4vanNvbicpXG5jb25zdCB0ZXh0ID0gcmVxdWlyZSgnLi90ZXh0JylcblxubW9kdWxlLmV4cG9ydHMgPSB7XG4gIENvcmVKU09OQ29kZWM6IGNvcmVqc29uLkNvcmVKU09OQ29kZWMsXG4gIEpTT05Db2RlYzoganNvbi5KU09OQ29kZWMsXG4gIFRleHRDb2RlYzogdGV4dC5UZXh0Q29kZWNcbn1cbiIsImNsYXNzIEpTT05Db2RlYyB7XG4gIGNvbnN0cnVjdG9yICgpIHtcbiAgICB0aGlzLm1lZGlhVHlwZSA9ICdhcHBsaWNhdGlvbi9qc29uJ1xuICB9XG5cbiAgZGVjb2RlICh0ZXh0LCBvcHRpb25zID0ge30pIHtcbiAgICByZXR1cm4gSlNPTi5wYXJzZSh0ZXh0KVxuICB9XG59XG5cbm1vZHVsZS5leHBvcnRzID0ge1xuICBKU09OQ29kZWM6IEpTT05Db2RlY1xufVxuIiwiY2xhc3MgVGV4dENvZGVjIHtcbiAgY29uc3RydWN0b3IgKCkge1xuICAgIHRoaXMubWVkaWFUeXBlID0gJ3RleHQvKidcbiAgfVxuXG4gIGRlY29kZSAodGV4dCwgb3B0aW9ucyA9IHt9KSB7XG4gICAgcmV0dXJuIHRleHRcbiAgfVxufVxuXG5tb2R1bGUuZXhwb3J0cyA9IHtcbiAgVGV4dENvZGVjOiBUZXh0Q29kZWNcbn1cbiIsImNsYXNzIERvY3VtZW50IHtcbiAgY29uc3RydWN0b3IgKHVybCA9ICcnLCB0aXRsZSA9ICcnLCBkZXNjcmlwdGlvbiA9ICcnLCBjb250ZW50ID0ge30pIHtcbiAgICB0aGlzLnVybCA9IHVybFxuICAgIHRoaXMudGl0bGUgPSB0aXRsZVxuICAgIHRoaXMuZGVzY3JpcHRpb24gPSBkZXNjcmlwdGlvblxuICAgIHRoaXMuY29udGVudCA9IGNvbnRlbnRcbiAgfVxufVxuXG5jbGFzcyBMaW5rIHtcbiAgY29uc3RydWN0b3IgKHVybCwgbWV0aG9kLCBlbmNvZGluZyA9ICdhcHBsaWNhdGlvbi9qc29uJywgZmllbGRzID0gW10sIHRpdGxlID0gJycsIGRlc2NyaXB0aW9uID0gJycpIHtcbiAgICBpZiAodXJsID09PSB1bmRlZmluZWQpIHtcbiAgICAgIHRocm93IG5ldyBFcnJvcigndXJsIGFyZ3VtZW50IGlzIHJlcXVpcmVkJylcbiAgICB9XG5cbiAgICBpZiAobWV0aG9kID09PSB1bmRlZmluZWQpIHtcbiAgICAgIHRocm93IG5ldyBFcnJvcignbWV0aG9kIGFyZ3VtZW50IGlzIHJlcXVpcmVkJylcbiAgICB9XG5cbiAgICB0aGlzLnVybCA9IHVybFxuICAgIHRoaXMubWV0aG9kID0gbWV0aG9kXG4gICAgdGhpcy5lbmNvZGluZyA9IGVuY29kaW5nXG4gICAgdGhpcy5maWVsZHMgPSBmaWVsZHNcbiAgICB0aGlzLnRpdGxlID0gdGl0bGVcbiAgICB0aGlzLmRlc2NyaXB0aW9uID0gZGVzY3JpcHRpb25cbiAgfVxufVxuXG5jbGFzcyBGaWVsZCB7XG4gIGNvbnN0cnVjdG9yIChuYW1lLCByZXF1aXJlZCA9IGZhbHNlLCBsb2NhdGlvbiA9ICcnLCBkZXNjcmlwdGlvbiA9ICcnKSB7XG4gICAgaWYgKG5hbWUgPT09IHVuZGVmaW5lZCkge1xuICAgICAgdGhyb3cgbmV3IEVycm9yKCduYW1lIGFyZ3VtZW50IGlzIHJlcXVpcmVkJylcbiAgICB9XG5cbiAgICB0aGlzLm5hbWUgPSBuYW1lXG4gICAgdGhpcy5yZXF1aXJlZCA9IHJlcXVpcmVkXG4gICAgdGhpcy5sb2NhdGlvbiA9IGxvY2F0aW9uXG4gICAgdGhpcy5kZXNjcmlwdGlvbiA9IGRlc2NyaXB0aW9uXG4gIH1cbn1cblxubW9kdWxlLmV4cG9ydHMgPSB7XG4gIERvY3VtZW50OiBEb2N1bWVudCxcbiAgTGluazogTGluayxcbiAgRmllbGQ6IEZpZWxkXG59XG4iLCJjbGFzcyBQYXJhbWV0ZXJFcnJvciBleHRlbmRzIEVycm9yIHtcbiAgY29uc3RydWN0b3IgKG1lc3NhZ2UpIHtcbiAgICBzdXBlcihtZXNzYWdlKVxuICAgIHRoaXMubWVzc2FnZSA9IG1lc3NhZ2VcbiAgICB0aGlzLm5hbWUgPSAnUGFyYW1ldGVyRXJyb3InXG4gIH1cbn1cblxuY2xhc3MgTGlua0xvb2t1cEVycm9yIGV4dGVuZHMgRXJyb3Ige1xuICBjb25zdHJ1Y3RvciAobWVzc2FnZSkge1xuICAgIHN1cGVyKG1lc3NhZ2UpXG4gICAgdGhpcy5tZXNzYWdlID0gbWVzc2FnZVxuICAgIHRoaXMubmFtZSA9ICdMaW5rTG9va3VwRXJyb3InXG4gIH1cbn1cblxuY2xhc3MgRXJyb3JNZXNzYWdlIGV4dGVuZHMgRXJyb3Ige1xuICBjb25zdHJ1Y3RvciAobWVzc2FnZSwgY29udGVudCkge1xuICAgIHN1cGVyKG1lc3NhZ2UpXG4gICAgdGhpcy5tZXNzYWdlID0gbWVzc2FnZVxuICAgIHRoaXMuY29udGVudCA9IGNvbnRlbnRcbiAgICB0aGlzLm5hbWUgPSAnRXJyb3JNZXNzYWdlJ1xuICB9XG59XG5cbm1vZHVsZS5leHBvcnRzID0ge1xuICBQYXJhbWV0ZXJFcnJvcjogUGFyYW1ldGVyRXJyb3IsXG4gIExpbmtMb29rdXBFcnJvcjogTGlua0xvb2t1cEVycm9yLFxuICBFcnJvck1lc3NhZ2U6IEVycm9yTWVzc2FnZVxufVxuIiwiY29uc3QgYXV0aCA9IHJlcXVpcmUoJy4vYXV0aCcpXG5jb25zdCBjbGllbnQgPSByZXF1aXJlKCcuL2NsaWVudCcpXG5jb25zdCBjb2RlY3MgPSByZXF1aXJlKCcuL2NvZGVjcycpXG5jb25zdCBkb2N1bWVudCA9IHJlcXVpcmUoJy4vZG9jdW1lbnQnKVxuY29uc3QgZXJyb3JzID0gcmVxdWlyZSgnLi9lcnJvcnMnKVxuY29uc3QgdHJhbnNwb3J0cyA9IHJlcXVpcmUoJy4vdHJhbnNwb3J0cycpXG5jb25zdCB1dGlscyA9IHJlcXVpcmUoJy4vdXRpbHMnKVxuXG5jb25zdCBjb3JlYXBpID0ge1xuICBDbGllbnQ6IGNsaWVudC5DbGllbnQsXG4gIERvY3VtZW50OiBkb2N1bWVudC5Eb2N1bWVudCxcbiAgTGluazogZG9jdW1lbnQuTGluayxcbiAgYXV0aDogYXV0aCxcbiAgY29kZWNzOiBjb2RlY3MsXG4gIGVycm9yczogZXJyb3JzLFxuICB0cmFuc3BvcnRzOiB0cmFuc3BvcnRzLFxuICB1dGlsczogdXRpbHNcbn1cblxubW9kdWxlLmV4cG9ydHMgPSBjb3JlYXBpXG4iLCJjb25zdCBmZXRjaCA9IHJlcXVpcmUoJ2lzb21vcnBoaWMtZmV0Y2gnKVxuY29uc3QgZXJyb3JzID0gcmVxdWlyZSgnLi4vZXJyb3JzJylcbmNvbnN0IHV0aWxzID0gcmVxdWlyZSgnLi4vdXRpbHMnKVxuY29uc3QgVVJMID0gcmVxdWlyZSgndXJsLXBhcnNlJylcbmNvbnN0IHVybFRlbXBsYXRlID0gcmVxdWlyZSgndXJsLXRlbXBsYXRlJylcblxuY29uc3QgcGFyc2VSZXNwb25zZSA9IChyZXNwb25zZSwgZGVjb2RlcnMsIHJlc3BvbnNlQ2FsbGJhY2spID0+IHtcbiAgcmV0dXJuIHJlc3BvbnNlLnRleHQoKS50aGVuKHRleHQgPT4ge1xuICAgIGlmIChyZXNwb25zZUNhbGxiYWNrKSB7XG4gICAgICByZXNwb25zZUNhbGxiYWNrKHJlc3BvbnNlLCB0ZXh0KVxuICAgIH1cbiAgICBjb25zdCBjb250ZW50VHlwZSA9IHJlc3BvbnNlLmhlYWRlcnMuZ2V0KCdDb250ZW50LVR5cGUnKVxuICAgIGNvbnN0IGRlY29kZXIgPSB1dGlscy5uZWdvdGlhdGVEZWNvZGVyKGRlY29kZXJzLCBjb250ZW50VHlwZSlcbiAgICBjb25zdCBvcHRpb25zID0ge3VybDogcmVzcG9uc2UudXJsfVxuICAgIHJldHVybiBkZWNvZGVyLmRlY29kZSh0ZXh0LCBvcHRpb25zKVxuICB9KVxufVxuXG5jbGFzcyBIVFRQVHJhbnNwb3J0IHtcbiAgY29uc3RydWN0b3IgKG9wdGlvbnMgPSB7fSkge1xuICAgIHRoaXMuc2NoZW1lcyA9IFsnaHR0cCcsICdodHRwcyddXG4gICAgdGhpcy5hdXRoID0gb3B0aW9ucy5hdXRoIHx8IG51bGxcbiAgICB0aGlzLmhlYWRlcnMgPSBvcHRpb25zLmhlYWRlcnMgfHwge31cbiAgICB0aGlzLmZldGNoID0gb3B0aW9ucy5mZXRjaCB8fCBmZXRjaFxuICAgIHRoaXMuRm9ybURhdGEgPSBvcHRpb25zLkZvcm1EYXRhIHx8IHdpbmRvdy5Gb3JtRGF0YVxuICAgIHRoaXMucmVxdWVzdENhbGxiYWNrID0gb3B0aW9ucy5yZXF1ZXN0Q2FsbGJhY2tcbiAgICB0aGlzLnJlc3BvbnNlQ2FsbGJhY2sgPSBvcHRpb25zLnJlc3BvbnNlQ2FsbGJhY2tcbiAgfVxuXG4gIGJ1aWxkUmVxdWVzdCAobGluaywgZGVjb2RlcnMsIHBhcmFtcyA9IHt9KSB7XG4gICAgY29uc3QgZmllbGRzID0gbGluay5maWVsZHNcbiAgICBjb25zdCBtZXRob2QgPSBsaW5rLm1ldGhvZC50b1VwcGVyQ2FzZSgpXG4gICAgbGV0IHF1ZXJ5UGFyYW1zID0ge31cbiAgICBsZXQgcGF0aFBhcmFtcyA9IHt9XG4gICAgbGV0IGZvcm1QYXJhbXMgPSB7fVxuICAgIGxldCBmaWVsZE5hbWVzID0gW11cbiAgICBsZXQgaGFzQm9keSA9IGZhbHNlXG5cbiAgICBmb3IgKGxldCBpZHggPSAwLCBsZW4gPSBmaWVsZHMubGVuZ3RoOyBpZHggPCBsZW47IGlkeCsrKSB7XG4gICAgICBjb25zdCBmaWVsZCA9IGZpZWxkc1tpZHhdXG5cbiAgICAgIC8vIEVuc3VyZSBhbnkgcmVxdWlyZWQgZmllbGRzIGFyZSBpbmNsdWRlZFxuICAgICAgaWYgKCFwYXJhbXMuaGFzT3duUHJvcGVydHkoZmllbGQubmFtZSkpIHtcbiAgICAgICAgaWYgKGZpZWxkLnJlcXVpcmVkKSB7XG4gICAgICAgICAgdGhyb3cgbmV3IGVycm9ycy5QYXJhbWV0ZXJFcnJvcihgTWlzc2luZyByZXF1aXJlZCBmaWVsZDogXCIke2ZpZWxkLm5hbWV9XCJgKVxuICAgICAgICB9IGVsc2Uge1xuICAgICAgICAgIGNvbnRpbnVlXG4gICAgICAgIH1cbiAgICAgIH1cblxuICAgICAgZmllbGROYW1lcy5wdXNoKGZpZWxkLm5hbWUpXG4gICAgICBpZiAoZmllbGQubG9jYXRpb24gPT09ICdxdWVyeScpIHtcbiAgICAgICAgcXVlcnlQYXJhbXNbZmllbGQubmFtZV0gPSBwYXJhbXNbZmllbGQubmFtZV1cbiAgICAgIH0gZWxzZSBpZiAoZmllbGQubG9jYXRpb24gPT09ICdwYXRoJykge1xuICAgICAgICBwYXRoUGFyYW1zW2ZpZWxkLm5hbWVdID0gcGFyYW1zW2ZpZWxkLm5hbWVdXG4gICAgICB9IGVsc2UgaWYgKGZpZWxkLmxvY2F0aW9uID09PSAnZm9ybScpIHtcbiAgICAgICAgZm9ybVBhcmFtc1tmaWVsZC5uYW1lXSA9IHBhcmFtc1tmaWVsZC5uYW1lXVxuICAgICAgICBoYXNCb2R5ID0gdHJ1ZVxuICAgICAgfSBlbHNlIGlmIChmaWVsZC5sb2NhdGlvbiA9PT0gJ2JvZHknKSB7XG4gICAgICAgIGZvcm1QYXJhbXMgPSBwYXJhbXNbZmllbGQubmFtZV1cbiAgICAgICAgaGFzQm9keSA9IHRydWVcbiAgICAgIH1cbiAgICB9XG5cbiAgICAvLyBDaGVjayBmb3IgYW55IHBhcmFtZXRlcnMgdGhhdCBkaWQgbm90IGhhdmUgYSBtYXRjaGluZyBmaWVsZFxuICAgIGZvciAodmFyIHByb3BlcnR5IGluIHBhcmFtcykge1xuICAgICAgaWYgKHBhcmFtcy5oYXNPd25Qcm9wZXJ0eShwcm9wZXJ0eSkgJiYgIWZpZWxkTmFtZXMuaW5jbHVkZXMocHJvcGVydHkpKSB7XG4gICAgICAgIHRocm93IG5ldyBlcnJvcnMuUGFyYW1ldGVyRXJyb3IoYFVua25vd24gcGFyYW1ldGVyOiBcIiR7cHJvcGVydHl9XCJgKVxuICAgICAgfVxuICAgIH1cblxuICAgIGxldCByZXF1ZXN0T3B0aW9ucyA9IHttZXRob2Q6IG1ldGhvZCwgaGVhZGVyczoge319XG5cbiAgICBPYmplY3QuYXNzaWduKHJlcXVlc3RPcHRpb25zLmhlYWRlcnMsIHRoaXMuaGVhZGVycylcblxuICAgIGlmIChoYXNCb2R5KSB7XG4gICAgICBpZiAobGluay5lbmNvZGluZyA9PT0gJ2FwcGxpY2F0aW9uL2pzb24nKSB7XG4gICAgICAgIHJlcXVlc3RPcHRpb25zLmJvZHkgPSBKU09OLnN0cmluZ2lmeShmb3JtUGFyYW1zKVxuICAgICAgICByZXF1ZXN0T3B0aW9ucy5oZWFkZXJzWydDb250ZW50LVR5cGUnXSA9ICdhcHBsaWNhdGlvbi9qc29uJ1xuICAgICAgfSBlbHNlIGlmIChsaW5rLmVuY29kaW5nID09PSAnbXVsdGlwYXJ0L2Zvcm0tZGF0YScpIHtcbiAgICAgICAgbGV0IGZvcm0gPSBuZXcgdGhpcy5Gb3JtRGF0YSgpXG5cbiAgICAgICAgZm9yIChsZXQgcGFyYW1LZXkgaW4gZm9ybVBhcmFtcykge1xuICAgICAgICAgIGZvcm0uYXBwZW5kKHBhcmFtS2V5LCBmb3JtUGFyYW1zW3BhcmFtS2V5XSlcbiAgICAgICAgfVxuICAgICAgICByZXF1ZXN0T3B0aW9ucy5ib2R5ID0gZm9ybVxuICAgICAgfSBlbHNlIGlmIChsaW5rLmVuY29kaW5nID09PSAnYXBwbGljYXRpb24veC13d3ctZm9ybS11cmxlbmNvZGVkJykge1xuICAgICAgICBsZXQgZm9ybUJvZHkgPSBbXVxuICAgICAgICBmb3IgKGxldCBwYXJhbUtleSBpbiBmb3JtUGFyYW1zKSB7XG4gICAgICAgICAgY29uc3QgZW5jb2RlZEtleSA9IGVuY29kZVVSSUNvbXBvbmVudChwYXJhbUtleSlcbiAgICAgICAgICBjb25zdCBlbmNvZGVkVmFsdWUgPSBlbmNvZGVVUklDb21wb25lbnQoZm9ybVBhcmFtc1twYXJhbUtleV0pXG4gICAgICAgICAgZm9ybUJvZHkucHVzaChlbmNvZGVkS2V5ICsgJz0nICsgZW5jb2RlZFZhbHVlKVxuICAgICAgICB9XG4gICAgICAgIGZvcm1Cb2R5ID0gZm9ybUJvZHkuam9pbignJicpXG5cbiAgICAgICAgcmVxdWVzdE9wdGlvbnMuYm9keSA9IGZvcm1Cb2R5XG4gICAgICAgIHJlcXVlc3RPcHRpb25zLmhlYWRlcnNbJ0NvbnRlbnQtVHlwZSddID0gJ2FwcGxpY2F0aW9uL3gtd3d3LWZvcm0tdXJsZW5jb2RlZCdcbiAgICAgIH1cbiAgICB9XG5cbiAgICBpZiAodGhpcy5hdXRoKSB7XG4gICAgICByZXF1ZXN0T3B0aW9ucyA9IHRoaXMuYXV0aC5hdXRoZW50aWNhdGUocmVxdWVzdE9wdGlvbnMpXG4gICAgfVxuXG4gICAgbGV0IHBhcnNlZFVybCA9IHVybFRlbXBsYXRlLnBhcnNlKGxpbmsudXJsKVxuICAgIHBhcnNlZFVybCA9IHBhcnNlZFVybC5leHBhbmQocGF0aFBhcmFtcylcbiAgICBwYXJzZWRVcmwgPSBuZXcgVVJMKHBhcnNlZFVybClcbiAgICBwYXJzZWRVcmwuc2V0KCdxdWVyeScsIHF1ZXJ5UGFyYW1zKVxuXG4gICAgcmV0dXJuIHtcbiAgICAgIHVybDogcGFyc2VkVXJsLnRvU3RyaW5nKCksXG4gICAgICBvcHRpb25zOiByZXF1ZXN0T3B0aW9uc1xuICAgIH1cbiAgfVxuXG4gIGFjdGlvbiAobGluaywgZGVjb2RlcnMsIHBhcmFtcyA9IHt9KSB7XG4gICAgY29uc3QgcmVzcG9uc2VDYWxsYmFjayA9IHRoaXMucmVzcG9uc2VDYWxsYmFja1xuICAgIGNvbnN0IHJlcXVlc3QgPSB0aGlzLmJ1aWxkUmVxdWVzdChsaW5rLCBkZWNvZGVycywgcGFyYW1zKVxuXG4gICAgaWYgKHRoaXMucmVxdWVzdENhbGxiYWNrKSB7XG4gICAgICB0aGlzLnJlcXVlc3RDYWxsYmFjayhyZXF1ZXN0KVxuICAgIH1cblxuICAgIHJldHVybiB0aGlzLmZldGNoKHJlcXVlc3QudXJsLCByZXF1ZXN0Lm9wdGlvbnMpXG4gICAgICAudGhlbihmdW5jdGlvbiAocmVzcG9uc2UpIHtcbiAgICAgICAgaWYgKHJlc3BvbnNlLnN0YXR1cyA9PT0gMjA0KSB7XG4gICAgICAgICAgcmV0dXJuXG4gICAgICAgIH1cbiAgICAgICAgcmV0dXJuIHBhcnNlUmVzcG9uc2UocmVzcG9uc2UsIGRlY29kZXJzLCByZXNwb25zZUNhbGxiYWNrKVxuICAgICAgICAgIC50aGVuKGZ1bmN0aW9uIChkYXRhKSB7XG4gICAgICAgICAgICBpZiAocmVzcG9uc2Uub2spIHtcbiAgICAgICAgICAgICAgcmV0dXJuIGRhdGFcbiAgICAgICAgICAgIH0gZWxzZSB7XG4gICAgICAgICAgICAgIGNvbnN0IHRpdGxlID0gcmVzcG9uc2Uuc3RhdHVzICsgJyAnICsgcmVzcG9uc2Uuc3RhdHVzVGV4dFxuICAgICAgICAgICAgICBjb25zdCBlcnJvciA9IG5ldyBlcnJvcnMuRXJyb3JNZXNzYWdlKHRpdGxlLCBkYXRhKVxuICAgICAgICAgICAgICByZXR1cm4gUHJvbWlzZS5yZWplY3QoZXJyb3IpXG4gICAgICAgICAgICB9XG4gICAgICAgICAgfSlcbiAgICAgIH0pXG4gIH1cbn1cblxubW9kdWxlLmV4cG9ydHMgPSB7XG4gIEhUVFBUcmFuc3BvcnQ6IEhUVFBUcmFuc3BvcnRcbn1cbiIsImNvbnN0IGh0dHAgPSByZXF1aXJlKCcuL2h0dHAnKVxuXG5tb2R1bGUuZXhwb3J0cyA9IHtcbiAgSFRUUFRyYW5zcG9ydDogaHR0cC5IVFRQVHJhbnNwb3J0XG59XG4iLCJjb25zdCBVUkwgPSByZXF1aXJlKCd1cmwtcGFyc2UnKVxuXG5jb25zdCBkZXRlcm1pbmVUcmFuc3BvcnQgPSBmdW5jdGlvbiAodHJhbnNwb3J0cywgdXJsKSB7XG4gIGNvbnN0IHBhcnNlZFVybCA9IG5ldyBVUkwodXJsKVxuICBjb25zdCBzY2hlbWUgPSBwYXJzZWRVcmwucHJvdG9jb2wucmVwbGFjZSgnOicsICcnKVxuXG4gIGZvciAobGV0IHRyYW5zcG9ydCBvZiB0cmFuc3BvcnRzKSB7XG4gICAgaWYgKHRyYW5zcG9ydC5zY2hlbWVzLmluY2x1ZGVzKHNjaGVtZSkpIHtcbiAgICAgIHJldHVybiB0cmFuc3BvcnRcbiAgICB9XG4gIH1cblxuICB0aHJvdyBFcnJvcihgVW5zdXBwb3J0ZWQgc2NoZW1lIGluIFVSTDogJHt1cmx9YClcbn1cblxuY29uc3QgbmVnb3RpYXRlRGVjb2RlciA9IGZ1bmN0aW9uIChkZWNvZGVycywgY29udGVudFR5cGUpIHtcbiAgaWYgKGNvbnRlbnRUeXBlID09PSB1bmRlZmluZWQgfHwgY29udGVudFR5cGUgPT09IG51bGwpIHtcbiAgICByZXR1cm4gZGVjb2RlcnNbMF1cbiAgfVxuXG4gIGNvbnN0IGZ1bGxUeXBlID0gY29udGVudFR5cGUudG9Mb3dlckNhc2UoKS5zcGxpdCgnOycpWzBdLnRyaW0oKVxuICBjb25zdCBtYWluVHlwZSA9IGZ1bGxUeXBlLnNwbGl0KCcvJylbMF0gKyAnLyonXG4gIGNvbnN0IHdpbGRjYXJkVHlwZSA9ICcqLyonXG4gIGNvbnN0IGFjY2VwdGFibGVUeXBlcyA9IFtmdWxsVHlwZSwgbWFpblR5cGUsIHdpbGRjYXJkVHlwZV1cblxuICBmb3IgKGxldCBkZWNvZGVyIG9mIGRlY29kZXJzKSB7XG4gICAgaWYgKGFjY2VwdGFibGVUeXBlcy5pbmNsdWRlcyhkZWNvZGVyLm1lZGlhVHlwZSkpIHtcbiAgICAgIHJldHVybiBkZWNvZGVyXG4gICAgfVxuICB9XG5cbiAgdGhyb3cgRXJyb3IoYFVuc3VwcG9ydGVkIG1lZGlhIGluIENvbnRlbnQtVHlwZSBoZWFkZXI6ICR7Y29udGVudFR5cGV9YClcbn1cblxuY29uc3QgY3NyZlNhZmVNZXRob2QgPSBmdW5jdGlvbiAobWV0aG9kKSB7XG4gIC8vIHRoZXNlIEhUVFAgbWV0aG9kcyBkbyBub3QgcmVxdWlyZSBDU1JGIHByb3RlY3Rpb25cbiAgcmV0dXJuICgvXihHRVR8SEVBRHxPUFRJT05TfFRSQUNFKSQvLnRlc3QobWV0aG9kKSlcbn1cblxubW9kdWxlLmV4cG9ydHMgPSB7XG4gIGRldGVybWluZVRyYW5zcG9ydDogZGV0ZXJtaW5lVHJhbnNwb3J0LFxuICBuZWdvdGlhdGVEZWNvZGVyOiBuZWdvdGlhdGVEZWNvZGVyLFxuICBjc3JmU2FmZU1ldGhvZDogY3NyZlNhZmVNZXRob2Rcbn1cbiIsIi8vIHRoZSB3aGF0d2ctZmV0Y2ggcG9seWZpbGwgaW5zdGFsbHMgdGhlIGZldGNoKCkgZnVuY3Rpb25cbi8vIG9uIHRoZSBnbG9iYWwgb2JqZWN0ICh3aW5kb3cgb3Igc2VsZilcbi8vXG4vLyBSZXR1cm4gdGhhdCBhcyB0aGUgZXhwb3J0IGZvciB1c2UgaW4gV2VicGFjaywgQnJvd3NlcmlmeSBldGMuXG5yZXF1aXJlKCd3aGF0d2ctZmV0Y2gnKTtcbm1vZHVsZS5leHBvcnRzID0gc2VsZi5mZXRjaC5iaW5kKHNlbGYpO1xuIiwiJ3VzZSBzdHJpY3QnO1xuXG52YXIgaGFzID0gT2JqZWN0LnByb3RvdHlwZS5oYXNPd25Qcm9wZXJ0eTtcblxuLyoqXG4gKiBTaW1wbGUgcXVlcnkgc3RyaW5nIHBhcnNlci5cbiAqXG4gKiBAcGFyYW0ge1N0cmluZ30gcXVlcnkgVGhlIHF1ZXJ5IHN0cmluZyB0aGF0IG5lZWRzIHRvIGJlIHBhcnNlZC5cbiAqIEByZXR1cm5zIHtPYmplY3R9XG4gKiBAYXBpIHB1YmxpY1xuICovXG5mdW5jdGlvbiBxdWVyeXN0cmluZyhxdWVyeSkge1xuICB2YXIgcGFyc2VyID0gLyhbXj0/Jl0rKT0/KFteJl0qKS9nXG4gICAgLCByZXN1bHQgPSB7fVxuICAgICwgcGFydDtcblxuICAvL1xuICAvLyBMaXR0bGUgbmlmdHkgcGFyc2luZyBoYWNrLCBsZXZlcmFnZSB0aGUgZmFjdCB0aGF0IFJlZ0V4cC5leGVjIGluY3JlbWVudHNcbiAgLy8gdGhlIGxhc3RJbmRleCBwcm9wZXJ0eSBzbyB3ZSBjYW4gY29udGludWUgZXhlY3V0aW5nIHRoaXMgbG9vcCB1bnRpbCB3ZSd2ZVxuICAvLyBwYXJzZWQgYWxsIHJlc3VsdHMuXG4gIC8vXG4gIGZvciAoO1xuICAgIHBhcnQgPSBwYXJzZXIuZXhlYyhxdWVyeSk7XG4gICAgcmVzdWx0W2RlY29kZVVSSUNvbXBvbmVudChwYXJ0WzFdKV0gPSBkZWNvZGVVUklDb21wb25lbnQocGFydFsyXSlcbiAgKTtcblxuICByZXR1cm4gcmVzdWx0O1xufVxuXG4vKipcbiAqIFRyYW5zZm9ybSBhIHF1ZXJ5IHN0cmluZyB0byBhbiBvYmplY3QuXG4gKlxuICogQHBhcmFtIHtPYmplY3R9IG9iaiBPYmplY3QgdGhhdCBzaG91bGQgYmUgdHJhbnNmb3JtZWQuXG4gKiBAcGFyYW0ge1N0cmluZ30gcHJlZml4IE9wdGlvbmFsIHByZWZpeC5cbiAqIEByZXR1cm5zIHtTdHJpbmd9XG4gKiBAYXBpIHB1YmxpY1xuICovXG5mdW5jdGlvbiBxdWVyeXN0cmluZ2lmeShvYmosIHByZWZpeCkge1xuICBwcmVmaXggPSBwcmVmaXggfHwgJyc7XG5cbiAgdmFyIHBhaXJzID0gW107XG5cbiAgLy9cbiAgLy8gT3B0aW9uYWxseSBwcmVmaXggd2l0aCBhICc/JyBpZiBuZWVkZWRcbiAgLy9cbiAgaWYgKCdzdHJpbmcnICE9PSB0eXBlb2YgcHJlZml4KSBwcmVmaXggPSAnPyc7XG5cbiAgZm9yICh2YXIga2V5IGluIG9iaikge1xuICAgIGlmIChoYXMuY2FsbChvYmosIGtleSkpIHtcbiAgICAgIHBhaXJzLnB1c2goZW5jb2RlVVJJQ29tcG9uZW50KGtleSkgKyc9JysgZW5jb2RlVVJJQ29tcG9uZW50KG9ialtrZXldKSk7XG4gICAgfVxuICB9XG5cbiAgcmV0dXJuIHBhaXJzLmxlbmd0aCA/IHByZWZpeCArIHBhaXJzLmpvaW4oJyYnKSA6ICcnO1xufVxuXG4vL1xuLy8gRXhwb3NlIHRoZSBtb2R1bGUuXG4vL1xuZXhwb3J0cy5zdHJpbmdpZnkgPSBxdWVyeXN0cmluZ2lmeTtcbmV4cG9ydHMucGFyc2UgPSBxdWVyeXN0cmluZztcbiIsIid1c2Ugc3RyaWN0JztcblxuLyoqXG4gKiBDaGVjayBpZiB3ZSdyZSByZXF1aXJlZCB0byBhZGQgYSBwb3J0IG51bWJlci5cbiAqXG4gKiBAc2VlIGh0dHBzOi8vdXJsLnNwZWMud2hhdHdnLm9yZy8jZGVmYXVsdC1wb3J0XG4gKiBAcGFyYW0ge051bWJlcnxTdHJpbmd9IHBvcnQgUG9ydCBudW1iZXIgd2UgbmVlZCB0byBjaGVja1xuICogQHBhcmFtIHtTdHJpbmd9IHByb3RvY29sIFByb3RvY29sIHdlIG5lZWQgdG8gY2hlY2sgYWdhaW5zdC5cbiAqIEByZXR1cm5zIHtCb29sZWFufSBJcyBpdCBhIGRlZmF1bHQgcG9ydCBmb3IgdGhlIGdpdmVuIHByb3RvY29sXG4gKiBAYXBpIHByaXZhdGVcbiAqL1xubW9kdWxlLmV4cG9ydHMgPSBmdW5jdGlvbiByZXF1aXJlZChwb3J0LCBwcm90b2NvbCkge1xuICBwcm90b2NvbCA9IHByb3RvY29sLnNwbGl0KCc6JylbMF07XG4gIHBvcnQgPSArcG9ydDtcblxuICBpZiAoIXBvcnQpIHJldHVybiBmYWxzZTtcblxuICBzd2l0Y2ggKHByb3RvY29sKSB7XG4gICAgY2FzZSAnaHR0cCc6XG4gICAgY2FzZSAnd3MnOlxuICAgIHJldHVybiBwb3J0ICE9PSA4MDtcblxuICAgIGNhc2UgJ2h0dHBzJzpcbiAgICBjYXNlICd3c3MnOlxuICAgIHJldHVybiBwb3J0ICE9PSA0NDM7XG5cbiAgICBjYXNlICdmdHAnOlxuICAgIHJldHVybiBwb3J0ICE9PSAyMTtcblxuICAgIGNhc2UgJ2dvcGhlcic6XG4gICAgcmV0dXJuIHBvcnQgIT09IDcwO1xuXG4gICAgY2FzZSAnZmlsZSc6XG4gICAgcmV0dXJuIGZhbHNlO1xuICB9XG5cbiAgcmV0dXJuIHBvcnQgIT09IDA7XG59O1xuIiwiJ3VzZSBzdHJpY3QnO1xuXG52YXIgcmVxdWlyZWQgPSByZXF1aXJlKCdyZXF1aXJlcy1wb3J0JylcbiAgLCBsb2xjYXRpb24gPSByZXF1aXJlKCcuL2xvbGNhdGlvbicpXG4gICwgcXMgPSByZXF1aXJlKCdxdWVyeXN0cmluZ2lmeScpXG4gICwgcHJvdG9jb2xyZSA9IC9eKFthLXpdW2EtejAtOS4rLV0qOik/KFxcL1xcLyk/KFtcXFNcXHNdKikvaTtcblxuLyoqXG4gKiBUaGVzZSBhcmUgdGhlIHBhcnNlIHJ1bGVzIGZvciB0aGUgVVJMIHBhcnNlciwgaXQgaW5mb3JtcyB0aGUgcGFyc2VyXG4gKiBhYm91dDpcbiAqXG4gKiAwLiBUaGUgY2hhciBpdCBOZWVkcyB0byBwYXJzZSwgaWYgaXQncyBhIHN0cmluZyBpdCBzaG91bGQgYmUgZG9uZSB1c2luZ1xuICogICAgaW5kZXhPZiwgUmVnRXhwIHVzaW5nIGV4ZWMgYW5kIE5hTiBtZWFucyBzZXQgYXMgY3VycmVudCB2YWx1ZS5cbiAqIDEuIFRoZSBwcm9wZXJ0eSB3ZSBzaG91bGQgc2V0IHdoZW4gcGFyc2luZyB0aGlzIHZhbHVlLlxuICogMi4gSW5kaWNhdGlvbiBpZiBpdCdzIGJhY2t3YXJkcyBvciBmb3J3YXJkIHBhcnNpbmcsIHdoZW4gc2V0IGFzIG51bWJlciBpdCdzXG4gKiAgICB0aGUgdmFsdWUgb2YgZXh0cmEgY2hhcnMgdGhhdCBzaG91bGQgYmUgc3BsaXQgb2ZmLlxuICogMy4gSW5oZXJpdCBmcm9tIGxvY2F0aW9uIGlmIG5vbiBleGlzdGluZyBpbiB0aGUgcGFyc2VyLlxuICogNC4gYHRvTG93ZXJDYXNlYCB0aGUgcmVzdWx0aW5nIHZhbHVlLlxuICovXG52YXIgcnVsZXMgPSBbXG4gIFsnIycsICdoYXNoJ10sICAgICAgICAgICAgICAgICAgICAgICAgLy8gRXh0cmFjdCBmcm9tIHRoZSBiYWNrLlxuICBbJz8nLCAncXVlcnknXSwgICAgICAgICAgICAgICAgICAgICAgIC8vIEV4dHJhY3QgZnJvbSB0aGUgYmFjay5cbiAgWycvJywgJ3BhdGhuYW1lJ10sICAgICAgICAgICAgICAgICAgICAvLyBFeHRyYWN0IGZyb20gdGhlIGJhY2suXG4gIFsnQCcsICdhdXRoJywgMV0sICAgICAgICAgICAgICAgICAgICAgLy8gRXh0cmFjdCBmcm9tIHRoZSBmcm9udC5cbiAgW05hTiwgJ2hvc3QnLCB1bmRlZmluZWQsIDEsIDFdLCAgICAgICAvLyBTZXQgbGVmdCBvdmVyIHZhbHVlLlxuICBbLzooXFxkKykkLywgJ3BvcnQnLCB1bmRlZmluZWQsIDFdLCAgICAvLyBSZWdFeHAgdGhlIGJhY2suXG4gIFtOYU4sICdob3N0bmFtZScsIHVuZGVmaW5lZCwgMSwgMV0gICAgLy8gU2V0IGxlZnQgb3Zlci5cbl07XG5cbi8qKlxuICogQHR5cGVkZWYgUHJvdG9jb2xFeHRyYWN0XG4gKiBAdHlwZSBPYmplY3RcbiAqIEBwcm9wZXJ0eSB7U3RyaW5nfSBwcm90b2NvbCBQcm90b2NvbCBtYXRjaGVkIGluIHRoZSBVUkwsIGluIGxvd2VyY2FzZS5cbiAqIEBwcm9wZXJ0eSB7Qm9vbGVhbn0gc2xhc2hlcyBgdHJ1ZWAgaWYgcHJvdG9jb2wgaXMgZm9sbG93ZWQgYnkgXCIvL1wiLCBlbHNlIGBmYWxzZWAuXG4gKiBAcHJvcGVydHkge1N0cmluZ30gcmVzdCBSZXN0IG9mIHRoZSBVUkwgdGhhdCBpcyBub3QgcGFydCBvZiB0aGUgcHJvdG9jb2wuXG4gKi9cblxuLyoqXG4gKiBFeHRyYWN0IHByb3RvY29sIGluZm9ybWF0aW9uIGZyb20gYSBVUkwgd2l0aC93aXRob3V0IGRvdWJsZSBzbGFzaCAoXCIvL1wiKS5cbiAqXG4gKiBAcGFyYW0ge1N0cmluZ30gYWRkcmVzcyBVUkwgd2Ugd2FudCB0byBleHRyYWN0IGZyb20uXG4gKiBAcmV0dXJuIHtQcm90b2NvbEV4dHJhY3R9IEV4dHJhY3RlZCBpbmZvcm1hdGlvbi5cbiAqIEBhcGkgcHJpdmF0ZVxuICovXG5mdW5jdGlvbiBleHRyYWN0UHJvdG9jb2woYWRkcmVzcykge1xuICB2YXIgbWF0Y2ggPSBwcm90b2NvbHJlLmV4ZWMoYWRkcmVzcyk7XG5cbiAgcmV0dXJuIHtcbiAgICBwcm90b2NvbDogbWF0Y2hbMV0gPyBtYXRjaFsxXS50b0xvd2VyQ2FzZSgpIDogJycsXG4gICAgc2xhc2hlczogISFtYXRjaFsyXSxcbiAgICByZXN0OiBtYXRjaFszXVxuICB9O1xufVxuXG4vKipcbiAqIFJlc29sdmUgYSByZWxhdGl2ZSBVUkwgcGF0aG5hbWUgYWdhaW5zdCBhIGJhc2UgVVJMIHBhdGhuYW1lLlxuICpcbiAqIEBwYXJhbSB7U3RyaW5nfSByZWxhdGl2ZSBQYXRobmFtZSBvZiB0aGUgcmVsYXRpdmUgVVJMLlxuICogQHBhcmFtIHtTdHJpbmd9IGJhc2UgUGF0aG5hbWUgb2YgdGhlIGJhc2UgVVJMLlxuICogQHJldHVybiB7U3RyaW5nfSBSZXNvbHZlZCBwYXRobmFtZS5cbiAqIEBhcGkgcHJpdmF0ZVxuICovXG5mdW5jdGlvbiByZXNvbHZlKHJlbGF0aXZlLCBiYXNlKSB7XG4gIHZhciBwYXRoID0gKGJhc2UgfHwgJy8nKS5zcGxpdCgnLycpLnNsaWNlKDAsIC0xKS5jb25jYXQocmVsYXRpdmUuc3BsaXQoJy8nKSlcbiAgICAsIGkgPSBwYXRoLmxlbmd0aFxuICAgICwgbGFzdCA9IHBhdGhbaSAtIDFdXG4gICAgLCB1bnNoaWZ0ID0gZmFsc2VcbiAgICAsIHVwID0gMDtcblxuICB3aGlsZSAoaS0tKSB7XG4gICAgaWYgKHBhdGhbaV0gPT09ICcuJykge1xuICAgICAgcGF0aC5zcGxpY2UoaSwgMSk7XG4gICAgfSBlbHNlIGlmIChwYXRoW2ldID09PSAnLi4nKSB7XG4gICAgICBwYXRoLnNwbGljZShpLCAxKTtcbiAgICAgIHVwKys7XG4gICAgfSBlbHNlIGlmICh1cCkge1xuICAgICAgaWYgKGkgPT09IDApIHVuc2hpZnQgPSB0cnVlO1xuICAgICAgcGF0aC5zcGxpY2UoaSwgMSk7XG4gICAgICB1cC0tO1xuICAgIH1cbiAgfVxuXG4gIGlmICh1bnNoaWZ0KSBwYXRoLnVuc2hpZnQoJycpO1xuICBpZiAobGFzdCA9PT0gJy4nIHx8IGxhc3QgPT09ICcuLicpIHBhdGgucHVzaCgnJyk7XG5cbiAgcmV0dXJuIHBhdGguam9pbignLycpO1xufVxuXG4vKipcbiAqIFRoZSBhY3R1YWwgVVJMIGluc3RhbmNlLiBJbnN0ZWFkIG9mIHJldHVybmluZyBhbiBvYmplY3Qgd2UndmUgb3B0ZWQtaW4gdG9cbiAqIGNyZWF0ZSBhbiBhY3R1YWwgY29uc3RydWN0b3IgYXMgaXQncyBtdWNoIG1vcmUgbWVtb3J5IGVmZmljaWVudCBhbmRcbiAqIGZhc3RlciBhbmQgaXQgcGxlYXNlcyBteSBPQ0QuXG4gKlxuICogQGNvbnN0cnVjdG9yXG4gKiBAcGFyYW0ge1N0cmluZ30gYWRkcmVzcyBVUkwgd2Ugd2FudCB0byBwYXJzZS5cbiAqIEBwYXJhbSB7T2JqZWN0fFN0cmluZ30gbG9jYXRpb24gTG9jYXRpb24gZGVmYXVsdHMgZm9yIHJlbGF0aXZlIHBhdGhzLlxuICogQHBhcmFtIHtCb29sZWFufEZ1bmN0aW9ufSBwYXJzZXIgUGFyc2VyIGZvciB0aGUgcXVlcnkgc3RyaW5nLlxuICogQGFwaSBwdWJsaWNcbiAqL1xuZnVuY3Rpb24gVVJMKGFkZHJlc3MsIGxvY2F0aW9uLCBwYXJzZXIpIHtcbiAgaWYgKCEodGhpcyBpbnN0YW5jZW9mIFVSTCkpIHtcbiAgICByZXR1cm4gbmV3IFVSTChhZGRyZXNzLCBsb2NhdGlvbiwgcGFyc2VyKTtcbiAgfVxuXG4gIHZhciByZWxhdGl2ZSwgZXh0cmFjdGVkLCBwYXJzZSwgaW5zdHJ1Y3Rpb24sIGluZGV4LCBrZXlcbiAgICAsIGluc3RydWN0aW9ucyA9IHJ1bGVzLnNsaWNlKClcbiAgICAsIHR5cGUgPSB0eXBlb2YgbG9jYXRpb25cbiAgICAsIHVybCA9IHRoaXNcbiAgICAsIGkgPSAwO1xuXG4gIC8vXG4gIC8vIFRoZSBmb2xsb3dpbmcgaWYgc3RhdGVtZW50cyBhbGxvd3MgdGhpcyBtb2R1bGUgdHdvIGhhdmUgY29tcGF0aWJpbGl0eSB3aXRoXG4gIC8vIDIgZGlmZmVyZW50IEFQSTpcbiAgLy9cbiAgLy8gMS4gTm9kZS5qcydzIGB1cmwucGFyc2VgIGFwaSB3aGljaCBhY2NlcHRzIGEgVVJMLCBib29sZWFuIGFzIGFyZ3VtZW50c1xuICAvLyAgICB3aGVyZSB0aGUgYm9vbGVhbiBpbmRpY2F0ZXMgdGhhdCB0aGUgcXVlcnkgc3RyaW5nIHNob3VsZCBhbHNvIGJlIHBhcnNlZC5cbiAgLy9cbiAgLy8gMi4gVGhlIGBVUkxgIGludGVyZmFjZSBvZiB0aGUgYnJvd3NlciB3aGljaCBhY2NlcHRzIGEgVVJMLCBvYmplY3QgYXNcbiAgLy8gICAgYXJndW1lbnRzLiBUaGUgc3VwcGxpZWQgb2JqZWN0IHdpbGwgYmUgdXNlZCBhcyBkZWZhdWx0IHZhbHVlcyAvIGZhbGwtYmFja1xuICAvLyAgICBmb3IgcmVsYXRpdmUgcGF0aHMuXG4gIC8vXG4gIGlmICgnb2JqZWN0JyAhPT0gdHlwZSAmJiAnc3RyaW5nJyAhPT0gdHlwZSkge1xuICAgIHBhcnNlciA9IGxvY2F0aW9uO1xuICAgIGxvY2F0aW9uID0gbnVsbDtcbiAgfVxuXG4gIGlmIChwYXJzZXIgJiYgJ2Z1bmN0aW9uJyAhPT0gdHlwZW9mIHBhcnNlcikgcGFyc2VyID0gcXMucGFyc2U7XG5cbiAgbG9jYXRpb24gPSBsb2xjYXRpb24obG9jYXRpb24pO1xuXG4gIC8vXG4gIC8vIEV4dHJhY3QgcHJvdG9jb2wgaW5mb3JtYXRpb24gYmVmb3JlIHJ1bm5pbmcgdGhlIGluc3RydWN0aW9ucy5cbiAgLy9cbiAgZXh0cmFjdGVkID0gZXh0cmFjdFByb3RvY29sKGFkZHJlc3MgfHwgJycpO1xuICByZWxhdGl2ZSA9ICFleHRyYWN0ZWQucHJvdG9jb2wgJiYgIWV4dHJhY3RlZC5zbGFzaGVzO1xuICB1cmwuc2xhc2hlcyA9IGV4dHJhY3RlZC5zbGFzaGVzIHx8IHJlbGF0aXZlICYmIGxvY2F0aW9uLnNsYXNoZXM7XG4gIHVybC5wcm90b2NvbCA9IGV4dHJhY3RlZC5wcm90b2NvbCB8fCBsb2NhdGlvbi5wcm90b2NvbCB8fCAnJztcbiAgYWRkcmVzcyA9IGV4dHJhY3RlZC5yZXN0O1xuXG4gIC8vXG4gIC8vIFdoZW4gdGhlIGF1dGhvcml0eSBjb21wb25lbnQgaXMgYWJzZW50IHRoZSBVUkwgc3RhcnRzIHdpdGggYSBwYXRoXG4gIC8vIGNvbXBvbmVudC5cbiAgLy9cbiAgaWYgKCFleHRyYWN0ZWQuc2xhc2hlcykgaW5zdHJ1Y3Rpb25zWzJdID0gWy8oLiopLywgJ3BhdGhuYW1lJ107XG5cbiAgZm9yICg7IGkgPCBpbnN0cnVjdGlvbnMubGVuZ3RoOyBpKyspIHtcbiAgICBpbnN0cnVjdGlvbiA9IGluc3RydWN0aW9uc1tpXTtcbiAgICBwYXJzZSA9IGluc3RydWN0aW9uWzBdO1xuICAgIGtleSA9IGluc3RydWN0aW9uWzFdO1xuXG4gICAgaWYgKHBhcnNlICE9PSBwYXJzZSkge1xuICAgICAgdXJsW2tleV0gPSBhZGRyZXNzO1xuICAgIH0gZWxzZSBpZiAoJ3N0cmluZycgPT09IHR5cGVvZiBwYXJzZSkge1xuICAgICAgaWYgKH4oaW5kZXggPSBhZGRyZXNzLmluZGV4T2YocGFyc2UpKSkge1xuICAgICAgICBpZiAoJ251bWJlcicgPT09IHR5cGVvZiBpbnN0cnVjdGlvblsyXSkge1xuICAgICAgICAgIHVybFtrZXldID0gYWRkcmVzcy5zbGljZSgwLCBpbmRleCk7XG4gICAgICAgICAgYWRkcmVzcyA9IGFkZHJlc3Muc2xpY2UoaW5kZXggKyBpbnN0cnVjdGlvblsyXSk7XG4gICAgICAgIH0gZWxzZSB7XG4gICAgICAgICAgdXJsW2tleV0gPSBhZGRyZXNzLnNsaWNlKGluZGV4KTtcbiAgICAgICAgICBhZGRyZXNzID0gYWRkcmVzcy5zbGljZSgwLCBpbmRleCk7XG4gICAgICAgIH1cbiAgICAgIH1cbiAgICB9IGVsc2UgaWYgKGluZGV4ID0gcGFyc2UuZXhlYyhhZGRyZXNzKSkge1xuICAgICAgdXJsW2tleV0gPSBpbmRleFsxXTtcbiAgICAgIGFkZHJlc3MgPSBhZGRyZXNzLnNsaWNlKDAsIGluZGV4LmluZGV4KTtcbiAgICB9XG5cbiAgICB1cmxba2V5XSA9IHVybFtrZXldIHx8IChcbiAgICAgIHJlbGF0aXZlICYmIGluc3RydWN0aW9uWzNdID8gbG9jYXRpb25ba2V5XSB8fCAnJyA6ICcnXG4gICAgKTtcblxuICAgIC8vXG4gICAgLy8gSG9zdG5hbWUsIGhvc3QgYW5kIHByb3RvY29sIHNob3VsZCBiZSBsb3dlcmNhc2VkIHNvIHRoZXkgY2FuIGJlIHVzZWQgdG9cbiAgICAvLyBjcmVhdGUgYSBwcm9wZXIgYG9yaWdpbmAuXG4gICAgLy9cbiAgICBpZiAoaW5zdHJ1Y3Rpb25bNF0pIHVybFtrZXldID0gdXJsW2tleV0udG9Mb3dlckNhc2UoKTtcbiAgfVxuXG4gIC8vXG4gIC8vIEFsc28gcGFyc2UgdGhlIHN1cHBsaWVkIHF1ZXJ5IHN0cmluZyBpbiB0byBhbiBvYmplY3QuIElmIHdlJ3JlIHN1cHBsaWVkXG4gIC8vIHdpdGggYSBjdXN0b20gcGFyc2VyIGFzIGZ1bmN0aW9uIHVzZSB0aGF0IGluc3RlYWQgb2YgdGhlIGRlZmF1bHQgYnVpbGQtaW5cbiAgLy8gcGFyc2VyLlxuICAvL1xuICBpZiAocGFyc2VyKSB1cmwucXVlcnkgPSBwYXJzZXIodXJsLnF1ZXJ5KTtcblxuICAvL1xuICAvLyBJZiB0aGUgVVJMIGlzIHJlbGF0aXZlLCByZXNvbHZlIHRoZSBwYXRobmFtZSBhZ2FpbnN0IHRoZSBiYXNlIFVSTC5cbiAgLy9cbiAgaWYgKFxuICAgICAgcmVsYXRpdmVcbiAgICAmJiBsb2NhdGlvbi5zbGFzaGVzXG4gICAgJiYgdXJsLnBhdGhuYW1lLmNoYXJBdCgwKSAhPT0gJy8nXG4gICAgJiYgKHVybC5wYXRobmFtZSAhPT0gJycgfHwgbG9jYXRpb24ucGF0aG5hbWUgIT09ICcnKVxuICApIHtcbiAgICB1cmwucGF0aG5hbWUgPSByZXNvbHZlKHVybC5wYXRobmFtZSwgbG9jYXRpb24ucGF0aG5hbWUpO1xuICB9XG5cbiAgLy9cbiAgLy8gV2Ugc2hvdWxkIG5vdCBhZGQgcG9ydCBudW1iZXJzIGlmIHRoZXkgYXJlIGFscmVhZHkgdGhlIGRlZmF1bHQgcG9ydCBudW1iZXJcbiAgLy8gZm9yIGEgZ2l2ZW4gcHJvdG9jb2wuIEFzIHRoZSBob3N0IGFsc28gY29udGFpbnMgdGhlIHBvcnQgbnVtYmVyIHdlJ3JlIGdvaW5nXG4gIC8vIG92ZXJyaWRlIGl0IHdpdGggdGhlIGhvc3RuYW1lIHdoaWNoIGNvbnRhaW5zIG5vIHBvcnQgbnVtYmVyLlxuICAvL1xuICBpZiAoIXJlcXVpcmVkKHVybC5wb3J0LCB1cmwucHJvdG9jb2wpKSB7XG4gICAgdXJsLmhvc3QgPSB1cmwuaG9zdG5hbWU7XG4gICAgdXJsLnBvcnQgPSAnJztcbiAgfVxuXG4gIC8vXG4gIC8vIFBhcnNlIGRvd24gdGhlIGBhdXRoYCBmb3IgdGhlIHVzZXJuYW1lIGFuZCBwYXNzd29yZC5cbiAgLy9cbiAgdXJsLnVzZXJuYW1lID0gdXJsLnBhc3N3b3JkID0gJyc7XG4gIGlmICh1cmwuYXV0aCkge1xuICAgIGluc3RydWN0aW9uID0gdXJsLmF1dGguc3BsaXQoJzonKTtcbiAgICB1cmwudXNlcm5hbWUgPSBpbnN0cnVjdGlvblswXSB8fCAnJztcbiAgICB1cmwucGFzc3dvcmQgPSBpbnN0cnVjdGlvblsxXSB8fCAnJztcbiAgfVxuXG4gIHVybC5vcmlnaW4gPSB1cmwucHJvdG9jb2wgJiYgdXJsLmhvc3QgJiYgdXJsLnByb3RvY29sICE9PSAnZmlsZTonXG4gICAgPyB1cmwucHJvdG9jb2wgKycvLycrIHVybC5ob3N0XG4gICAgOiAnbnVsbCc7XG5cbiAgLy9cbiAgLy8gVGhlIGhyZWYgaXMganVzdCB0aGUgY29tcGlsZWQgcmVzdWx0LlxuICAvL1xuICB1cmwuaHJlZiA9IHVybC50b1N0cmluZygpO1xufVxuXG4vKipcbiAqIFRoaXMgaXMgY29udmVuaWVuY2UgbWV0aG9kIGZvciBjaGFuZ2luZyBwcm9wZXJ0aWVzIGluIHRoZSBVUkwgaW5zdGFuY2UgdG9cbiAqIGluc3VyZSB0aGF0IHRoZXkgYWxsIHByb3BhZ2F0ZSBjb3JyZWN0bHkuXG4gKlxuICogQHBhcmFtIHtTdHJpbmd9IHBhcnQgICAgICAgICAgUHJvcGVydHkgd2UgbmVlZCB0byBhZGp1c3QuXG4gKiBAcGFyYW0ge01peGVkfSB2YWx1ZSAgICAgICAgICBUaGUgbmV3bHkgYXNzaWduZWQgdmFsdWUuXG4gKiBAcGFyYW0ge0Jvb2xlYW58RnVuY3Rpb259IGZuICBXaGVuIHNldHRpbmcgdGhlIHF1ZXJ5LCBpdCB3aWxsIGJlIHRoZSBmdW5jdGlvblxuICogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgdXNlZCB0byBwYXJzZSB0aGUgcXVlcnkuXG4gKiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICBXaGVuIHNldHRpbmcgdGhlIHByb3RvY29sLCBkb3VibGUgc2xhc2ggd2lsbCBiZVxuICogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgcmVtb3ZlZCBmcm9tIHRoZSBmaW5hbCB1cmwgaWYgaXQgaXMgdHJ1ZS5cbiAqIEByZXR1cm5zIHtVUkx9XG4gKiBAYXBpIHB1YmxpY1xuICovXG5VUkwucHJvdG90eXBlLnNldCA9IGZ1bmN0aW9uIHNldChwYXJ0LCB2YWx1ZSwgZm4pIHtcbiAgdmFyIHVybCA9IHRoaXM7XG5cbiAgc3dpdGNoIChwYXJ0KSB7XG4gICAgY2FzZSAncXVlcnknOlxuICAgICAgaWYgKCdzdHJpbmcnID09PSB0eXBlb2YgdmFsdWUgJiYgdmFsdWUubGVuZ3RoKSB7XG4gICAgICAgIHZhbHVlID0gKGZuIHx8IHFzLnBhcnNlKSh2YWx1ZSk7XG4gICAgICB9XG5cbiAgICAgIHVybFtwYXJ0XSA9IHZhbHVlO1xuICAgICAgYnJlYWs7XG5cbiAgICBjYXNlICdwb3J0JzpcbiAgICAgIHVybFtwYXJ0XSA9IHZhbHVlO1xuXG4gICAgICBpZiAoIXJlcXVpcmVkKHZhbHVlLCB1cmwucHJvdG9jb2wpKSB7XG4gICAgICAgIHVybC5ob3N0ID0gdXJsLmhvc3RuYW1lO1xuICAgICAgICB1cmxbcGFydF0gPSAnJztcbiAgICAgIH0gZWxzZSBpZiAodmFsdWUpIHtcbiAgICAgICAgdXJsLmhvc3QgPSB1cmwuaG9zdG5hbWUgKyc6JysgdmFsdWU7XG4gICAgICB9XG5cbiAgICAgIGJyZWFrO1xuXG4gICAgY2FzZSAnaG9zdG5hbWUnOlxuICAgICAgdXJsW3BhcnRdID0gdmFsdWU7XG5cbiAgICAgIGlmICh1cmwucG9ydCkgdmFsdWUgKz0gJzonKyB1cmwucG9ydDtcbiAgICAgIHVybC5ob3N0ID0gdmFsdWU7XG4gICAgICBicmVhaztcblxuICAgIGNhc2UgJ2hvc3QnOlxuICAgICAgdXJsW3BhcnRdID0gdmFsdWU7XG5cbiAgICAgIGlmICgvOlxcZCskLy50ZXN0KHZhbHVlKSkge1xuICAgICAgICB2YWx1ZSA9IHZhbHVlLnNwbGl0KCc6Jyk7XG4gICAgICAgIHVybC5wb3J0ID0gdmFsdWUucG9wKCk7XG4gICAgICAgIHVybC5ob3N0bmFtZSA9IHZhbHVlLmpvaW4oJzonKTtcbiAgICAgIH0gZWxzZSB7XG4gICAgICAgIHVybC5ob3N0bmFtZSA9IHZhbHVlO1xuICAgICAgICB1cmwucG9ydCA9ICcnO1xuICAgICAgfVxuXG4gICAgICBicmVhaztcblxuICAgIGNhc2UgJ3Byb3RvY29sJzpcbiAgICAgIHVybC5wcm90b2NvbCA9IHZhbHVlLnRvTG93ZXJDYXNlKCk7XG4gICAgICB1cmwuc2xhc2hlcyA9ICFmbjtcbiAgICAgIGJyZWFrO1xuXG4gICAgY2FzZSAncGF0aG5hbWUnOlxuICAgICAgdXJsLnBhdGhuYW1lID0gdmFsdWUubGVuZ3RoICYmIHZhbHVlLmNoYXJBdCgwKSAhPT0gJy8nID8gJy8nICsgdmFsdWUgOiB2YWx1ZTtcblxuICAgICAgYnJlYWs7XG5cbiAgICBkZWZhdWx0OlxuICAgICAgdXJsW3BhcnRdID0gdmFsdWU7XG4gIH1cblxuICBmb3IgKHZhciBpID0gMDsgaSA8IHJ1bGVzLmxlbmd0aDsgaSsrKSB7XG4gICAgdmFyIGlucyA9IHJ1bGVzW2ldO1xuXG4gICAgaWYgKGluc1s0XSkgdXJsW2luc1sxXV0gPSB1cmxbaW5zWzFdXS50b0xvd2VyQ2FzZSgpO1xuICB9XG5cbiAgdXJsLm9yaWdpbiA9IHVybC5wcm90b2NvbCAmJiB1cmwuaG9zdCAmJiB1cmwucHJvdG9jb2wgIT09ICdmaWxlOidcbiAgICA/IHVybC5wcm90b2NvbCArJy8vJysgdXJsLmhvc3RcbiAgICA6ICdudWxsJztcblxuICB1cmwuaHJlZiA9IHVybC50b1N0cmluZygpO1xuXG4gIHJldHVybiB1cmw7XG59O1xuXG4vKipcbiAqIFRyYW5zZm9ybSB0aGUgcHJvcGVydGllcyBiYWNrIGluIHRvIGEgdmFsaWQgYW5kIGZ1bGwgVVJMIHN0cmluZy5cbiAqXG4gKiBAcGFyYW0ge0Z1bmN0aW9ufSBzdHJpbmdpZnkgT3B0aW9uYWwgcXVlcnkgc3RyaW5naWZ5IGZ1bmN0aW9uLlxuICogQHJldHVybnMge1N0cmluZ31cbiAqIEBhcGkgcHVibGljXG4gKi9cblVSTC5wcm90b3R5cGUudG9TdHJpbmcgPSBmdW5jdGlvbiB0b1N0cmluZyhzdHJpbmdpZnkpIHtcbiAgaWYgKCFzdHJpbmdpZnkgfHwgJ2Z1bmN0aW9uJyAhPT0gdHlwZW9mIHN0cmluZ2lmeSkgc3RyaW5naWZ5ID0gcXMuc3RyaW5naWZ5O1xuXG4gIHZhciBxdWVyeVxuICAgICwgdXJsID0gdGhpc1xuICAgICwgcHJvdG9jb2wgPSB1cmwucHJvdG9jb2w7XG5cbiAgaWYgKHByb3RvY29sICYmIHByb3RvY29sLmNoYXJBdChwcm90b2NvbC5sZW5ndGggLSAxKSAhPT0gJzonKSBwcm90b2NvbCArPSAnOic7XG5cbiAgdmFyIHJlc3VsdCA9IHByb3RvY29sICsgKHVybC5zbGFzaGVzID8gJy8vJyA6ICcnKTtcblxuICBpZiAodXJsLnVzZXJuYW1lKSB7XG4gICAgcmVzdWx0ICs9IHVybC51c2VybmFtZTtcbiAgICBpZiAodXJsLnBhc3N3b3JkKSByZXN1bHQgKz0gJzonKyB1cmwucGFzc3dvcmQ7XG4gICAgcmVzdWx0ICs9ICdAJztcbiAgfVxuXG4gIHJlc3VsdCArPSB1cmwuaG9zdCArIHVybC5wYXRobmFtZTtcblxuICBxdWVyeSA9ICdvYmplY3QnID09PSB0eXBlb2YgdXJsLnF1ZXJ5ID8gc3RyaW5naWZ5KHVybC5xdWVyeSkgOiB1cmwucXVlcnk7XG4gIGlmIChxdWVyeSkgcmVzdWx0ICs9ICc/JyAhPT0gcXVlcnkuY2hhckF0KDApID8gJz8nKyBxdWVyeSA6IHF1ZXJ5O1xuXG4gIGlmICh1cmwuaGFzaCkgcmVzdWx0ICs9IHVybC5oYXNoO1xuXG4gIHJldHVybiByZXN1bHQ7XG59O1xuXG4vL1xuLy8gRXhwb3NlIHRoZSBVUkwgcGFyc2VyIGFuZCBzb21lIGFkZGl0aW9uYWwgcHJvcGVydGllcyB0aGF0IG1pZ2h0IGJlIHVzZWZ1bCBmb3Jcbi8vIG90aGVycyBvciB0ZXN0aW5nLlxuLy9cblVSTC5leHRyYWN0UHJvdG9jb2wgPSBleHRyYWN0UHJvdG9jb2w7XG5VUkwubG9jYXRpb24gPSBsb2xjYXRpb247XG5VUkwucXMgPSBxcztcblxubW9kdWxlLmV4cG9ydHMgPSBVUkw7XG4iLCIndXNlIHN0cmljdCc7XG5cbnZhciBzbGFzaGVzID0gL15bQS1aYS16XVtBLVphLXowLTkrLS5dKjpcXC9cXC8vO1xuXG4vKipcbiAqIFRoZXNlIHByb3BlcnRpZXMgc2hvdWxkIG5vdCBiZSBjb3BpZWQgb3IgaW5oZXJpdGVkIGZyb20uIFRoaXMgaXMgb25seSBuZWVkZWRcbiAqIGZvciBhbGwgbm9uIGJsb2IgVVJMJ3MgYXMgYSBibG9iIFVSTCBkb2VzIG5vdCBpbmNsdWRlIGEgaGFzaCwgb25seSB0aGVcbiAqIG9yaWdpbi5cbiAqXG4gKiBAdHlwZSB7T2JqZWN0fVxuICogQHByaXZhdGVcbiAqL1xudmFyIGlnbm9yZSA9IHsgaGFzaDogMSwgcXVlcnk6IDEgfVxuICAsIFVSTDtcblxuLyoqXG4gKiBUaGUgbG9jYXRpb24gb2JqZWN0IGRpZmZlcnMgd2hlbiB5b3VyIGNvZGUgaXMgbG9hZGVkIHRocm91Z2ggYSBub3JtYWwgcGFnZSxcbiAqIFdvcmtlciBvciB0aHJvdWdoIGEgd29ya2VyIHVzaW5nIGEgYmxvYi4gQW5kIHdpdGggdGhlIGJsb2JibGUgYmVnaW5zIHRoZVxuICogdHJvdWJsZSBhcyB0aGUgbG9jYXRpb24gb2JqZWN0IHdpbGwgY29udGFpbiB0aGUgVVJMIG9mIHRoZSBibG9iLCBub3QgdGhlXG4gKiBsb2NhdGlvbiBvZiB0aGUgcGFnZSB3aGVyZSBvdXIgY29kZSBpcyBsb2FkZWQgaW4uIFRoZSBhY3R1YWwgb3JpZ2luIGlzXG4gKiBlbmNvZGVkIGluIHRoZSBgcGF0aG5hbWVgIHNvIHdlIGNhbiB0aGFua2Z1bGx5IGdlbmVyYXRlIGEgZ29vZCBcImRlZmF1bHRcIlxuICogbG9jYXRpb24gZnJvbSBpdCBzbyB3ZSBjYW4gZ2VuZXJhdGUgcHJvcGVyIHJlbGF0aXZlIFVSTCdzIGFnYWluLlxuICpcbiAqIEBwYXJhbSB7T2JqZWN0fFN0cmluZ30gbG9jIE9wdGlvbmFsIGRlZmF1bHQgbG9jYXRpb24gb2JqZWN0LlxuICogQHJldHVybnMge09iamVjdH0gbG9sY2F0aW9uIG9iamVjdC5cbiAqIEBhcGkgcHVibGljXG4gKi9cbm1vZHVsZS5leHBvcnRzID0gZnVuY3Rpb24gbG9sY2F0aW9uKGxvYykge1xuICBsb2MgPSBsb2MgfHwgZ2xvYmFsLmxvY2F0aW9uIHx8IHt9O1xuICBVUkwgPSBVUkwgfHwgcmVxdWlyZSgnLi8nKTtcblxuICB2YXIgZmluYWxkZXN0aW5hdGlvbiA9IHt9XG4gICAgLCB0eXBlID0gdHlwZW9mIGxvY1xuICAgICwga2V5O1xuXG4gIGlmICgnYmxvYjonID09PSBsb2MucHJvdG9jb2wpIHtcbiAgICBmaW5hbGRlc3RpbmF0aW9uID0gbmV3IFVSTCh1bmVzY2FwZShsb2MucGF0aG5hbWUpLCB7fSk7XG4gIH0gZWxzZSBpZiAoJ3N0cmluZycgPT09IHR5cGUpIHtcbiAgICBmaW5hbGRlc3RpbmF0aW9uID0gbmV3IFVSTChsb2MsIHt9KTtcbiAgICBmb3IgKGtleSBpbiBpZ25vcmUpIGRlbGV0ZSBmaW5hbGRlc3RpbmF0aW9uW2tleV07XG4gIH0gZWxzZSBpZiAoJ29iamVjdCcgPT09IHR5cGUpIHtcbiAgICBmb3IgKGtleSBpbiBsb2MpIHtcbiAgICAgIGlmIChrZXkgaW4gaWdub3JlKSBjb250aW51ZTtcbiAgICAgIGZpbmFsZGVzdGluYXRpb25ba2V5XSA9IGxvY1trZXldO1xuICAgIH1cblxuICAgIGlmIChmaW5hbGRlc3RpbmF0aW9uLnNsYXNoZXMgPT09IHVuZGVmaW5lZCkge1xuICAgICAgZmluYWxkZXN0aW5hdGlvbi5zbGFzaGVzID0gc2xhc2hlcy50ZXN0KGxvYy5ocmVmKTtcbiAgICB9XG4gIH1cblxuICByZXR1cm4gZmluYWxkZXN0aW5hdGlvbjtcbn07XG4iLCIoZnVuY3Rpb24gKHJvb3QsIGZhY3RvcnkpIHtcbiAgICBpZiAodHlwZW9mIGV4cG9ydHMgPT09ICdvYmplY3QnKSB7XG4gICAgICAgIG1vZHVsZS5leHBvcnRzID0gZmFjdG9yeSgpO1xuICAgIH0gZWxzZSBpZiAodHlwZW9mIGRlZmluZSA9PT0gJ2Z1bmN0aW9uJyAmJiBkZWZpbmUuYW1kKSB7XG4gICAgICAgIGRlZmluZShbXSwgZmFjdG9yeSk7XG4gICAgfSBlbHNlIHtcbiAgICAgICAgcm9vdC51cmx0ZW1wbGF0ZSA9IGZhY3RvcnkoKTtcbiAgICB9XG59KHRoaXMsIGZ1bmN0aW9uICgpIHtcbiAgLyoqXG4gICAqIEBjb25zdHJ1Y3RvclxuICAgKi9cbiAgZnVuY3Rpb24gVXJsVGVtcGxhdGUoKSB7XG4gIH1cblxuICAvKipcbiAgICogQHByaXZhdGVcbiAgICogQHBhcmFtIHtzdHJpbmd9IHN0clxuICAgKiBAcmV0dXJuIHtzdHJpbmd9XG4gICAqL1xuICBVcmxUZW1wbGF0ZS5wcm90b3R5cGUuZW5jb2RlUmVzZXJ2ZWQgPSBmdW5jdGlvbiAoc3RyKSB7XG4gICAgcmV0dXJuIHN0ci5zcGxpdCgvKCVbMC05QS1GYS1mXXsyfSkvZykubWFwKGZ1bmN0aW9uIChwYXJ0KSB7XG4gICAgICBpZiAoIS8lWzAtOUEtRmEtZl0vLnRlc3QocGFydCkpIHtcbiAgICAgICAgcGFydCA9IGVuY29kZVVSSShwYXJ0KS5yZXBsYWNlKC8lNUIvZywgJ1snKS5yZXBsYWNlKC8lNUQvZywgJ10nKTtcbiAgICAgIH1cbiAgICAgIHJldHVybiBwYXJ0O1xuICAgIH0pLmpvaW4oJycpO1xuICB9O1xuXG4gIC8qKlxuICAgKiBAcHJpdmF0ZVxuICAgKiBAcGFyYW0ge3N0cmluZ30gc3RyXG4gICAqIEByZXR1cm4ge3N0cmluZ31cbiAgICovXG4gIFVybFRlbXBsYXRlLnByb3RvdHlwZS5lbmNvZGVVbnJlc2VydmVkID0gZnVuY3Rpb24gKHN0cikge1xuICAgIHJldHVybiBlbmNvZGVVUklDb21wb25lbnQoc3RyKS5yZXBsYWNlKC9bIScoKSpdL2csIGZ1bmN0aW9uIChjKSB7XG4gICAgICByZXR1cm4gJyUnICsgYy5jaGFyQ29kZUF0KDApLnRvU3RyaW5nKDE2KS50b1VwcGVyQ2FzZSgpO1xuICAgIH0pO1xuICB9XG5cbiAgLyoqXG4gICAqIEBwcml2YXRlXG4gICAqIEBwYXJhbSB7c3RyaW5nfSBvcGVyYXRvclxuICAgKiBAcGFyYW0ge3N0cmluZ30gdmFsdWVcbiAgICogQHBhcmFtIHtzdHJpbmd9IGtleVxuICAgKiBAcmV0dXJuIHtzdHJpbmd9XG4gICAqL1xuICBVcmxUZW1wbGF0ZS5wcm90b3R5cGUuZW5jb2RlVmFsdWUgPSBmdW5jdGlvbiAob3BlcmF0b3IsIHZhbHVlLCBrZXkpIHtcbiAgICB2YWx1ZSA9IChvcGVyYXRvciA9PT0gJysnIHx8IG9wZXJhdG9yID09PSAnIycpID8gdGhpcy5lbmNvZGVSZXNlcnZlZCh2YWx1ZSkgOiB0aGlzLmVuY29kZVVucmVzZXJ2ZWQodmFsdWUpO1xuXG4gICAgaWYgKGtleSkge1xuICAgICAgcmV0dXJuIHRoaXMuZW5jb2RlVW5yZXNlcnZlZChrZXkpICsgJz0nICsgdmFsdWU7XG4gICAgfSBlbHNlIHtcbiAgICAgIHJldHVybiB2YWx1ZTtcbiAgICB9XG4gIH07XG5cbiAgLyoqXG4gICAqIEBwcml2YXRlXG4gICAqIEBwYXJhbSB7Kn0gdmFsdWVcbiAgICogQHJldHVybiB7Ym9vbGVhbn1cbiAgICovXG4gIFVybFRlbXBsYXRlLnByb3RvdHlwZS5pc0RlZmluZWQgPSBmdW5jdGlvbiAodmFsdWUpIHtcbiAgICByZXR1cm4gdmFsdWUgIT09IHVuZGVmaW5lZCAmJiB2YWx1ZSAhPT0gbnVsbDtcbiAgfTtcblxuICAvKipcbiAgICogQHByaXZhdGVcbiAgICogQHBhcmFtIHtzdHJpbmd9XG4gICAqIEByZXR1cm4ge2Jvb2xlYW59XG4gICAqL1xuICBVcmxUZW1wbGF0ZS5wcm90b3R5cGUuaXNLZXlPcGVyYXRvciA9IGZ1bmN0aW9uIChvcGVyYXRvcikge1xuICAgIHJldHVybiBvcGVyYXRvciA9PT0gJzsnIHx8IG9wZXJhdG9yID09PSAnJicgfHwgb3BlcmF0b3IgPT09ICc/JztcbiAgfTtcblxuICAvKipcbiAgICogQHByaXZhdGVcbiAgICogQHBhcmFtIHtPYmplY3R9IGNvbnRleHRcbiAgICogQHBhcmFtIHtzdHJpbmd9IG9wZXJhdG9yXG4gICAqIEBwYXJhbSB7c3RyaW5nfSBrZXlcbiAgICogQHBhcmFtIHtzdHJpbmd9IG1vZGlmaWVyXG4gICAqL1xuICBVcmxUZW1wbGF0ZS5wcm90b3R5cGUuZ2V0VmFsdWVzID0gZnVuY3Rpb24gKGNvbnRleHQsIG9wZXJhdG9yLCBrZXksIG1vZGlmaWVyKSB7XG4gICAgdmFyIHZhbHVlID0gY29udGV4dFtrZXldLFxuICAgICAgICByZXN1bHQgPSBbXTtcblxuICAgIGlmICh0aGlzLmlzRGVmaW5lZCh2YWx1ZSkgJiYgdmFsdWUgIT09ICcnKSB7XG4gICAgICBpZiAodHlwZW9mIHZhbHVlID09PSAnc3RyaW5nJyB8fCB0eXBlb2YgdmFsdWUgPT09ICdudW1iZXInIHx8IHR5cGVvZiB2YWx1ZSA9PT0gJ2Jvb2xlYW4nKSB7XG4gICAgICAgIHZhbHVlID0gdmFsdWUudG9TdHJpbmcoKTtcblxuICAgICAgICBpZiAobW9kaWZpZXIgJiYgbW9kaWZpZXIgIT09ICcqJykge1xuICAgICAgICAgIHZhbHVlID0gdmFsdWUuc3Vic3RyaW5nKDAsIHBhcnNlSW50KG1vZGlmaWVyLCAxMCkpO1xuICAgICAgICB9XG5cbiAgICAgICAgcmVzdWx0LnB1c2godGhpcy5lbmNvZGVWYWx1ZShvcGVyYXRvciwgdmFsdWUsIHRoaXMuaXNLZXlPcGVyYXRvcihvcGVyYXRvcikgPyBrZXkgOiBudWxsKSk7XG4gICAgICB9IGVsc2Uge1xuICAgICAgICBpZiAobW9kaWZpZXIgPT09ICcqJykge1xuICAgICAgICAgIGlmIChBcnJheS5pc0FycmF5KHZhbHVlKSkge1xuICAgICAgICAgICAgdmFsdWUuZmlsdGVyKHRoaXMuaXNEZWZpbmVkKS5mb3JFYWNoKGZ1bmN0aW9uICh2YWx1ZSkge1xuICAgICAgICAgICAgICByZXN1bHQucHVzaCh0aGlzLmVuY29kZVZhbHVlKG9wZXJhdG9yLCB2YWx1ZSwgdGhpcy5pc0tleU9wZXJhdG9yKG9wZXJhdG9yKSA/IGtleSA6IG51bGwpKTtcbiAgICAgICAgICAgIH0sIHRoaXMpO1xuICAgICAgICAgIH0gZWxzZSB7XG4gICAgICAgICAgICBPYmplY3Qua2V5cyh2YWx1ZSkuZm9yRWFjaChmdW5jdGlvbiAoaykge1xuICAgICAgICAgICAgICBpZiAodGhpcy5pc0RlZmluZWQodmFsdWVba10pKSB7XG4gICAgICAgICAgICAgICAgcmVzdWx0LnB1c2godGhpcy5lbmNvZGVWYWx1ZShvcGVyYXRvciwgdmFsdWVba10sIGspKTtcbiAgICAgICAgICAgICAgfVxuICAgICAgICAgICAgfSwgdGhpcyk7XG4gICAgICAgICAgfVxuICAgICAgICB9IGVsc2Uge1xuICAgICAgICAgIHZhciB0bXAgPSBbXTtcblxuICAgICAgICAgIGlmIChBcnJheS5pc0FycmF5KHZhbHVlKSkge1xuICAgICAgICAgICAgdmFsdWUuZmlsdGVyKHRoaXMuaXNEZWZpbmVkKS5mb3JFYWNoKGZ1bmN0aW9uICh2YWx1ZSkge1xuICAgICAgICAgICAgICB0bXAucHVzaCh0aGlzLmVuY29kZVZhbHVlKG9wZXJhdG9yLCB2YWx1ZSkpO1xuICAgICAgICAgICAgfSwgdGhpcyk7XG4gICAgICAgICAgfSBlbHNlIHtcbiAgICAgICAgICAgIE9iamVjdC5rZXlzKHZhbHVlKS5mb3JFYWNoKGZ1bmN0aW9uIChrKSB7XG4gICAgICAgICAgICAgIGlmICh0aGlzLmlzRGVmaW5lZCh2YWx1ZVtrXSkpIHtcbiAgICAgICAgICAgICAgICB0bXAucHVzaCh0aGlzLmVuY29kZVVucmVzZXJ2ZWQoaykpO1xuICAgICAgICAgICAgICAgIHRtcC5wdXNoKHRoaXMuZW5jb2RlVmFsdWUob3BlcmF0b3IsIHZhbHVlW2tdLnRvU3RyaW5nKCkpKTtcbiAgICAgICAgICAgICAgfVxuICAgICAgICAgICAgfSwgdGhpcyk7XG4gICAgICAgICAgfVxuXG4gICAgICAgICAgaWYgKHRoaXMuaXNLZXlPcGVyYXRvcihvcGVyYXRvcikpIHtcbiAgICAgICAgICAgIHJlc3VsdC5wdXNoKHRoaXMuZW5jb2RlVW5yZXNlcnZlZChrZXkpICsgJz0nICsgdG1wLmpvaW4oJywnKSk7XG4gICAgICAgICAgfSBlbHNlIGlmICh0bXAubGVuZ3RoICE9PSAwKSB7XG4gICAgICAgICAgICByZXN1bHQucHVzaCh0bXAuam9pbignLCcpKTtcbiAgICAgICAgICB9XG4gICAgICAgIH1cbiAgICAgIH1cbiAgICB9IGVsc2Uge1xuICAgICAgaWYgKG9wZXJhdG9yID09PSAnOycpIHtcbiAgICAgICAgaWYgKHRoaXMuaXNEZWZpbmVkKHZhbHVlKSkge1xuICAgICAgICAgIHJlc3VsdC5wdXNoKHRoaXMuZW5jb2RlVW5yZXNlcnZlZChrZXkpKTtcbiAgICAgICAgfVxuICAgICAgfSBlbHNlIGlmICh2YWx1ZSA9PT0gJycgJiYgKG9wZXJhdG9yID09PSAnJicgfHwgb3BlcmF0b3IgPT09ICc/JykpIHtcbiAgICAgICAgcmVzdWx0LnB1c2godGhpcy5lbmNvZGVVbnJlc2VydmVkKGtleSkgKyAnPScpO1xuICAgICAgfSBlbHNlIGlmICh2YWx1ZSA9PT0gJycpIHtcbiAgICAgICAgcmVzdWx0LnB1c2goJycpO1xuICAgICAgfVxuICAgIH1cbiAgICByZXR1cm4gcmVzdWx0O1xuICB9O1xuXG4gIC8qKlxuICAgKiBAcGFyYW0ge3N0cmluZ30gdGVtcGxhdGVcbiAgICogQHJldHVybiB7ZnVuY3Rpb24oT2JqZWN0KTpzdHJpbmd9XG4gICAqL1xuICBVcmxUZW1wbGF0ZS5wcm90b3R5cGUucGFyc2UgPSBmdW5jdGlvbiAodGVtcGxhdGUpIHtcbiAgICB2YXIgdGhhdCA9IHRoaXM7XG4gICAgdmFyIG9wZXJhdG9ycyA9IFsnKycsICcjJywgJy4nLCAnLycsICc7JywgJz8nLCAnJiddO1xuXG4gICAgcmV0dXJuIHtcbiAgICAgIGV4cGFuZDogZnVuY3Rpb24gKGNvbnRleHQpIHtcbiAgICAgICAgcmV0dXJuIHRlbXBsYXRlLnJlcGxhY2UoL1xceyhbXlxce1xcfV0rKVxcfXwoW15cXHtcXH1dKykvZywgZnVuY3Rpb24gKF8sIGV4cHJlc3Npb24sIGxpdGVyYWwpIHtcbiAgICAgICAgICBpZiAoZXhwcmVzc2lvbikge1xuICAgICAgICAgICAgdmFyIG9wZXJhdG9yID0gbnVsbCxcbiAgICAgICAgICAgICAgICB2YWx1ZXMgPSBbXTtcblxuICAgICAgICAgICAgaWYgKG9wZXJhdG9ycy5pbmRleE9mKGV4cHJlc3Npb24uY2hhckF0KDApKSAhPT0gLTEpIHtcbiAgICAgICAgICAgICAgb3BlcmF0b3IgPSBleHByZXNzaW9uLmNoYXJBdCgwKTtcbiAgICAgICAgICAgICAgZXhwcmVzc2lvbiA9IGV4cHJlc3Npb24uc3Vic3RyKDEpO1xuICAgICAgICAgICAgfVxuXG4gICAgICAgICAgICBleHByZXNzaW9uLnNwbGl0KC8sL2cpLmZvckVhY2goZnVuY3Rpb24gKHZhcmlhYmxlKSB7XG4gICAgICAgICAgICAgIHZhciB0bXAgPSAvKFteOlxcKl0qKSg/OjooXFxkKyl8KFxcKikpPy8uZXhlYyh2YXJpYWJsZSk7XG4gICAgICAgICAgICAgIHZhbHVlcy5wdXNoLmFwcGx5KHZhbHVlcywgdGhhdC5nZXRWYWx1ZXMoY29udGV4dCwgb3BlcmF0b3IsIHRtcFsxXSwgdG1wWzJdIHx8IHRtcFszXSkpO1xuICAgICAgICAgICAgfSk7XG5cbiAgICAgICAgICAgIGlmIChvcGVyYXRvciAmJiBvcGVyYXRvciAhPT0gJysnKSB7XG4gICAgICAgICAgICAgIHZhciBzZXBhcmF0b3IgPSAnLCc7XG5cbiAgICAgICAgICAgICAgaWYgKG9wZXJhdG9yID09PSAnPycpIHtcbiAgICAgICAgICAgICAgICBzZXBhcmF0b3IgPSAnJic7XG4gICAgICAgICAgICAgIH0gZWxzZSBpZiAob3BlcmF0b3IgIT09ICcjJykge1xuICAgICAgICAgICAgICAgIHNlcGFyYXRvciA9IG9wZXJhdG9yO1xuICAgICAgICAgICAgICB9XG4gICAgICAgICAgICAgIHJldHVybiAodmFsdWVzLmxlbmd0aCAhPT0gMCA/IG9wZXJhdG9yIDogJycpICsgdmFsdWVzLmpvaW4oc2VwYXJhdG9yKTtcbiAgICAgICAgICAgIH0gZWxzZSB7XG4gICAgICAgICAgICAgIHJldHVybiB2YWx1ZXMuam9pbignLCcpO1xuICAgICAgICAgICAgfVxuICAgICAgICAgIH0gZWxzZSB7XG4gICAgICAgICAgICByZXR1cm4gdGhhdC5lbmNvZGVSZXNlcnZlZChsaXRlcmFsKTtcbiAgICAgICAgICB9XG4gICAgICAgIH0pO1xuICAgICAgfVxuICAgIH07XG4gIH07XG5cbiAgcmV0dXJuIG5ldyBVcmxUZW1wbGF0ZSgpO1xufSkpO1xuIiwiKGZ1bmN0aW9uKHNlbGYpIHtcbiAgJ3VzZSBzdHJpY3QnO1xuXG4gIGlmIChzZWxmLmZldGNoKSB7XG4gICAgcmV0dXJuXG4gIH1cblxuICB2YXIgc3VwcG9ydCA9IHtcbiAgICBzZWFyY2hQYXJhbXM6ICdVUkxTZWFyY2hQYXJhbXMnIGluIHNlbGYsXG4gICAgaXRlcmFibGU6ICdTeW1ib2wnIGluIHNlbGYgJiYgJ2l0ZXJhdG9yJyBpbiBTeW1ib2wsXG4gICAgYmxvYjogJ0ZpbGVSZWFkZXInIGluIHNlbGYgJiYgJ0Jsb2InIGluIHNlbGYgJiYgKGZ1bmN0aW9uKCkge1xuICAgICAgdHJ5IHtcbiAgICAgICAgbmV3IEJsb2IoKVxuICAgICAgICByZXR1cm4gdHJ1ZVxuICAgICAgfSBjYXRjaChlKSB7XG4gICAgICAgIHJldHVybiBmYWxzZVxuICAgICAgfVxuICAgIH0pKCksXG4gICAgZm9ybURhdGE6ICdGb3JtRGF0YScgaW4gc2VsZixcbiAgICBhcnJheUJ1ZmZlcjogJ0FycmF5QnVmZmVyJyBpbiBzZWxmXG4gIH1cblxuICBpZiAoc3VwcG9ydC5hcnJheUJ1ZmZlcikge1xuICAgIHZhciB2aWV3Q2xhc3NlcyA9IFtcbiAgICAgICdbb2JqZWN0IEludDhBcnJheV0nLFxuICAgICAgJ1tvYmplY3QgVWludDhBcnJheV0nLFxuICAgICAgJ1tvYmplY3QgVWludDhDbGFtcGVkQXJyYXldJyxcbiAgICAgICdbb2JqZWN0IEludDE2QXJyYXldJyxcbiAgICAgICdbb2JqZWN0IFVpbnQxNkFycmF5XScsXG4gICAgICAnW29iamVjdCBJbnQzMkFycmF5XScsXG4gICAgICAnW29iamVjdCBVaW50MzJBcnJheV0nLFxuICAgICAgJ1tvYmplY3QgRmxvYXQzMkFycmF5XScsXG4gICAgICAnW29iamVjdCBGbG9hdDY0QXJyYXldJ1xuICAgIF1cblxuICAgIHZhciBpc0RhdGFWaWV3ID0gZnVuY3Rpb24ob2JqKSB7XG4gICAgICByZXR1cm4gb2JqICYmIERhdGFWaWV3LnByb3RvdHlwZS5pc1Byb3RvdHlwZU9mKG9iailcbiAgICB9XG5cbiAgICB2YXIgaXNBcnJheUJ1ZmZlclZpZXcgPSBBcnJheUJ1ZmZlci5pc1ZpZXcgfHwgZnVuY3Rpb24ob2JqKSB7XG4gICAgICByZXR1cm4gb2JqICYmIHZpZXdDbGFzc2VzLmluZGV4T2YoT2JqZWN0LnByb3RvdHlwZS50b1N0cmluZy5jYWxsKG9iaikpID4gLTFcbiAgICB9XG4gIH1cblxuICBmdW5jdGlvbiBub3JtYWxpemVOYW1lKG5hbWUpIHtcbiAgICBpZiAodHlwZW9mIG5hbWUgIT09ICdzdHJpbmcnKSB7XG4gICAgICBuYW1lID0gU3RyaW5nKG5hbWUpXG4gICAgfVxuICAgIGlmICgvW15hLXowLTlcXC0jJCUmJyorLlxcXl9gfH5dL2kudGVzdChuYW1lKSkge1xuICAgICAgdGhyb3cgbmV3IFR5cGVFcnJvcignSW52YWxpZCBjaGFyYWN0ZXIgaW4gaGVhZGVyIGZpZWxkIG5hbWUnKVxuICAgIH1cbiAgICByZXR1cm4gbmFtZS50b0xvd2VyQ2FzZSgpXG4gIH1cblxuICBmdW5jdGlvbiBub3JtYWxpemVWYWx1ZSh2YWx1ZSkge1xuICAgIGlmICh0eXBlb2YgdmFsdWUgIT09ICdzdHJpbmcnKSB7XG4gICAgICB2YWx1ZSA9IFN0cmluZyh2YWx1ZSlcbiAgICB9XG4gICAgcmV0dXJuIHZhbHVlXG4gIH1cblxuICAvLyBCdWlsZCBhIGRlc3RydWN0aXZlIGl0ZXJhdG9yIGZvciB0aGUgdmFsdWUgbGlzdFxuICBmdW5jdGlvbiBpdGVyYXRvckZvcihpdGVtcykge1xuICAgIHZhciBpdGVyYXRvciA9IHtcbiAgICAgIG5leHQ6IGZ1bmN0aW9uKCkge1xuICAgICAgICB2YXIgdmFsdWUgPSBpdGVtcy5zaGlmdCgpXG4gICAgICAgIHJldHVybiB7ZG9uZTogdmFsdWUgPT09IHVuZGVmaW5lZCwgdmFsdWU6IHZhbHVlfVxuICAgICAgfVxuICAgIH1cblxuICAgIGlmIChzdXBwb3J0Lml0ZXJhYmxlKSB7XG4gICAgICBpdGVyYXRvcltTeW1ib2wuaXRlcmF0b3JdID0gZnVuY3Rpb24oKSB7XG4gICAgICAgIHJldHVybiBpdGVyYXRvclxuICAgICAgfVxuICAgIH1cblxuICAgIHJldHVybiBpdGVyYXRvclxuICB9XG5cbiAgZnVuY3Rpb24gSGVhZGVycyhoZWFkZXJzKSB7XG4gICAgdGhpcy5tYXAgPSB7fVxuXG4gICAgaWYgKGhlYWRlcnMgaW5zdGFuY2VvZiBIZWFkZXJzKSB7XG4gICAgICBoZWFkZXJzLmZvckVhY2goZnVuY3Rpb24odmFsdWUsIG5hbWUpIHtcbiAgICAgICAgdGhpcy5hcHBlbmQobmFtZSwgdmFsdWUpXG4gICAgICB9LCB0aGlzKVxuXG4gICAgfSBlbHNlIGlmIChoZWFkZXJzKSB7XG4gICAgICBPYmplY3QuZ2V0T3duUHJvcGVydHlOYW1lcyhoZWFkZXJzKS5mb3JFYWNoKGZ1bmN0aW9uKG5hbWUpIHtcbiAgICAgICAgdGhpcy5hcHBlbmQobmFtZSwgaGVhZGVyc1tuYW1lXSlcbiAgICAgIH0sIHRoaXMpXG4gICAgfVxuICB9XG5cbiAgSGVhZGVycy5wcm90b3R5cGUuYXBwZW5kID0gZnVuY3Rpb24obmFtZSwgdmFsdWUpIHtcbiAgICBuYW1lID0gbm9ybWFsaXplTmFtZShuYW1lKVxuICAgIHZhbHVlID0gbm9ybWFsaXplVmFsdWUodmFsdWUpXG4gICAgdmFyIG9sZFZhbHVlID0gdGhpcy5tYXBbbmFtZV1cbiAgICB0aGlzLm1hcFtuYW1lXSA9IG9sZFZhbHVlID8gb2xkVmFsdWUrJywnK3ZhbHVlIDogdmFsdWVcbiAgfVxuXG4gIEhlYWRlcnMucHJvdG90eXBlWydkZWxldGUnXSA9IGZ1bmN0aW9uKG5hbWUpIHtcbiAgICBkZWxldGUgdGhpcy5tYXBbbm9ybWFsaXplTmFtZShuYW1lKV1cbiAgfVxuXG4gIEhlYWRlcnMucHJvdG90eXBlLmdldCA9IGZ1bmN0aW9uKG5hbWUpIHtcbiAgICBuYW1lID0gbm9ybWFsaXplTmFtZShuYW1lKVxuICAgIHJldHVybiB0aGlzLmhhcyhuYW1lKSA/IHRoaXMubWFwW25hbWVdIDogbnVsbFxuICB9XG5cbiAgSGVhZGVycy5wcm90b3R5cGUuaGFzID0gZnVuY3Rpb24obmFtZSkge1xuICAgIHJldHVybiB0aGlzLm1hcC5oYXNPd25Qcm9wZXJ0eShub3JtYWxpemVOYW1lKG5hbWUpKVxuICB9XG5cbiAgSGVhZGVycy5wcm90b3R5cGUuc2V0ID0gZnVuY3Rpb24obmFtZSwgdmFsdWUpIHtcbiAgICB0aGlzLm1hcFtub3JtYWxpemVOYW1lKG5hbWUpXSA9IG5vcm1hbGl6ZVZhbHVlKHZhbHVlKVxuICB9XG5cbiAgSGVhZGVycy5wcm90b3R5cGUuZm9yRWFjaCA9IGZ1bmN0aW9uKGNhbGxiYWNrLCB0aGlzQXJnKSB7XG4gICAgZm9yICh2YXIgbmFtZSBpbiB0aGlzLm1hcCkge1xuICAgICAgaWYgKHRoaXMubWFwLmhhc093blByb3BlcnR5KG5hbWUpKSB7XG4gICAgICAgIGNhbGxiYWNrLmNhbGwodGhpc0FyZywgdGhpcy5tYXBbbmFtZV0sIG5hbWUsIHRoaXMpXG4gICAgICB9XG4gICAgfVxuICB9XG5cbiAgSGVhZGVycy5wcm90b3R5cGUua2V5cyA9IGZ1bmN0aW9uKCkge1xuICAgIHZhciBpdGVtcyA9IFtdXG4gICAgdGhpcy5mb3JFYWNoKGZ1bmN0aW9uKHZhbHVlLCBuYW1lKSB7IGl0ZW1zLnB1c2gobmFtZSkgfSlcbiAgICByZXR1cm4gaXRlcmF0b3JGb3IoaXRlbXMpXG4gIH1cblxuICBIZWFkZXJzLnByb3RvdHlwZS52YWx1ZXMgPSBmdW5jdGlvbigpIHtcbiAgICB2YXIgaXRlbXMgPSBbXVxuICAgIHRoaXMuZm9yRWFjaChmdW5jdGlvbih2YWx1ZSkgeyBpdGVtcy5wdXNoKHZhbHVlKSB9KVxuICAgIHJldHVybiBpdGVyYXRvckZvcihpdGVtcylcbiAgfVxuXG4gIEhlYWRlcnMucHJvdG90eXBlLmVudHJpZXMgPSBmdW5jdGlvbigpIHtcbiAgICB2YXIgaXRlbXMgPSBbXVxuICAgIHRoaXMuZm9yRWFjaChmdW5jdGlvbih2YWx1ZSwgbmFtZSkgeyBpdGVtcy5wdXNoKFtuYW1lLCB2YWx1ZV0pIH0pXG4gICAgcmV0dXJuIGl0ZXJhdG9yRm9yKGl0ZW1zKVxuICB9XG5cbiAgaWYgKHN1cHBvcnQuaXRlcmFibGUpIHtcbiAgICBIZWFkZXJzLnByb3RvdHlwZVtTeW1ib2wuaXRlcmF0b3JdID0gSGVhZGVycy5wcm90b3R5cGUuZW50cmllc1xuICB9XG5cbiAgZnVuY3Rpb24gY29uc3VtZWQoYm9keSkge1xuICAgIGlmIChib2R5LmJvZHlVc2VkKSB7XG4gICAgICByZXR1cm4gUHJvbWlzZS5yZWplY3QobmV3IFR5cGVFcnJvcignQWxyZWFkeSByZWFkJykpXG4gICAgfVxuICAgIGJvZHkuYm9keVVzZWQgPSB0cnVlXG4gIH1cblxuICBmdW5jdGlvbiBmaWxlUmVhZGVyUmVhZHkocmVhZGVyKSB7XG4gICAgcmV0dXJuIG5ldyBQcm9taXNlKGZ1bmN0aW9uKHJlc29sdmUsIHJlamVjdCkge1xuICAgICAgcmVhZGVyLm9ubG9hZCA9IGZ1bmN0aW9uKCkge1xuICAgICAgICByZXNvbHZlKHJlYWRlci5yZXN1bHQpXG4gICAgICB9XG4gICAgICByZWFkZXIub25lcnJvciA9IGZ1bmN0aW9uKCkge1xuICAgICAgICByZWplY3QocmVhZGVyLmVycm9yKVxuICAgICAgfVxuICAgIH0pXG4gIH1cblxuICBmdW5jdGlvbiByZWFkQmxvYkFzQXJyYXlCdWZmZXIoYmxvYikge1xuICAgIHZhciByZWFkZXIgPSBuZXcgRmlsZVJlYWRlcigpXG4gICAgdmFyIHByb21pc2UgPSBmaWxlUmVhZGVyUmVhZHkocmVhZGVyKVxuICAgIHJlYWRlci5yZWFkQXNBcnJheUJ1ZmZlcihibG9iKVxuICAgIHJldHVybiBwcm9taXNlXG4gIH1cblxuICBmdW5jdGlvbiByZWFkQmxvYkFzVGV4dChibG9iKSB7XG4gICAgdmFyIHJlYWRlciA9IG5ldyBGaWxlUmVhZGVyKClcbiAgICB2YXIgcHJvbWlzZSA9IGZpbGVSZWFkZXJSZWFkeShyZWFkZXIpXG4gICAgcmVhZGVyLnJlYWRBc1RleHQoYmxvYilcbiAgICByZXR1cm4gcHJvbWlzZVxuICB9XG5cbiAgZnVuY3Rpb24gYnVmZmVyQ2xvbmUoYnVmKSB7XG4gICAgaWYgKGJ1Zi5zbGljZSkge1xuICAgICAgcmV0dXJuIGJ1Zi5zbGljZSgwKVxuICAgIH0gZWxzZSB7XG4gICAgICB2YXIgdmlldyA9IG5ldyBVaW50OEFycmF5KGJ1Zi5ieXRlTGVuZ3RoKVxuICAgICAgdmlldy5zZXQobmV3IFVpbnQ4QXJyYXkoYnVmKSlcbiAgICAgIHJldHVybiB2aWV3LmJ1ZmZlclxuICAgIH1cbiAgfVxuXG4gIGZ1bmN0aW9uIEJvZHkoKSB7XG4gICAgdGhpcy5ib2R5VXNlZCA9IGZhbHNlXG5cbiAgICB0aGlzLl9pbml0Qm9keSA9IGZ1bmN0aW9uKGJvZHkpIHtcbiAgICAgIHRoaXMuX2JvZHlJbml0ID0gYm9keVxuICAgICAgaWYgKCFib2R5KSB7XG4gICAgICAgIHRoaXMuX2JvZHlUZXh0ID0gJydcbiAgICAgIH0gZWxzZSBpZiAodHlwZW9mIGJvZHkgPT09ICdzdHJpbmcnKSB7XG4gICAgICAgIHRoaXMuX2JvZHlUZXh0ID0gYm9keVxuICAgICAgfSBlbHNlIGlmIChzdXBwb3J0LmJsb2IgJiYgQmxvYi5wcm90b3R5cGUuaXNQcm90b3R5cGVPZihib2R5KSkge1xuICAgICAgICB0aGlzLl9ib2R5QmxvYiA9IGJvZHlcbiAgICAgIH0gZWxzZSBpZiAoc3VwcG9ydC5mb3JtRGF0YSAmJiBGb3JtRGF0YS5wcm90b3R5cGUuaXNQcm90b3R5cGVPZihib2R5KSkge1xuICAgICAgICB0aGlzLl9ib2R5Rm9ybURhdGEgPSBib2R5XG4gICAgICB9IGVsc2UgaWYgKHN1cHBvcnQuc2VhcmNoUGFyYW1zICYmIFVSTFNlYXJjaFBhcmFtcy5wcm90b3R5cGUuaXNQcm90b3R5cGVPZihib2R5KSkge1xuICAgICAgICB0aGlzLl9ib2R5VGV4dCA9IGJvZHkudG9TdHJpbmcoKVxuICAgICAgfSBlbHNlIGlmIChzdXBwb3J0LmFycmF5QnVmZmVyICYmIHN1cHBvcnQuYmxvYiAmJiBpc0RhdGFWaWV3KGJvZHkpKSB7XG4gICAgICAgIHRoaXMuX2JvZHlBcnJheUJ1ZmZlciA9IGJ1ZmZlckNsb25lKGJvZHkuYnVmZmVyKVxuICAgICAgICAvLyBJRSAxMC0xMSBjYW4ndCBoYW5kbGUgYSBEYXRhVmlldyBib2R5LlxuICAgICAgICB0aGlzLl9ib2R5SW5pdCA9IG5ldyBCbG9iKFt0aGlzLl9ib2R5QXJyYXlCdWZmZXJdKVxuICAgICAgfSBlbHNlIGlmIChzdXBwb3J0LmFycmF5QnVmZmVyICYmIChBcnJheUJ1ZmZlci5wcm90b3R5cGUuaXNQcm90b3R5cGVPZihib2R5KSB8fCBpc0FycmF5QnVmZmVyVmlldyhib2R5KSkpIHtcbiAgICAgICAgdGhpcy5fYm9keUFycmF5QnVmZmVyID0gYnVmZmVyQ2xvbmUoYm9keSlcbiAgICAgIH0gZWxzZSB7XG4gICAgICAgIHRocm93IG5ldyBFcnJvcigndW5zdXBwb3J0ZWQgQm9keUluaXQgdHlwZScpXG4gICAgICB9XG5cbiAgICAgIGlmICghdGhpcy5oZWFkZXJzLmdldCgnY29udGVudC10eXBlJykpIHtcbiAgICAgICAgaWYgKHR5cGVvZiBib2R5ID09PSAnc3RyaW5nJykge1xuICAgICAgICAgIHRoaXMuaGVhZGVycy5zZXQoJ2NvbnRlbnQtdHlwZScsICd0ZXh0L3BsYWluO2NoYXJzZXQ9VVRGLTgnKVxuICAgICAgICB9IGVsc2UgaWYgKHRoaXMuX2JvZHlCbG9iICYmIHRoaXMuX2JvZHlCbG9iLnR5cGUpIHtcbiAgICAgICAgICB0aGlzLmhlYWRlcnMuc2V0KCdjb250ZW50LXR5cGUnLCB0aGlzLl9ib2R5QmxvYi50eXBlKVxuICAgICAgICB9IGVsc2UgaWYgKHN1cHBvcnQuc2VhcmNoUGFyYW1zICYmIFVSTFNlYXJjaFBhcmFtcy5wcm90b3R5cGUuaXNQcm90b3R5cGVPZihib2R5KSkge1xuICAgICAgICAgIHRoaXMuaGVhZGVycy5zZXQoJ2NvbnRlbnQtdHlwZScsICdhcHBsaWNhdGlvbi94LXd3dy1mb3JtLXVybGVuY29kZWQ7Y2hhcnNldD1VVEYtOCcpXG4gICAgICAgIH1cbiAgICAgIH1cbiAgICB9XG5cbiAgICBpZiAoc3VwcG9ydC5ibG9iKSB7XG4gICAgICB0aGlzLmJsb2IgPSBmdW5jdGlvbigpIHtcbiAgICAgICAgdmFyIHJlamVjdGVkID0gY29uc3VtZWQodGhpcylcbiAgICAgICAgaWYgKHJlamVjdGVkKSB7XG4gICAgICAgICAgcmV0dXJuIHJlamVjdGVkXG4gICAgICAgIH1cblxuICAgICAgICBpZiAodGhpcy5fYm9keUJsb2IpIHtcbiAgICAgICAgICByZXR1cm4gUHJvbWlzZS5yZXNvbHZlKHRoaXMuX2JvZHlCbG9iKVxuICAgICAgICB9IGVsc2UgaWYgKHRoaXMuX2JvZHlBcnJheUJ1ZmZlcikge1xuICAgICAgICAgIHJldHVybiBQcm9taXNlLnJlc29sdmUobmV3IEJsb2IoW3RoaXMuX2JvZHlBcnJheUJ1ZmZlcl0pKVxuICAgICAgICB9IGVsc2UgaWYgKHRoaXMuX2JvZHlGb3JtRGF0YSkge1xuICAgICAgICAgIHRocm93IG5ldyBFcnJvcignY291bGQgbm90IHJlYWQgRm9ybURhdGEgYm9keSBhcyBibG9iJylcbiAgICAgICAgfSBlbHNlIHtcbiAgICAgICAgICByZXR1cm4gUHJvbWlzZS5yZXNvbHZlKG5ldyBCbG9iKFt0aGlzLl9ib2R5VGV4dF0pKVxuICAgICAgICB9XG4gICAgICB9XG4gICAgfVxuXG4gICAgdGhpcy50ZXh0ID0gZnVuY3Rpb24oKSB7XG4gICAgICB2YXIgcmVqZWN0ZWQgPSBjb25zdW1lZCh0aGlzKVxuICAgICAgaWYgKHJlamVjdGVkKSB7XG4gICAgICAgIHJldHVybiByZWplY3RlZFxuICAgICAgfVxuXG4gICAgICBpZiAodGhpcy5fYm9keUJsb2IpIHtcbiAgICAgICAgcmV0dXJuIHJlYWRCbG9iQXNUZXh0KHRoaXMuX2JvZHlCbG9iKVxuICAgICAgfSBlbHNlIGlmICh0aGlzLl9ib2R5QXJyYXlCdWZmZXIpIHtcbiAgICAgICAgdmFyIHZpZXcgPSBuZXcgVWludDhBcnJheSh0aGlzLl9ib2R5QXJyYXlCdWZmZXIpXG4gICAgICAgIHZhciBzdHIgPSBTdHJpbmcuZnJvbUNoYXJDb2RlLmFwcGx5KG51bGwsIHZpZXcpXG4gICAgICAgIHJldHVybiBQcm9taXNlLnJlc29sdmUoc3RyKVxuICAgICAgfSBlbHNlIGlmICh0aGlzLl9ib2R5Rm9ybURhdGEpIHtcbiAgICAgICAgdGhyb3cgbmV3IEVycm9yKCdjb3VsZCBub3QgcmVhZCBGb3JtRGF0YSBib2R5IGFzIHRleHQnKVxuICAgICAgfSBlbHNlIHtcbiAgICAgICAgcmV0dXJuIFByb21pc2UucmVzb2x2ZSh0aGlzLl9ib2R5VGV4dClcbiAgICAgIH1cbiAgICB9XG5cbiAgICBpZiAoc3VwcG9ydC5hcnJheUJ1ZmZlcikge1xuICAgICAgdGhpcy5hcnJheUJ1ZmZlciA9IGZ1bmN0aW9uKCkge1xuICAgICAgICBpZiAodGhpcy5fYm9keUFycmF5QnVmZmVyKSB7XG4gICAgICAgICAgcmV0dXJuIGNvbnN1bWVkKHRoaXMpIHx8IFByb21pc2UucmVzb2x2ZSh0aGlzLl9ib2R5QXJyYXlCdWZmZXIpXG4gICAgICAgIH0gZWxzZSB7XG4gICAgICAgICAgcmV0dXJuIHRoaXMuYmxvYigpLnRoZW4ocmVhZEJsb2JBc0FycmF5QnVmZmVyKVxuICAgICAgICB9XG4gICAgICB9XG4gICAgfVxuXG4gICAgaWYgKHN1cHBvcnQuZm9ybURhdGEpIHtcbiAgICAgIHRoaXMuZm9ybURhdGEgPSBmdW5jdGlvbigpIHtcbiAgICAgICAgcmV0dXJuIHRoaXMudGV4dCgpLnRoZW4oZGVjb2RlKVxuICAgICAgfVxuICAgIH1cblxuICAgIHRoaXMuanNvbiA9IGZ1bmN0aW9uKCkge1xuICAgICAgcmV0dXJuIHRoaXMudGV4dCgpLnRoZW4oSlNPTi5wYXJzZSlcbiAgICB9XG5cbiAgICByZXR1cm4gdGhpc1xuICB9XG5cbiAgLy8gSFRUUCBtZXRob2RzIHdob3NlIGNhcGl0YWxpemF0aW9uIHNob3VsZCBiZSBub3JtYWxpemVkXG4gIHZhciBtZXRob2RzID0gWydERUxFVEUnLCAnR0VUJywgJ0hFQUQnLCAnT1BUSU9OUycsICdQT1NUJywgJ1BVVCddXG5cbiAgZnVuY3Rpb24gbm9ybWFsaXplTWV0aG9kKG1ldGhvZCkge1xuICAgIHZhciB1cGNhc2VkID0gbWV0aG9kLnRvVXBwZXJDYXNlKClcbiAgICByZXR1cm4gKG1ldGhvZHMuaW5kZXhPZih1cGNhc2VkKSA+IC0xKSA/IHVwY2FzZWQgOiBtZXRob2RcbiAgfVxuXG4gIGZ1bmN0aW9uIFJlcXVlc3QoaW5wdXQsIG9wdGlvbnMpIHtcbiAgICBvcHRpb25zID0gb3B0aW9ucyB8fCB7fVxuICAgIHZhciBib2R5ID0gb3B0aW9ucy5ib2R5XG5cbiAgICBpZiAodHlwZW9mIGlucHV0ID09PSAnc3RyaW5nJykge1xuICAgICAgdGhpcy51cmwgPSBpbnB1dFxuICAgIH0gZWxzZSB7XG4gICAgICBpZiAoaW5wdXQuYm9keVVzZWQpIHtcbiAgICAgICAgdGhyb3cgbmV3IFR5cGVFcnJvcignQWxyZWFkeSByZWFkJylcbiAgICAgIH1cbiAgICAgIHRoaXMudXJsID0gaW5wdXQudXJsXG4gICAgICB0aGlzLmNyZWRlbnRpYWxzID0gaW5wdXQuY3JlZGVudGlhbHNcbiAgICAgIGlmICghb3B0aW9ucy5oZWFkZXJzKSB7XG4gICAgICAgIHRoaXMuaGVhZGVycyA9IG5ldyBIZWFkZXJzKGlucHV0LmhlYWRlcnMpXG4gICAgICB9XG4gICAgICB0aGlzLm1ldGhvZCA9IGlucHV0Lm1ldGhvZFxuICAgICAgdGhpcy5tb2RlID0gaW5wdXQubW9kZVxuICAgICAgaWYgKCFib2R5ICYmIGlucHV0Ll9ib2R5SW5pdCAhPSBudWxsKSB7XG4gICAgICAgIGJvZHkgPSBpbnB1dC5fYm9keUluaXRcbiAgICAgICAgaW5wdXQuYm9keVVzZWQgPSB0cnVlXG4gICAgICB9XG4gICAgfVxuXG4gICAgdGhpcy5jcmVkZW50aWFscyA9IG9wdGlvbnMuY3JlZGVudGlhbHMgfHwgdGhpcy5jcmVkZW50aWFscyB8fCAnb21pdCdcbiAgICBpZiAob3B0aW9ucy5oZWFkZXJzIHx8ICF0aGlzLmhlYWRlcnMpIHtcbiAgICAgIHRoaXMuaGVhZGVycyA9IG5ldyBIZWFkZXJzKG9wdGlvbnMuaGVhZGVycylcbiAgICB9XG4gICAgdGhpcy5tZXRob2QgPSBub3JtYWxpemVNZXRob2Qob3B0aW9ucy5tZXRob2QgfHwgdGhpcy5tZXRob2QgfHwgJ0dFVCcpXG4gICAgdGhpcy5tb2RlID0gb3B0aW9ucy5tb2RlIHx8IHRoaXMubW9kZSB8fCBudWxsXG4gICAgdGhpcy5yZWZlcnJlciA9IG51bGxcblxuICAgIGlmICgodGhpcy5tZXRob2QgPT09ICdHRVQnIHx8IHRoaXMubWV0aG9kID09PSAnSEVBRCcpICYmIGJvZHkpIHtcbiAgICAgIHRocm93IG5ldyBUeXBlRXJyb3IoJ0JvZHkgbm90IGFsbG93ZWQgZm9yIEdFVCBvciBIRUFEIHJlcXVlc3RzJylcbiAgICB9XG4gICAgdGhpcy5faW5pdEJvZHkoYm9keSlcbiAgfVxuXG4gIFJlcXVlc3QucHJvdG90eXBlLmNsb25lID0gZnVuY3Rpb24oKSB7XG4gICAgcmV0dXJuIG5ldyBSZXF1ZXN0KHRoaXMsIHsgYm9keTogdGhpcy5fYm9keUluaXQgfSlcbiAgfVxuXG4gIGZ1bmN0aW9uIGRlY29kZShib2R5KSB7XG4gICAgdmFyIGZvcm0gPSBuZXcgRm9ybURhdGEoKVxuICAgIGJvZHkudHJpbSgpLnNwbGl0KCcmJykuZm9yRWFjaChmdW5jdGlvbihieXRlcykge1xuICAgICAgaWYgKGJ5dGVzKSB7XG4gICAgICAgIHZhciBzcGxpdCA9IGJ5dGVzLnNwbGl0KCc9JylcbiAgICAgICAgdmFyIG5hbWUgPSBzcGxpdC5zaGlmdCgpLnJlcGxhY2UoL1xcKy9nLCAnICcpXG4gICAgICAgIHZhciB2YWx1ZSA9IHNwbGl0LmpvaW4oJz0nKS5yZXBsYWNlKC9cXCsvZywgJyAnKVxuICAgICAgICBmb3JtLmFwcGVuZChkZWNvZGVVUklDb21wb25lbnQobmFtZSksIGRlY29kZVVSSUNvbXBvbmVudCh2YWx1ZSkpXG4gICAgICB9XG4gICAgfSlcbiAgICByZXR1cm4gZm9ybVxuICB9XG5cbiAgZnVuY3Rpb24gcGFyc2VIZWFkZXJzKHJhd0hlYWRlcnMpIHtcbiAgICB2YXIgaGVhZGVycyA9IG5ldyBIZWFkZXJzKClcbiAgICByYXdIZWFkZXJzLnNwbGl0KCdcXHJcXG4nKS5mb3JFYWNoKGZ1bmN0aW9uKGxpbmUpIHtcbiAgICAgIHZhciBwYXJ0cyA9IGxpbmUuc3BsaXQoJzonKVxuICAgICAgdmFyIGtleSA9IHBhcnRzLnNoaWZ0KCkudHJpbSgpXG4gICAgICBpZiAoa2V5KSB7XG4gICAgICAgIHZhciB2YWx1ZSA9IHBhcnRzLmpvaW4oJzonKS50cmltKClcbiAgICAgICAgaGVhZGVycy5hcHBlbmQoa2V5LCB2YWx1ZSlcbiAgICAgIH1cbiAgICB9KVxuICAgIHJldHVybiBoZWFkZXJzXG4gIH1cblxuICBCb2R5LmNhbGwoUmVxdWVzdC5wcm90b3R5cGUpXG5cbiAgZnVuY3Rpb24gUmVzcG9uc2UoYm9keUluaXQsIG9wdGlvbnMpIHtcbiAgICBpZiAoIW9wdGlvbnMpIHtcbiAgICAgIG9wdGlvbnMgPSB7fVxuICAgIH1cblxuICAgIHRoaXMudHlwZSA9ICdkZWZhdWx0J1xuICAgIHRoaXMuc3RhdHVzID0gJ3N0YXR1cycgaW4gb3B0aW9ucyA/IG9wdGlvbnMuc3RhdHVzIDogMjAwXG4gICAgdGhpcy5vayA9IHRoaXMuc3RhdHVzID49IDIwMCAmJiB0aGlzLnN0YXR1cyA8IDMwMFxuICAgIHRoaXMuc3RhdHVzVGV4dCA9ICdzdGF0dXNUZXh0JyBpbiBvcHRpb25zID8gb3B0aW9ucy5zdGF0dXNUZXh0IDogJ09LJ1xuICAgIHRoaXMuaGVhZGVycyA9IG5ldyBIZWFkZXJzKG9wdGlvbnMuaGVhZGVycylcbiAgICB0aGlzLnVybCA9IG9wdGlvbnMudXJsIHx8ICcnXG4gICAgdGhpcy5faW5pdEJvZHkoYm9keUluaXQpXG4gIH1cblxuICBCb2R5LmNhbGwoUmVzcG9uc2UucHJvdG90eXBlKVxuXG4gIFJlc3BvbnNlLnByb3RvdHlwZS5jbG9uZSA9IGZ1bmN0aW9uKCkge1xuICAgIHJldHVybiBuZXcgUmVzcG9uc2UodGhpcy5fYm9keUluaXQsIHtcbiAgICAgIHN0YXR1czogdGhpcy5zdGF0dXMsXG4gICAgICBzdGF0dXNUZXh0OiB0aGlzLnN0YXR1c1RleHQsXG4gICAgICBoZWFkZXJzOiBuZXcgSGVhZGVycyh0aGlzLmhlYWRlcnMpLFxuICAgICAgdXJsOiB0aGlzLnVybFxuICAgIH0pXG4gIH1cblxuICBSZXNwb25zZS5lcnJvciA9IGZ1bmN0aW9uKCkge1xuICAgIHZhciByZXNwb25zZSA9IG5ldyBSZXNwb25zZShudWxsLCB7c3RhdHVzOiAwLCBzdGF0dXNUZXh0OiAnJ30pXG4gICAgcmVzcG9uc2UudHlwZSA9ICdlcnJvcidcbiAgICByZXR1cm4gcmVzcG9uc2VcbiAgfVxuXG4gIHZhciByZWRpcmVjdFN0YXR1c2VzID0gWzMwMSwgMzAyLCAzMDMsIDMwNywgMzA4XVxuXG4gIFJlc3BvbnNlLnJlZGlyZWN0ID0gZnVuY3Rpb24odXJsLCBzdGF0dXMpIHtcbiAgICBpZiAocmVkaXJlY3RTdGF0dXNlcy5pbmRleE9mKHN0YXR1cykgPT09IC0xKSB7XG4gICAgICB0aHJvdyBuZXcgUmFuZ2VFcnJvcignSW52YWxpZCBzdGF0dXMgY29kZScpXG4gICAgfVxuXG4gICAgcmV0dXJuIG5ldyBSZXNwb25zZShudWxsLCB7c3RhdHVzOiBzdGF0dXMsIGhlYWRlcnM6IHtsb2NhdGlvbjogdXJsfX0pXG4gIH1cblxuICBzZWxmLkhlYWRlcnMgPSBIZWFkZXJzXG4gIHNlbGYuUmVxdWVzdCA9IFJlcXVlc3RcbiAgc2VsZi5SZXNwb25zZSA9IFJlc3BvbnNlXG5cbiAgc2VsZi5mZXRjaCA9IGZ1bmN0aW9uKGlucHV0LCBpbml0KSB7XG4gICAgcmV0dXJuIG5ldyBQcm9taXNlKGZ1bmN0aW9uKHJlc29sdmUsIHJlamVjdCkge1xuICAgICAgdmFyIHJlcXVlc3QgPSBuZXcgUmVxdWVzdChpbnB1dCwgaW5pdClcbiAgICAgIHZhciB4aHIgPSBuZXcgWE1MSHR0cFJlcXVlc3QoKVxuXG4gICAgICB4aHIub25sb2FkID0gZnVuY3Rpb24oKSB7XG4gICAgICAgIHZhciBvcHRpb25zID0ge1xuICAgICAgICAgIHN0YXR1czogeGhyLnN0YXR1cyxcbiAgICAgICAgICBzdGF0dXNUZXh0OiB4aHIuc3RhdHVzVGV4dCxcbiAgICAgICAgICBoZWFkZXJzOiBwYXJzZUhlYWRlcnMoeGhyLmdldEFsbFJlc3BvbnNlSGVhZGVycygpIHx8ICcnKVxuICAgICAgICB9XG4gICAgICAgIG9wdGlvbnMudXJsID0gJ3Jlc3BvbnNlVVJMJyBpbiB4aHIgPyB4aHIucmVzcG9uc2VVUkwgOiBvcHRpb25zLmhlYWRlcnMuZ2V0KCdYLVJlcXVlc3QtVVJMJylcbiAgICAgICAgdmFyIGJvZHkgPSAncmVzcG9uc2UnIGluIHhociA/IHhoci5yZXNwb25zZSA6IHhoci5yZXNwb25zZVRleHRcbiAgICAgICAgcmVzb2x2ZShuZXcgUmVzcG9uc2UoYm9keSwgb3B0aW9ucykpXG4gICAgICB9XG5cbiAgICAgIHhoci5vbmVycm9yID0gZnVuY3Rpb24oKSB7XG4gICAgICAgIHJlamVjdChuZXcgVHlwZUVycm9yKCdOZXR3b3JrIHJlcXVlc3QgZmFpbGVkJykpXG4gICAgICB9XG5cbiAgICAgIHhoci5vbnRpbWVvdXQgPSBmdW5jdGlvbigpIHtcbiAgICAgICAgcmVqZWN0KG5ldyBUeXBlRXJyb3IoJ05ldHdvcmsgcmVxdWVzdCBmYWlsZWQnKSlcbiAgICAgIH1cblxuICAgICAgeGhyLm9wZW4ocmVxdWVzdC5tZXRob2QsIHJlcXVlc3QudXJsLCB0cnVlKVxuXG4gICAgICBpZiAocmVxdWVzdC5jcmVkZW50aWFscyA9PT0gJ2luY2x1ZGUnKSB7XG4gICAgICAgIHhoci53aXRoQ3JlZGVudGlhbHMgPSB0cnVlXG4gICAgICB9XG5cbiAgICAgIGlmICgncmVzcG9uc2VUeXBlJyBpbiB4aHIgJiYgc3VwcG9ydC5ibG9iKSB7XG4gICAgICAgIHhoci5yZXNwb25zZVR5cGUgPSAnYmxvYidcbiAgICAgIH1cblxuICAgICAgcmVxdWVzdC5oZWFkZXJzLmZvckVhY2goZnVuY3Rpb24odmFsdWUsIG5hbWUpIHtcbiAgICAgICAgeGhyLnNldFJlcXVlc3RIZWFkZXIobmFtZSwgdmFsdWUpXG4gICAgICB9KVxuXG4gICAgICB4aHIuc2VuZCh0eXBlb2YgcmVxdWVzdC5fYm9keUluaXQgPT09ICd1bmRlZmluZWQnID8gbnVsbCA6IHJlcXVlc3QuX2JvZHlJbml0KVxuICAgIH0pXG4gIH1cbiAgc2VsZi5mZXRjaC5wb2x5ZmlsbCA9IHRydWVcbn0pKHR5cGVvZiBzZWxmICE9PSAndW5kZWZpbmVkJyA/IHNlbGYgOiB0aGlzKTtcbiJdfQ==
\ No newline at end of file
diff --git a/static/rest_framework/js/csrf.js b/static/rest_framework/js/csrf.js
new file mode 100644
index 0000000..6e4bf39
--- /dev/null
+++ b/static/rest_framework/js/csrf.js
@@ -0,0 +1,52 @@
+function getCookie(name) {
+ var cookieValue = null;
+
+ if (document.cookie && document.cookie != '') {
+ var cookies = document.cookie.split(';');
+
+ for (var i = 0; i < cookies.length; i++) {
+ var cookie = jQuery.trim(cookies[i]);
+
+ // Does this cookie string begin with the name we want?
+ if (cookie.substring(0, name.length + 1) == (name + '=')) {
+ cookieValue = decodeURIComponent(cookie.substring(name.length + 1));
+ break;
+ }
+ }
+ }
+
+ return cookieValue;
+}
+
+function csrfSafeMethod(method) {
+ // these HTTP methods do not require CSRF protection
+ return (/^(GET|HEAD|OPTIONS|TRACE)$/.test(method));
+}
+
+function sameOrigin(url) {
+ // test that a given url is a same-origin URL
+ // url could be relative or scheme relative or absolute
+ var host = document.location.host; // host + port
+ var protocol = document.location.protocol;
+ var sr_origin = '//' + host;
+ var origin = protocol + sr_origin;
+
+ // Allow absolute or scheme relative URLs to same origin
+ return (url == origin || url.slice(0, origin.length + 1) == origin + '/') ||
+ (url == sr_origin || url.slice(0, sr_origin.length + 1) == sr_origin + '/') ||
+ // or any other URL that isn't scheme relative or absolute i.e relative.
+ !(/^(\/\/|http:|https:).*/.test(url));
+}
+
+var csrftoken = window.drf.csrfToken;
+
+$.ajaxSetup({
+ beforeSend: function(xhr, settings) {
+ if (!csrfSafeMethod(settings.type) && sameOrigin(settings.url)) {
+ // Send the token to same-origin, relative URLs only.
+ // Send the token only if the method warrants CSRF protection
+ // Using the CSRFToken value acquired earlier
+ xhr.setRequestHeader(window.drf.csrfHeaderName, csrftoken);
+ }
+ }
+});
diff --git a/static/rest_framework/js/default.js b/static/rest_framework/js/default.js
new file mode 100644
index 0000000..bec2e4f
--- /dev/null
+++ b/static/rest_framework/js/default.js
@@ -0,0 +1,47 @@
+$(document).ready(function() {
+ // JSON highlighting.
+ prettyPrint();
+
+ // Bootstrap tooltips.
+ $('.js-tooltip').tooltip({
+ delay: 1000,
+ container: 'body'
+ });
+
+ // Deal with rounded tab styling after tab clicks.
+ $('a[data-toggle="tab"]:first').on('shown', function(e) {
+ $(e.target).parents('.tabbable').addClass('first-tab-active');
+ });
+
+ $('a[data-toggle="tab"]:not(:first)').on('shown', function(e) {
+ $(e.target).parents('.tabbable').removeClass('first-tab-active');
+ });
+
+ $('a[data-toggle="tab"]').click(function() {
+ document.cookie = "tabstyle=" + this.name + "; path=/";
+ });
+
+ // Store tab preference in cookies & display appropriate tab on load.
+ var selectedTab = null;
+ var selectedTabName = getCookie('tabstyle');
+
+ if (selectedTabName) {
+ selectedTabName = selectedTabName.replace(/[^a-z-]/g, '');
+ }
+
+ if (selectedTabName) {
+ selectedTab = $('.form-switcher a[name=' + selectedTabName + ']');
+ }
+
+ if (selectedTab && selectedTab.length > 0) {
+ // Display whichever tab is selected.
+ selectedTab.tab('show');
+ } else {
+ // If no tab selected, display rightmost tab.
+ $('.form-switcher a:first').tab('show');
+ }
+
+ $(window).on('load', function() {
+ $('#errorModal').modal('show');
+ });
+});
diff --git a/static/rest_framework/js/jquery-3.5.1.min.js b/static/rest_framework/js/jquery-3.5.1.min.js
new file mode 100644
index 0000000..b061403
--- /dev/null
+++ b/static/rest_framework/js/jquery-3.5.1.min.js
@@ -0,0 +1,2 @@
+/*! jQuery v3.5.1 | (c) JS Foundation and other contributors | jquery.org/license */
+!function(e,t){"use strict";"object"==typeof module&&"object"==typeof module.exports?module.exports=e.document?t(e,!0):function(e){if(!e.document)throw new Error("jQuery requires a window with a document");return t(e)}:t(e)}("undefined"!=typeof window?window:this,function(C,e){"use strict";var t=[],r=Object.getPrototypeOf,s=t.slice,g=t.flat?function(e){return t.flat.call(e)}:function(e){return t.concat.apply([],e)},u=t.push,i=t.indexOf,n={},o=n.toString,v=n.hasOwnProperty,a=v.toString,l=a.call(Object),y={},m=function(e){return"function"==typeof e&&"number"!=typeof e.nodeType},x=function(e){return null!=e&&e===e.window},E=C.document,c={type:!0,src:!0,nonce:!0,noModule:!0};function b(e,t,n){var r,i,o=(n=n||E).createElement("script");if(o.text=e,t)for(r in c)(i=t[r]||t.getAttribute&&t.getAttribute(r))&&o.setAttribute(r,i);n.head.appendChild(o).parentNode.removeChild(o)}function w(e){return null==e?e+"":"object"==typeof e||"function"==typeof e?n[o.call(e)]||"object":typeof e}var f="3.5.1",S=function(e,t){return new S.fn.init(e,t)};function p(e){var t=!!e&&"length"in e&&e.length,n=w(e);return!m(e)&&!x(e)&&("array"===n||0===t||"number"==typeof t&&0+~]|"+M+")"+M+"*"),U=new RegExp(M+"|>"),X=new RegExp(F),V=new RegExp("^"+I+"$"),G={ID:new RegExp("^#("+I+")"),CLASS:new RegExp("^\\.("+I+")"),TAG:new RegExp("^("+I+"|[*])"),ATTR:new RegExp("^"+W),PSEUDO:new RegExp("^"+F),CHILD:new RegExp("^:(only|first|last|nth|nth-last)-(child|of-type)(?:\\("+M+"*(even|odd|(([+-]|)(\\d*)n|)"+M+"*(?:([+-]|)"+M+"*(\\d+)|))"+M+"*\\)|)","i"),bool:new RegExp("^(?:"+R+")$","i"),needsContext:new RegExp("^"+M+"*[>+~]|:(even|odd|eq|gt|lt|nth|first|last)(?:\\("+M+"*((?:-\\d)?\\d*)"+M+"*\\)|)(?=[^-]|$)","i")},Y=/HTML$/i,Q=/^(?:input|select|textarea|button)$/i,J=/^h\d$/i,K=/^[^{]+\{\s*\[native \w/,Z=/^(?:#([\w-]+)|(\w+)|\.([\w-]+))$/,ee=/[+~]/,te=new RegExp("\\\\[\\da-fA-F]{1,6}"+M+"?|\\\\([^\\r\\n\\f])","g"),ne=function(e,t){var n="0x"+e.slice(1)-65536;return t||(n<0?String.fromCharCode(n+65536):String.fromCharCode(n>>10|55296,1023&n|56320))},re=/([\0-\x1f\x7f]|^-?\d)|^-$|[^\0-\x1f\x7f-\uFFFF\w-]/g,ie=function(e,t){return t?"\0"===e?"\ufffd":e.slice(0,-1)+"\\"+e.charCodeAt(e.length-1).toString(16)+" ":"\\"+e},oe=function(){T()},ae=be(function(e){return!0===e.disabled&&"fieldset"===e.nodeName.toLowerCase()},{dir:"parentNode",next:"legend"});try{H.apply(t=O.call(p.childNodes),p.childNodes),t[p.childNodes.length].nodeType}catch(e){H={apply:t.length?function(e,t){L.apply(e,O.call(t))}:function(e,t){var n=e.length,r=0;while(e[n++]=t[r++]);e.length=n-1}}}function se(t,e,n,r){var i,o,a,s,u,l,c,f=e&&e.ownerDocument,p=e?e.nodeType:9;if(n=n||[],"string"!=typeof t||!t||1!==p&&9!==p&&11!==p)return n;if(!r&&(T(e),e=e||C,E)){if(11!==p&&(u=Z.exec(t)))if(i=u[1]){if(9===p){if(!(a=e.getElementById(i)))return n;if(a.id===i)return n.push(a),n}else if(f&&(a=f.getElementById(i))&&y(e,a)&&a.id===i)return n.push(a),n}else{if(u[2])return H.apply(n,e.getElementsByTagName(t)),n;if((i=u[3])&&d.getElementsByClassName&&e.getElementsByClassName)return H.apply(n,e.getElementsByClassName(i)),n}if(d.qsa&&!N[t+" "]&&(!v||!v.test(t))&&(1!==p||"object"!==e.nodeName.toLowerCase())){if(c=t,f=e,1===p&&(U.test(t)||z.test(t))){(f=ee.test(t)&&ye(e.parentNode)||e)===e&&d.scope||((s=e.getAttribute("id"))?s=s.replace(re,ie):e.setAttribute("id",s=S)),o=(l=h(t)).length;while(o--)l[o]=(s?"#"+s:":scope")+" "+xe(l[o]);c=l.join(",")}try{return H.apply(n,f.querySelectorAll(c)),n}catch(e){N(t,!0)}finally{s===S&&e.removeAttribute("id")}}}return g(t.replace($,"$1"),e,n,r)}function ue(){var r=[];return function e(t,n){return r.push(t+" ")>b.cacheLength&&delete e[r.shift()],e[t+" "]=n}}function le(e){return e[S]=!0,e}function ce(e){var t=C.createElement("fieldset");try{return!!e(t)}catch(e){return!1}finally{t.parentNode&&t.parentNode.removeChild(t),t=null}}function fe(e,t){var n=e.split("|"),r=n.length;while(r--)b.attrHandle[n[r]]=t}function pe(e,t){var n=t&&e,r=n&&1===e.nodeType&&1===t.nodeType&&e.sourceIndex-t.sourceIndex;if(r)return r;if(n)while(n=n.nextSibling)if(n===t)return-1;return e?1:-1}function de(t){return function(e){return"input"===e.nodeName.toLowerCase()&&e.type===t}}function he(n){return function(e){var t=e.nodeName.toLowerCase();return("input"===t||"button"===t)&&e.type===n}}function ge(t){return function(e){return"form"in e?e.parentNode&&!1===e.disabled?"label"in e?"label"in e.parentNode?e.parentNode.disabled===t:e.disabled===t:e.isDisabled===t||e.isDisabled!==!t&&ae(e)===t:e.disabled===t:"label"in e&&e.disabled===t}}function ve(a){return le(function(o){return o=+o,le(function(e,t){var n,r=a([],e.length,o),i=r.length;while(i--)e[n=r[i]]&&(e[n]=!(t[n]=e[n]))})})}function ye(e){return e&&"undefined"!=typeof e.getElementsByTagName&&e}for(e in d=se.support={},i=se.isXML=function(e){var t=e.namespaceURI,n=(e.ownerDocument||e).documentElement;return!Y.test(t||n&&n.nodeName||"HTML")},T=se.setDocument=function(e){var t,n,r=e?e.ownerDocument||e:p;return r!=C&&9===r.nodeType&&r.documentElement&&(a=(C=r).documentElement,E=!i(C),p!=C&&(n=C.defaultView)&&n.top!==n&&(n.addEventListener?n.addEventListener("unload",oe,!1):n.attachEvent&&n.attachEvent("onunload",oe)),d.scope=ce(function(e){return a.appendChild(e).appendChild(C.createElement("div")),"undefined"!=typeof e.querySelectorAll&&!e.querySelectorAll(":scope fieldset div").length}),d.attributes=ce(function(e){return e.className="i",!e.getAttribute("className")}),d.getElementsByTagName=ce(function(e){return e.appendChild(C.createComment("")),!e.getElementsByTagName("*").length}),d.getElementsByClassName=K.test(C.getElementsByClassName),d.getById=ce(function(e){return a.appendChild(e).id=S,!C.getElementsByName||!C.getElementsByName(S).length}),d.getById?(b.filter.ID=function(e){var t=e.replace(te,ne);return function(e){return e.getAttribute("id")===t}},b.find.ID=function(e,t){if("undefined"!=typeof t.getElementById&&E){var n=t.getElementById(e);return n?[n]:[]}}):(b.filter.ID=function(e){var n=e.replace(te,ne);return function(e){var t="undefined"!=typeof e.getAttributeNode&&e.getAttributeNode("id");return t&&t.value===n}},b.find.ID=function(e,t){if("undefined"!=typeof t.getElementById&&E){var n,r,i,o=t.getElementById(e);if(o){if((n=o.getAttributeNode("id"))&&n.value===e)return[o];i=t.getElementsByName(e),r=0;while(o=i[r++])if((n=o.getAttributeNode("id"))&&n.value===e)return[o]}return[]}}),b.find.TAG=d.getElementsByTagName?function(e,t){return"undefined"!=typeof t.getElementsByTagName?t.getElementsByTagName(e):d.qsa?t.querySelectorAll(e):void 0}:function(e,t){var n,r=[],i=0,o=t.getElementsByTagName(e);if("*"===e){while(n=o[i++])1===n.nodeType&&r.push(n);return r}return o},b.find.CLASS=d.getElementsByClassName&&function(e,t){if("undefined"!=typeof t.getElementsByClassName&&E)return t.getElementsByClassName(e)},s=[],v=[],(d.qsa=K.test(C.querySelectorAll))&&(ce(function(e){var t;a.appendChild(e).innerHTML=" ",e.querySelectorAll("[msallowcapture^='']").length&&v.push("[*^$]="+M+"*(?:''|\"\")"),e.querySelectorAll("[selected]").length||v.push("\\["+M+"*(?:value|"+R+")"),e.querySelectorAll("[id~="+S+"-]").length||v.push("~="),(t=C.createElement("input")).setAttribute("name",""),e.appendChild(t),e.querySelectorAll("[name='']").length||v.push("\\["+M+"*name"+M+"*="+M+"*(?:''|\"\")"),e.querySelectorAll(":checked").length||v.push(":checked"),e.querySelectorAll("a#"+S+"+*").length||v.push(".#.+[+~]"),e.querySelectorAll("\\\f"),v.push("[\\r\\n\\f]")}),ce(function(e){e.innerHTML=" ";var t=C.createElement("input");t.setAttribute("type","hidden"),e.appendChild(t).setAttribute("name","D"),e.querySelectorAll("[name=d]").length&&v.push("name"+M+"*[*^$|!~]?="),2!==e.querySelectorAll(":enabled").length&&v.push(":enabled",":disabled"),a.appendChild(e).disabled=!0,2!==e.querySelectorAll(":disabled").length&&v.push(":enabled",":disabled"),e.querySelectorAll("*,:x"),v.push(",.*:")})),(d.matchesSelector=K.test(c=a.matches||a.webkitMatchesSelector||a.mozMatchesSelector||a.oMatchesSelector||a.msMatchesSelector))&&ce(function(e){d.disconnectedMatch=c.call(e,"*"),c.call(e,"[s!='']:x"),s.push("!=",F)}),v=v.length&&new RegExp(v.join("|")),s=s.length&&new RegExp(s.join("|")),t=K.test(a.compareDocumentPosition),y=t||K.test(a.contains)?function(e,t){var n=9===e.nodeType?e.documentElement:e,r=t&&t.parentNode;return e===r||!(!r||1!==r.nodeType||!(n.contains?n.contains(r):e.compareDocumentPosition&&16&e.compareDocumentPosition(r)))}:function(e,t){if(t)while(t=t.parentNode)if(t===e)return!0;return!1},D=t?function(e,t){if(e===t)return l=!0,0;var n=!e.compareDocumentPosition-!t.compareDocumentPosition;return n||(1&(n=(e.ownerDocument||e)==(t.ownerDocument||t)?e.compareDocumentPosition(t):1)||!d.sortDetached&&t.compareDocumentPosition(e)===n?e==C||e.ownerDocument==p&&y(p,e)?-1:t==C||t.ownerDocument==p&&y(p,t)?1:u?P(u,e)-P(u,t):0:4&n?-1:1)}:function(e,t){if(e===t)return l=!0,0;var n,r=0,i=e.parentNode,o=t.parentNode,a=[e],s=[t];if(!i||!o)return e==C?-1:t==C?1:i?-1:o?1:u?P(u,e)-P(u,t):0;if(i===o)return pe(e,t);n=e;while(n=n.parentNode)a.unshift(n);n=t;while(n=n.parentNode)s.unshift(n);while(a[r]===s[r])r++;return r?pe(a[r],s[r]):a[r]==p?-1:s[r]==p?1:0}),C},se.matches=function(e,t){return se(e,null,null,t)},se.matchesSelector=function(e,t){if(T(e),d.matchesSelector&&E&&!N[t+" "]&&(!s||!s.test(t))&&(!v||!v.test(t)))try{var n=c.call(e,t);if(n||d.disconnectedMatch||e.document&&11!==e.document.nodeType)return n}catch(e){N(t,!0)}return 0":{dir:"parentNode",first:!0}," ":{dir:"parentNode"},"+":{dir:"previousSibling",first:!0},"~":{dir:"previousSibling"}},preFilter:{ATTR:function(e){return e[1]=e[1].replace(te,ne),e[3]=(e[3]||e[4]||e[5]||"").replace(te,ne),"~="===e[2]&&(e[3]=" "+e[3]+" "),e.slice(0,4)},CHILD:function(e){return e[1]=e[1].toLowerCase(),"nth"===e[1].slice(0,3)?(e[3]||se.error(e[0]),e[4]=+(e[4]?e[5]+(e[6]||1):2*("even"===e[3]||"odd"===e[3])),e[5]=+(e[7]+e[8]||"odd"===e[3])):e[3]&&se.error(e[0]),e},PSEUDO:function(e){var t,n=!e[6]&&e[2];return G.CHILD.test(e[0])?null:(e[3]?e[2]=e[4]||e[5]||"":n&&X.test(n)&&(t=h(n,!0))&&(t=n.indexOf(")",n.length-t)-n.length)&&(e[0]=e[0].slice(0,t),e[2]=n.slice(0,t)),e.slice(0,3))}},filter:{TAG:function(e){var t=e.replace(te,ne).toLowerCase();return"*"===e?function(){return!0}:function(e){return e.nodeName&&e.nodeName.toLowerCase()===t}},CLASS:function(e){var t=m[e+" "];return t||(t=new RegExp("(^|"+M+")"+e+"("+M+"|$)"))&&m(e,function(e){return t.test("string"==typeof e.className&&e.className||"undefined"!=typeof e.getAttribute&&e.getAttribute("class")||"")})},ATTR:function(n,r,i){return function(e){var t=se.attr(e,n);return null==t?"!="===r:!r||(t+="","="===r?t===i:"!="===r?t!==i:"^="===r?i&&0===t.indexOf(i):"*="===r?i&&-1:\x20\t\r\n\f]*)[\x20\t\r\n\f]*\/?>(?:<\/\1>|)$/i;function D(e,n,r){return m(n)?S.grep(e,function(e,t){return!!n.call(e,t,e)!==r}):n.nodeType?S.grep(e,function(e){return e===n!==r}):"string"!=typeof n?S.grep(e,function(e){return-1)[^>]*|#([\w-]+))$/;(S.fn.init=function(e,t,n){var r,i;if(!e)return this;if(n=n||j,"string"==typeof e){if(!(r="<"===e[0]&&">"===e[e.length-1]&&3<=e.length?[null,e,null]:q.exec(e))||!r[1]&&t)return!t||t.jquery?(t||n).find(e):this.constructor(t).find(e);if(r[1]){if(t=t instanceof S?t[0]:t,S.merge(this,S.parseHTML(r[1],t&&t.nodeType?t.ownerDocument||t:E,!0)),N.test(r[1])&&S.isPlainObject(t))for(r in t)m(this[r])?this[r](t[r]):this.attr(r,t[r]);return this}return(i=E.getElementById(r[2]))&&(this[0]=i,this.length=1),this}return e.nodeType?(this[0]=e,this.length=1,this):m(e)?void 0!==n.ready?n.ready(e):e(S):S.makeArray(e,this)}).prototype=S.fn,j=S(E);var L=/^(?:parents|prev(?:Until|All))/,H={children:!0,contents:!0,next:!0,prev:!0};function O(e,t){while((e=e[t])&&1!==e.nodeType);return e}S.fn.extend({has:function(e){var t=S(e,this),n=t.length;return this.filter(function(){for(var e=0;e\x20\t\r\n\f]*)/i,he=/^$|^module$|\/(?:java|ecma)script/i;ce=E.createDocumentFragment().appendChild(E.createElement("div")),(fe=E.createElement("input")).setAttribute("type","radio"),fe.setAttribute("checked","checked"),fe.setAttribute("name","t"),ce.appendChild(fe),y.checkClone=ce.cloneNode(!0).cloneNode(!0).lastChild.checked,ce.innerHTML="",y.noCloneChecked=!!ce.cloneNode(!0).lastChild.defaultValue,ce.innerHTML=" ",y.option=!!ce.lastChild;var ge={thead:[1,""],col:[2,""],tr:[2,""],td:[3,""],_default:[0,"",""]};function ve(e,t){var n;return n="undefined"!=typeof e.getElementsByTagName?e.getElementsByTagName(t||"*"):"undefined"!=typeof e.querySelectorAll?e.querySelectorAll(t||"*"):[],void 0===t||t&&A(e,t)?S.merge([e],n):n}function ye(e,t){for(var n=0,r=e.length;n",""]);var me=/<|?\w+;/;function xe(e,t,n,r,i){for(var o,a,s,u,l,c,f=t.createDocumentFragment(),p=[],d=0,h=e.length;d\s*$/g;function qe(e,t){return A(e,"table")&&A(11!==t.nodeType?t:t.firstChild,"tr")&&S(e).children("tbody")[0]||e}function Le(e){return e.type=(null!==e.getAttribute("type"))+"/"+e.type,e}function He(e){return"true/"===(e.type||"").slice(0,5)?e.type=e.type.slice(5):e.removeAttribute("type"),e}function Oe(e,t){var n,r,i,o,a,s;if(1===t.nodeType){if(Y.hasData(e)&&(s=Y.get(e).events))for(i in Y.remove(t,"handle events"),s)for(n=0,r=s[i].length;n").attr(n.scriptAttrs||{}).prop({charset:n.scriptCharset,src:n.url}).on("load error",i=function(e){r.remove(),i=null,e&&t("error"===e.type?404:200,e.type)}),E.head.appendChild(r[0])},abort:function(){i&&i()}}});var Ut,Xt=[],Vt=/(=)\?(?=&|$)|\?\?/;S.ajaxSetup({jsonp:"callback",jsonpCallback:function(){var e=Xt.pop()||S.expando+"_"+Ct.guid++;return this[e]=!0,e}}),S.ajaxPrefilter("json jsonp",function(e,t,n){var r,i,o,a=!1!==e.jsonp&&(Vt.test(e.url)?"url":"string"==typeof e.data&&0===(e.contentType||"").indexOf("application/x-www-form-urlencoded")&&Vt.test(e.data)&&"data");if(a||"jsonp"===e.dataTypes[0])return r=e.jsonpCallback=m(e.jsonpCallback)?e.jsonpCallback():e.jsonpCallback,a?e[a]=e[a].replace(Vt,"$1"+r):!1!==e.jsonp&&(e.url+=(Et.test(e.url)?"&":"?")+e.jsonp+"="+r),e.converters["script json"]=function(){return o||S.error(r+" was not called"),o[0]},e.dataTypes[0]="json",i=C[r],C[r]=function(){o=arguments},n.always(function(){void 0===i?S(C).removeProp(r):C[r]=i,e[r]&&(e.jsonpCallback=t.jsonpCallback,Xt.push(r)),o&&m(i)&&i(o[0]),o=i=void 0}),"script"}),y.createHTMLDocument=((Ut=E.implementation.createHTMLDocument("").body).innerHTML="",2===Ut.childNodes.length),S.parseHTML=function(e,t,n){return"string"!=typeof e?[]:("boolean"==typeof t&&(n=t,t=!1),t||(y.createHTMLDocument?((r=(t=E.implementation.createHTMLDocument("")).createElement("base")).href=E.location.href,t.head.appendChild(r)):t=E),o=!n&&[],(i=N.exec(e))?[t.createElement(i[1])]:(i=xe([e],t,o),o&&o.length&&S(o).remove(),S.merge([],i.childNodes)));var r,i,o},S.fn.load=function(e,t,n){var r,i,o,a=this,s=e.indexOf(" ");return-1").append(S.parseHTML(e)).find(r):e)}).always(n&&function(e,t){a.each(function(){n.apply(this,o||[e.responseText,t,e])})}),this},S.expr.pseudos.animated=function(t){return S.grep(S.timers,function(e){return t===e.elem}).length},S.offset={setOffset:function(e,t,n){var r,i,o,a,s,u,l=S.css(e,"position"),c=S(e),f={};"static"===l&&(e.style.position="relative"),s=c.offset(),o=S.css(e,"top"),u=S.css(e,"left"),("absolute"===l||"fixed"===l)&&-1<(o+u).indexOf("auto")?(a=(r=c.position()).top,i=r.left):(a=parseFloat(o)||0,i=parseFloat(u)||0),m(t)&&(t=t.call(e,n,S.extend({},s))),null!=t.top&&(f.top=t.top-s.top+a),null!=t.left&&(f.left=t.left-s.left+i),"using"in t?t.using.call(e,f):("number"==typeof f.top&&(f.top+="px"),"number"==typeof f.left&&(f.left+="px"),c.css(f))}},S.fn.extend({offset:function(t){if(arguments.length)return void 0===t?this:this.each(function(e){S.offset.setOffset(this,t,e)});var e,n,r=this[0];return r?r.getClientRects().length?(e=r.getBoundingClientRect(),n=r.ownerDocument.defaultView,{top:e.top+n.pageYOffset,left:e.left+n.pageXOffset}):{top:0,left:0}:void 0},position:function(){if(this[0]){var e,t,n,r=this[0],i={top:0,left:0};if("fixed"===S.css(r,"position"))t=r.getBoundingClientRect();else{t=this.offset(),n=r.ownerDocument,e=r.offsetParent||n.documentElement;while(e&&(e===n.body||e===n.documentElement)&&"static"===S.css(e,"position"))e=e.parentNode;e&&e!==r&&1===e.nodeType&&((i=S(e).offset()).top+=S.css(e,"borderTopWidth",!0),i.left+=S.css(e,"borderLeftWidth",!0))}return{top:t.top-i.top-S.css(r,"marginTop",!0),left:t.left-i.left-S.css(r,"marginLeft",!0)}}},offsetParent:function(){return this.map(function(){var e=this.offsetParent;while(e&&"static"===S.css(e,"position"))e=e.offsetParent;return e||re})}}),S.each({scrollLeft:"pageXOffset",scrollTop:"pageYOffset"},function(t,i){var o="pageYOffset"===i;S.fn[t]=function(e){return $(this,function(e,t,n){var r;if(x(e)?r=e:9===e.nodeType&&(r=e.defaultView),void 0===n)return r?r[i]:e[t];r?r.scrollTo(o?r.pageXOffset:n,o?n:r.pageYOffset):e[t]=n},t,e,arguments.length)}}),S.each(["top","left"],function(e,n){S.cssHooks[n]=$e(y.pixelPosition,function(e,t){if(t)return t=Be(e,n),Me.test(t)?S(e).position()[n]+"px":t})}),S.each({Height:"height",Width:"width"},function(a,s){S.each({padding:"inner"+a,content:s,"":"outer"+a},function(r,o){S.fn[o]=function(e,t){var n=arguments.length&&(r||"boolean"!=typeof e),i=r||(!0===e||!0===t?"margin":"border");return $(this,function(e,t,n){var r;return x(e)?0===o.indexOf("outer")?e["inner"+a]:e.document.documentElement["client"+a]:9===e.nodeType?(r=e.documentElement,Math.max(e.body["scroll"+a],r["scroll"+a],e.body["offset"+a],r["offset"+a],r["client"+a])):void 0===n?S.css(e,t,i):S.style(e,t,n,i)},s,n?e:void 0,n)}})}),S.each(["ajaxStart","ajaxStop","ajaxComplete","ajaxError","ajaxSuccess","ajaxSend"],function(e,t){S.fn[t]=function(e){return this.on(t,e)}}),S.fn.extend({bind:function(e,t,n){return this.on(e,null,t,n)},unbind:function(e,t){return this.off(e,null,t)},delegate:function(e,t,n,r){return this.on(t,e,n,r)},undelegate:function(e,t,n){return 1===arguments.length?this.off(e,"**"):this.off(t,e||"**",n)},hover:function(e,t){return this.mouseenter(e).mouseleave(t||e)}}),S.each("blur focus focusin focusout resize scroll click dblclick mousedown mouseup mousemove mouseover mouseout mouseenter mouseleave change select submit keydown keypress keyup contextmenu".split(" "),function(e,n){S.fn[n]=function(e,t){return 0+~]|"+ge+")"+ge+"*"),x=new RegExp(ge+"|>"),j=new RegExp(g),A=new RegExp("^"+t+"$"),D={ID:new RegExp("^#("+t+")"),CLASS:new RegExp("^\\.("+t+")"),TAG:new RegExp("^("+t+"|[*])"),ATTR:new RegExp("^"+p),PSEUDO:new RegExp("^"+g),CHILD:new RegExp("^:(only|first|last|nth|nth-last)-(child|of-type)(?:\\("+ge+"*(even|odd|(([+-]|)(\\d*)n|)"+ge+"*(?:([+-]|)"+ge+"*(\\d+)|))"+ge+"*\\)|)","i"),bool:new RegExp("^(?:"+f+")$","i"),needsContext:new RegExp("^"+ge+"*[>+~]|:(even|odd|eq|gt|lt|nth|first|last)(?:\\("+ge+"*((?:-\\d)?\\d*)"+ge+"*\\)|)(?=[^-]|$)","i")},N=/^(?:input|select|textarea|button)$/i,q=/^h\d$/i,L=/^(?:#([\w-]+)|(\w+)|\.([\w-]+))$/,H=/[+~]/,O=new RegExp("\\\\[\\da-fA-F]{1,6}"+ge+"?|\\\\([^\\r\\n\\f])","g"),P=function(e,t){var n="0x"+e.slice(1)-65536;return t||(n<0?String.fromCharCode(n+65536):String.fromCharCode(n>>10|55296,1023&n|56320))},M=function(){V()},R=J(function(e){return!0===e.disabled&&fe(e,"fieldset")},{dir:"parentNode",next:"legend"});try{k.apply(oe=ae.call(ye.childNodes),ye.childNodes),oe[ye.childNodes.length].nodeType}catch(e){k={apply:function(e,t){me.apply(e,ae.call(t))},call:function(e){me.apply(e,ae.call(arguments,1))}}}function I(t,e,n,r){var i,o,a,s,u,l,c,f=e&&e.ownerDocument,p=e?e.nodeType:9;if(n=n||[],"string"!=typeof t||!t||1!==p&&9!==p&&11!==p)return n;if(!r&&(V(e),e=e||T,C)){if(11!==p&&(u=L.exec(t)))if(i=u[1]){if(9===p){if(!(a=e.getElementById(i)))return n;if(a.id===i)return k.call(n,a),n}else if(f&&(a=f.getElementById(i))&&I.contains(e,a)&&a.id===i)return k.call(n,a),n}else{if(u[2])return k.apply(n,e.getElementsByTagName(t)),n;if((i=u[3])&&e.getElementsByClassName)return k.apply(n,e.getElementsByClassName(i)),n}if(!(h[t+" "]||d&&d.test(t))){if(c=t,f=e,1===p&&(x.test(t)||m.test(t))){(f=H.test(t)&&U(e.parentNode)||e)==e&&le.scope||((s=e.getAttribute("id"))?s=ce.escapeSelector(s):e.setAttribute("id",s=S)),o=(l=Y(t)).length;while(o--)l[o]=(s?"#"+s:":scope")+" "+Q(l[o]);c=l.join(",")}try{return k.apply(n,f.querySelectorAll(c)),n}catch(e){h(t,!0)}finally{s===S&&e.removeAttribute("id")}}}return re(t.replace(ve,"$1"),e,n,r)}function W(){var r=[];return function e(t,n){return r.push(t+" ")>b.cacheLength&&delete e[r.shift()],e[t+" "]=n}}function F(e){return e[S]=!0,e}function $(e){var t=T.createElement("fieldset");try{return!!e(t)}catch(e){return!1}finally{t.parentNode&&t.parentNode.removeChild(t),t=null}}function B(t){return function(e){return fe(e,"input")&&e.type===t}}function _(t){return function(e){return(fe(e,"input")||fe(e,"button"))&&e.type===t}}function z(t){return function(e){return"form"in e?e.parentNode&&!1===e.disabled?"label"in e?"label"in e.parentNode?e.parentNode.disabled===t:e.disabled===t:e.isDisabled===t||e.isDisabled!==!t&&R(e)===t:e.disabled===t:"label"in e&&e.disabled===t}}function X(a){return F(function(o){return o=+o,F(function(e,t){var n,r=a([],e.length,o),i=r.length;while(i--)e[n=r[i]]&&(e[n]=!(t[n]=e[n]))})})}function U(e){return e&&"undefined"!=typeof e.getElementsByTagName&&e}function V(e){var t,n=e?e.ownerDocument||e:ye;return n!=T&&9===n.nodeType&&n.documentElement&&(r=(T=n).documentElement,C=!ce.isXMLDoc(T),i=r.matches||r.webkitMatchesSelector||r.msMatchesSelector,r.msMatchesSelector&&ye!=T&&(t=T.defaultView)&&t.top!==t&&t.addEventListener("unload",M),le.getById=$(function(e){return r.appendChild(e).id=ce.expando,!T.getElementsByName||!T.getElementsByName(ce.expando).length}),le.disconnectedMatch=$(function(e){return i.call(e,"*")}),le.scope=$(function(){return T.querySelectorAll(":scope")}),le.cssHas=$(function(){try{return T.querySelector(":has(*,:jqfake)"),!1}catch(e){return!0}}),le.getById?(b.filter.ID=function(e){var t=e.replace(O,P);return function(e){return e.getAttribute("id")===t}},b.find.ID=function(e,t){if("undefined"!=typeof t.getElementById&&C){var n=t.getElementById(e);return n?[n]:[]}}):(b.filter.ID=function(e){var n=e.replace(O,P);return function(e){var t="undefined"!=typeof e.getAttributeNode&&e.getAttributeNode("id");return t&&t.value===n}},b.find.ID=function(e,t){if("undefined"!=typeof t.getElementById&&C){var n,r,i,o=t.getElementById(e);if(o){if((n=o.getAttributeNode("id"))&&n.value===e)return[o];i=t.getElementsByName(e),r=0;while(o=i[r++])if((n=o.getAttributeNode("id"))&&n.value===e)return[o]}return[]}}),b.find.TAG=function(e,t){return"undefined"!=typeof t.getElementsByTagName?t.getElementsByTagName(e):t.querySelectorAll(e)},b.find.CLASS=function(e,t){if("undefined"!=typeof t.getElementsByClassName&&C)return t.getElementsByClassName(e)},d=[],$(function(e){var t;r.appendChild(e).innerHTML=" ",e.querySelectorAll("[selected]").length||d.push("\\["+ge+"*(?:value|"+f+")"),e.querySelectorAll("[id~="+S+"-]").length||d.push("~="),e.querySelectorAll("a#"+S+"+*").length||d.push(".#.+[+~]"),e.querySelectorAll(":checked").length||d.push(":checked"),(t=T.createElement("input")).setAttribute("type","hidden"),e.appendChild(t).setAttribute("name","D"),r.appendChild(e).disabled=!0,2!==e.querySelectorAll(":disabled").length&&d.push(":enabled",":disabled"),(t=T.createElement("input")).setAttribute("name",""),e.appendChild(t),e.querySelectorAll("[name='']").length||d.push("\\["+ge+"*name"+ge+"*="+ge+"*(?:''|\"\")")}),le.cssHas||d.push(":has"),d=d.length&&new RegExp(d.join("|")),l=function(e,t){if(e===t)return a=!0,0;var n=!e.compareDocumentPosition-!t.compareDocumentPosition;return n||(1&(n=(e.ownerDocument||e)==(t.ownerDocument||t)?e.compareDocumentPosition(t):1)||!le.sortDetached&&t.compareDocumentPosition(e)===n?e===T||e.ownerDocument==ye&&I.contains(ye,e)?-1:t===T||t.ownerDocument==ye&&I.contains(ye,t)?1:o?se.call(o,e)-se.call(o,t):0:4&n?-1:1)}),T}for(e in I.matches=function(e,t){return I(e,null,null,t)},I.matchesSelector=function(e,t){if(V(e),C&&!h[t+" "]&&(!d||!d.test(t)))try{var n=i.call(e,t);if(n||le.disconnectedMatch||e.document&&11!==e.document.nodeType)return n}catch(e){h(t,!0)}return 0":{dir:"parentNode",first:!0}," ":{dir:"parentNode"},"+":{dir:"previousSibling",first:!0},"~":{dir:"previousSibling"}},preFilter:{ATTR:function(e){return e[1]=e[1].replace(O,P),e[3]=(e[3]||e[4]||e[5]||"").replace(O,P),"~="===e[2]&&(e[3]=" "+e[3]+" "),e.slice(0,4)},CHILD:function(e){return e[1]=e[1].toLowerCase(),"nth"===e[1].slice(0,3)?(e[3]||I.error(e[0]),e[4]=+(e[4]?e[5]+(e[6]||1):2*("even"===e[3]||"odd"===e[3])),e[5]=+(e[7]+e[8]||"odd"===e[3])):e[3]&&I.error(e[0]),e},PSEUDO:function(e){var t,n=!e[6]&&e[2];return D.CHILD.test(e[0])?null:(e[3]?e[2]=e[4]||e[5]||"":n&&j.test(n)&&(t=Y(n,!0))&&(t=n.indexOf(")",n.length-t)-n.length)&&(e[0]=e[0].slice(0,t),e[2]=n.slice(0,t)),e.slice(0,3))}},filter:{TAG:function(e){var t=e.replace(O,P).toLowerCase();return"*"===e?function(){return!0}:function(e){return fe(e,t)}},CLASS:function(e){var t=s[e+" "];return t||(t=new RegExp("(^|"+ge+")"+e+"("+ge+"|$)"))&&s(e,function(e){return t.test("string"==typeof e.className&&e.className||"undefined"!=typeof e.getAttribute&&e.getAttribute("class")||"")})},ATTR:function(n,r,i){return function(e){var t=I.attr(e,n);return null==t?"!="===r:!r||(t+="","="===r?t===i:"!="===r?t!==i:"^="===r?i&&0===t.indexOf(i):"*="===r?i&&-1:\x20\t\r\n\f]*)[\x20\t\r\n\f]*\/?>(?:<\/\1>|)$/i;function T(e,n,r){return v(n)?ce.grep(e,function(e,t){return!!n.call(e,t,e)!==r}):n.nodeType?ce.grep(e,function(e){return e===n!==r}):"string"!=typeof n?ce.grep(e,function(e){return-1)[^>]*|#([\w-]+))$/;(ce.fn.init=function(e,t,n){var r,i;if(!e)return this;if(n=n||k,"string"==typeof e){if(!(r="<"===e[0]&&">"===e[e.length-1]&&3<=e.length?[null,e,null]:S.exec(e))||!r[1]&&t)return!t||t.jquery?(t||n).find(e):this.constructor(t).find(e);if(r[1]){if(t=t instanceof ce?t[0]:t,ce.merge(this,ce.parseHTML(r[1],t&&t.nodeType?t.ownerDocument||t:C,!0)),w.test(r[1])&&ce.isPlainObject(t))for(r in t)v(this[r])?this[r](t[r]):this.attr(r,t[r]);return this}return(i=C.getElementById(r[2]))&&(this[0]=i,this.length=1),this}return e.nodeType?(this[0]=e,this.length=1,this):v(e)?void 0!==n.ready?n.ready(e):e(ce):ce.makeArray(e,this)}).prototype=ce.fn,k=ce(C);var E=/^(?:parents|prev(?:Until|All))/,j={children:!0,contents:!0,next:!0,prev:!0};function A(e,t){while((e=e[t])&&1!==e.nodeType);return e}ce.fn.extend({has:function(e){var t=ce(e,this),n=t.length;return this.filter(function(){for(var e=0;e\x20\t\r\n\f]*)/i,Ce=/^$|^module$|\/(?:java|ecma)script/i;xe=C.createDocumentFragment().appendChild(C.createElement("div")),(be=C.createElement("input")).setAttribute("type","radio"),be.setAttribute("checked","checked"),be.setAttribute("name","t"),xe.appendChild(be),le.checkClone=xe.cloneNode(!0).cloneNode(!0).lastChild.checked,xe.innerHTML="",le.noCloneChecked=!!xe.cloneNode(!0).lastChild.defaultValue,xe.innerHTML=" ",le.option=!!xe.lastChild;var ke={thead:[1,""],col:[2,""],tr:[2,""],td:[3,""],_default:[0,"",""]};function Se(e,t){var n;return n="undefined"!=typeof e.getElementsByTagName?e.getElementsByTagName(t||"*"):"undefined"!=typeof e.querySelectorAll?e.querySelectorAll(t||"*"):[],void 0===t||t&&fe(e,t)?ce.merge([e],n):n}function Ee(e,t){for(var n=0,r=e.length;n",""]);var je=/<|?\w+;/;function Ae(e,t,n,r,i){for(var o,a,s,u,l,c,f=t.createDocumentFragment(),p=[],d=0,h=e.length;d\s*$/g;function Re(e,t){return fe(e,"table")&&fe(11!==t.nodeType?t:t.firstChild,"tr")&&ce(e).children("tbody")[0]||e}function Ie(e){return e.type=(null!==e.getAttribute("type"))+"/"+e.type,e}function We(e){return"true/"===(e.type||"").slice(0,5)?e.type=e.type.slice(5):e.removeAttribute("type"),e}function Fe(e,t){var n,r,i,o,a,s;if(1===t.nodeType){if(_.hasData(e)&&(s=_.get(e).events))for(i in _.remove(t,"handle events"),s)for(n=0,r=s[i].length;n").attr(n.scriptAttrs||{}).prop({charset:n.scriptCharset,src:n.url}).on("load error",i=function(e){r.remove(),i=null,e&&t("error"===e.type?404:200,e.type)}),C.head.appendChild(r[0])},abort:function(){i&&i()}}});var Jt,Kt=[],Zt=/(=)\?(?=&|$)|\?\?/;ce.ajaxSetup({jsonp:"callback",jsonpCallback:function(){var e=Kt.pop()||ce.expando+"_"+jt.guid++;return this[e]=!0,e}}),ce.ajaxPrefilter("json jsonp",function(e,t,n){var r,i,o,a=!1!==e.jsonp&&(Zt.test(e.url)?"url":"string"==typeof e.data&&0===(e.contentType||"").indexOf("application/x-www-form-urlencoded")&&Zt.test(e.data)&&"data");if(a||"jsonp"===e.dataTypes[0])return r=e.jsonpCallback=v(e.jsonpCallback)?e.jsonpCallback():e.jsonpCallback,a?e[a]=e[a].replace(Zt,"$1"+r):!1!==e.jsonp&&(e.url+=(At.test(e.url)?"&":"?")+e.jsonp+"="+r),e.converters["script json"]=function(){return o||ce.error(r+" was not called"),o[0]},e.dataTypes[0]="json",i=ie[r],ie[r]=function(){o=arguments},n.always(function(){void 0===i?ce(ie).removeProp(r):ie[r]=i,e[r]&&(e.jsonpCallback=t.jsonpCallback,Kt.push(r)),o&&v(i)&&i(o[0]),o=i=void 0}),"script"}),le.createHTMLDocument=((Jt=C.implementation.createHTMLDocument("").body).innerHTML="",2===Jt.childNodes.length),ce.parseHTML=function(e,t,n){return"string"!=typeof e?[]:("boolean"==typeof t&&(n=t,t=!1),t||(le.createHTMLDocument?((r=(t=C.implementation.createHTMLDocument("")).createElement("base")).href=C.location.href,t.head.appendChild(r)):t=C),o=!n&&[],(i=w.exec(e))?[t.createElement(i[1])]:(i=Ae([e],t,o),o&&o.length&&ce(o).remove(),ce.merge([],i.childNodes)));var r,i,o},ce.fn.load=function(e,t,n){var r,i,o,a=this,s=e.indexOf(" ");return-1").append(ce.parseHTML(e)).find(r):e)}).always(n&&function(e,t){a.each(function(){n.apply(this,o||[e.responseText,t,e])})}),this},ce.expr.pseudos.animated=function(t){return ce.grep(ce.timers,function(e){return t===e.elem}).length},ce.offset={setOffset:function(e,t,n){var r,i,o,a,s,u,l=ce.css(e,"position"),c=ce(e),f={};"static"===l&&(e.style.position="relative"),s=c.offset(),o=ce.css(e,"top"),u=ce.css(e,"left"),("absolute"===l||"fixed"===l)&&-1<(o+u).indexOf("auto")?(a=(r=c.position()).top,i=r.left):(a=parseFloat(o)||0,i=parseFloat(u)||0),v(t)&&(t=t.call(e,n,ce.extend({},s))),null!=t.top&&(f.top=t.top-s.top+a),null!=t.left&&(f.left=t.left-s.left+i),"using"in t?t.using.call(e,f):c.css(f)}},ce.fn.extend({offset:function(t){if(arguments.length)return void 0===t?this:this.each(function(e){ce.offset.setOffset(this,t,e)});var e,n,r=this[0];return r?r.getClientRects().length?(e=r.getBoundingClientRect(),n=r.ownerDocument.defaultView,{top:e.top+n.pageYOffset,left:e.left+n.pageXOffset}):{top:0,left:0}:void 0},position:function(){if(this[0]){var e,t,n,r=this[0],i={top:0,left:0};if("fixed"===ce.css(r,"position"))t=r.getBoundingClientRect();else{t=this.offset(),n=r.ownerDocument,e=r.offsetParent||n.documentElement;while(e&&(e===n.body||e===n.documentElement)&&"static"===ce.css(e,"position"))e=e.parentNode;e&&e!==r&&1===e.nodeType&&((i=ce(e).offset()).top+=ce.css(e,"borderTopWidth",!0),i.left+=ce.css(e,"borderLeftWidth",!0))}return{top:t.top-i.top-ce.css(r,"marginTop",!0),left:t.left-i.left-ce.css(r,"marginLeft",!0)}}},offsetParent:function(){return this.map(function(){var e=this.offsetParent;while(e&&"static"===ce.css(e,"position"))e=e.offsetParent;return e||J})}}),ce.each({scrollLeft:"pageXOffset",scrollTop:"pageYOffset"},function(t,i){var o="pageYOffset"===i;ce.fn[t]=function(e){return M(this,function(e,t,n){var r;if(y(e)?r=e:9===e.nodeType&&(r=e.defaultView),void 0===n)return r?r[i]:e[t];r?r.scrollTo(o?r.pageXOffset:n,o?n:r.pageYOffset):e[t]=n},t,e,arguments.length)}}),ce.each(["top","left"],function(e,n){ce.cssHooks[n]=Ye(le.pixelPosition,function(e,t){if(t)return t=Ge(e,n),_e.test(t)?ce(e).position()[n]+"px":t})}),ce.each({Height:"height",Width:"width"},function(a,s){ce.each({padding:"inner"+a,content:s,"":"outer"+a},function(r,o){ce.fn[o]=function(e,t){var n=arguments.length&&(r||"boolean"!=typeof e),i=r||(!0===e||!0===t?"margin":"border");return M(this,function(e,t,n){var r;return y(e)?0===o.indexOf("outer")?e["inner"+a]:e.document.documentElement["client"+a]:9===e.nodeType?(r=e.documentElement,Math.max(e.body["scroll"+a],r["scroll"+a],e.body["offset"+a],r["offset"+a],r["client"+a])):void 0===n?ce.css(e,t,i):ce.style(e,t,n,i)},s,n?e:void 0,n)}})}),ce.each(["ajaxStart","ajaxStop","ajaxComplete","ajaxError","ajaxSuccess","ajaxSend"],function(e,t){ce.fn[t]=function(e){return this.on(t,e)}}),ce.fn.extend({bind:function(e,t,n){return this.on(e,null,t,n)},unbind:function(e,t){return this.off(e,null,t)},delegate:function(e,t,n,r){return this.on(t,e,n,r)},undelegate:function(e,t,n){return 1===arguments.length?this.off(e,"**"):this.off(t,e||"**",n)},hover:function(e,t){return this.on("mouseenter",e).on("mouseleave",t||e)}}),ce.each("blur focus focusin focusout resize scroll click dblclick mousedown mouseup mousemove mouseover mouseout mouseenter mouseleave change select submit keydown keypress keyup contextmenu".split(" "),function(e,n){ce.fn[n]=function(e,t){return 0122||(d<65||j>90||b.push([Math.max(65,j)|32,Math.min(d,90)|32]),d<97||j>122||b.push([Math.max(97,j)&-33,Math.min(d,122)&-33]))}}b.sort(function(a,f){return a[0]-f[0]||f[1]-a[1]});f=[];j=[NaN,NaN];for(c=0;ci[0]&&(i[1]+1>i[0]&&b.push("-"),b.push(e(i[1])));b.push("]");return b.join("")}function y(a){for(var f=a.source.match(/\[(?:[^\\\]]|\\[\S\s])*]|\\u[\dA-Fa-f]{4}|\\x[\dA-Fa-f]{2}|\\\d+|\\[^\dux]|\(\?[!:=]|[()^]|[^()[\\^]+/g),b=f.length,d=[],c=0,i=0;c=2&&a==="["?f[c]=h(j):a!=="\\"&&(f[c]=j.replace(/[A-Za-z]/g,function(a){a=a.charCodeAt(0);return"["+String.fromCharCode(a&-33,a|32)+"]"}));return f.join("")}for(var t=0,s=!1,l=!1,p=0,d=a.length;p=5&&"lang-"===b.substring(0,5))&&!(o&&typeof o[1]==="string"))c=!1,b="src";c||(r[f]=b)}i=d;d+=f.length;if(c){c=o[1];var j=f.indexOf(c),k=j+c.length;o[2]&&(k=f.length-o[2].length,j=k-c.length);b=b.substring(5);B(l+i,f.substring(0,j),e,p);B(l+i+j,c,C(b,c),p);B(l+i+k,f.substring(k),e,p)}else p.push(l+i,b)}a.e=p}var h={},y;(function(){for(var e=a.concat(m),
+l=[],p={},d=0,g=e.length;d=0;)h[n.charAt(k)]=r;r=r[1];n=""+r;p.hasOwnProperty(n)||(l.push(r),p[n]=q)}l.push(/[\S\s]/);y=L(l)})();var t=m.length;return e}function u(a){var m=[],e=[];a.tripleQuotedStrings?m.push(["str",/^(?:'''(?:[^'\\]|\\[\S\s]|''?(?=[^']))*(?:'''|$)|"""(?:[^"\\]|\\[\S\s]|""?(?=[^"]))*(?:"""|$)|'(?:[^'\\]|\\[\S\s])*(?:'|$)|"(?:[^"\\]|\\[\S\s])*(?:"|$))/,q,"'\""]):a.multiLineStrings?m.push(["str",/^(?:'(?:[^'\\]|\\[\S\s])*(?:'|$)|"(?:[^"\\]|\\[\S\s])*(?:"|$)|`(?:[^\\`]|\\[\S\s])*(?:`|$))/,
+q,"'\"`"]):m.push(["str",/^(?:'(?:[^\n\r'\\]|\\.)*(?:'|$)|"(?:[^\n\r"\\]|\\.)*(?:"|$))/,q,"\"'"]);a.verbatimStrings&&e.push(["str",/^@"(?:[^"]|"")*(?:"|$)/,q]);var h=a.hashComments;h&&(a.cStyleComments?(h>1?m.push(["com",/^#(?:##(?:[^#]|#(?!##))*(?:###|$)|.*)/,q,"#"]):m.push(["com",/^#(?:(?:define|elif|else|endif|error|ifdef|include|ifndef|line|pragma|undef|warning)\b|[^\n\r]*)/,q,"#"]),e.push(["str",/^<(?:(?:(?:\.\.\/)*|\/?)(?:[\w-]+(?:\/[\w-]+)+)?[\w-]+\.h|[a-z]\w*)>/,q])):m.push(["com",/^#[^\n\r]*/,
+q,"#"]));a.cStyleComments&&(e.push(["com",/^\/\/[^\n\r]*/,q]),e.push(["com",/^\/\*[\S\s]*?(?:\*\/|$)/,q]));a.regexLiterals&&e.push(["lang-regex",/^(?:^^\.?|[!+-]|!=|!==|#|%|%=|&|&&|&&=|&=|\(|\*|\*=|\+=|,|-=|->|\/|\/=|:|::|;|<|<<|<<=|<=|=|==|===|>|>=|>>|>>=|>>>|>>>=|[?@[^]|\^=|\^\^|\^\^=|{|\||\|=|\|\||\|\|=|~|break|case|continue|delete|do|else|finally|instanceof|return|throw|try|typeof)\s*(\/(?=[^*/])(?:[^/[\\]|\\[\S\s]|\[(?:[^\\\]]|\\[\S\s])*(?:]|$))+\/)/]);(h=a.types)&&e.push(["typ",h]);a=(""+a.keywords).replace(/^ | $/g,
+"");a.length&&e.push(["kwd",RegExp("^(?:"+a.replace(/[\s,]+/g,"|")+")\\b"),q]);m.push(["pln",/^\s+/,q," \r\n\t\xa0"]);e.push(["lit",/^@[$_a-z][\w$@]*/i,q],["typ",/^(?:[@_]?[A-Z]+[a-z][\w$@]*|\w+_t\b)/,q],["pln",/^[$_a-z][\w$@]*/i,q],["lit",/^(?:0x[\da-f]+|(?:\d(?:_\d+)*\d*(?:\.\d*)?|\.\d\+)(?:e[+-]?\d+)?)[a-z]*/i,q,"0123456789"],["pln",/^\\[\S\s]?/,q],["pun",/^.[^\s\w"-$'./@\\`]*/,q]);return x(m,e)}function D(a,m){function e(a){switch(a.nodeType){case 1:if(k.test(a.className))break;if("BR"===a.nodeName)h(a),
+a.parentNode&&a.parentNode.removeChild(a);else for(a=a.firstChild;a;a=a.nextSibling)e(a);break;case 3:case 4:if(p){var b=a.nodeValue,d=b.match(t);if(d){var c=b.substring(0,d.index);a.nodeValue=c;(b=b.substring(d.index+d[0].length))&&a.parentNode.insertBefore(s.createTextNode(b),a.nextSibling);h(a);c||a.parentNode.removeChild(a)}}}}function h(a){function b(a,d){var e=d?a.cloneNode(!1):a,f=a.parentNode;if(f){var f=b(f,1),g=a.nextSibling;f.appendChild(e);for(var h=g;h;h=g)g=h.nextSibling,f.appendChild(h)}return e}
+for(;!a.nextSibling;)if(a=a.parentNode,!a)return;for(var a=b(a.nextSibling,0),e;(e=a.parentNode)&&e.nodeType===1;)a=e;d.push(a)}var k=/(?:^|\s)nocode(?:\s|$)/,t=/\r\n?|\n/,s=a.ownerDocument,l;a.currentStyle?l=a.currentStyle.whiteSpace:window.getComputedStyle&&(l=s.defaultView.getComputedStyle(a,q).getPropertyValue("white-space"));var p=l&&"pre"===l.substring(0,3);for(l=s.createElement("LI");a.firstChild;)l.appendChild(a.firstChild);for(var d=[l],g=0;g=0;){var h=m[e];A.hasOwnProperty(h)?window.console&&console.warn("cannot override language handler %s",h):A[h]=a}}function C(a,m){if(!a||!A.hasOwnProperty(a))a=/^\s*=o&&(h+=2);e>=c&&(a+=2)}}catch(w){"console"in window&&console.log(w&&w.stack?w.stack:w)}}var v=["break,continue,do,else,for,if,return,while"],w=[[v,"auto,case,char,const,default,double,enum,extern,float,goto,int,long,register,short,signed,sizeof,static,struct,switch,typedef,union,unsigned,void,volatile"],
+"catch,class,delete,false,import,new,operator,private,protected,public,this,throw,true,try,typeof"],F=[w,"alignof,align_union,asm,axiom,bool,concept,concept_map,const_cast,constexpr,decltype,dynamic_cast,explicit,export,friend,inline,late_check,mutable,namespace,nullptr,reinterpret_cast,static_assert,static_cast,template,typeid,typename,using,virtual,where"],G=[w,"abstract,boolean,byte,extends,final,finally,implements,import,instanceof,null,native,package,strictfp,super,synchronized,throws,transient"],
+H=[G,"as,base,by,checked,decimal,delegate,descending,dynamic,event,fixed,foreach,from,group,implicit,in,interface,internal,into,is,lock,object,out,override,orderby,params,partial,readonly,ref,sbyte,sealed,stackalloc,string,select,uint,ulong,unchecked,unsafe,ushort,var"],w=[w,"debugger,eval,export,function,get,null,set,undefined,var,with,Infinity,NaN"],I=[v,"and,as,assert,class,def,del,elif,except,exec,finally,from,global,import,in,is,lambda,nonlocal,not,or,pass,print,raise,try,with,yield,False,True,None"],
+J=[v,"alias,and,begin,case,class,def,defined,elsif,end,ensure,false,in,module,next,nil,not,or,redo,rescue,retry,self,super,then,true,undef,unless,until,when,yield,BEGIN,END"],v=[v,"case,done,elif,esac,eval,fi,function,in,local,set,then,until"],K=/^(DIR|FILE|vector|(de|priority_)?queue|list|stack|(const_)?iterator|(multi)?(set|map)|bitset|u?(int|float)\d*)/,N=/\S/,O=u({keywords:[F,H,w,"caller,delete,die,do,dump,elsif,eval,exit,foreach,for,goto,if,import,last,local,my,next,no,our,print,package,redo,require,sub,undef,unless,until,use,wantarray,while,BEGIN,END"+
+I,J,v],hashComments:!0,cStyleComments:!0,multiLineStrings:!0,regexLiterals:!0}),A={};k(O,["default-code"]);k(x([],[["pln",/^[^]+/],["dec",/^]*(?:>|$)/],["com",/^<\!--[\S\s]*?(?:--\>|$)/],["lang-",/^<\?([\S\s]+?)(?:\?>|$)/],["lang-",/^<%([\S\s]+?)(?:%>|$)/],["pun",/^(?:<[%?]|[%?]>)/],["lang-",/^]*>([\S\s]+?)<\/xmp\b[^>]*>/i],["lang-js",/^